-- Softaculous SQL Dump
-- http://www.softaculous.com
--
-- Host: localhost
-- Generation Time: February 19, 2026, 4:28 pm
-- Server version: 8.0.37
-- PHP Version: 8.4.17

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


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

--
-- Database: `binawebp_wp744`
--

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_actionscheduler_actions`
--

CREATE TABLE `wpiq_actionscheduler_actions` (
  `action_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_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) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `group_id` bigint unsigned NOT NULL DEFAULT '0',
  `attempts` int 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 unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_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_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_actionscheduler_actions`
--

INSERT INTO `wpiq_actionscheduler_actions` VALUES
(5, 'action_scheduler/migration_hook', 'pending', '2022-06-24 05:44:19', '2022-06-24 05:44:19', '[]', 'O:30:"ActionScheduler_SimpleSchedule":2:{s:22:"\0*\0scheduled_timestamp";i:1656049459;s:41:"\0ActionScheduler_SimpleSchedule\0timestamp";i:1656049459;}', 1, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_actionscheduler_claims`
--

CREATE TABLE `wpiq_actionscheduler_claims` (
  `claim_id` bigint 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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_actionscheduler_groups`
--

CREATE TABLE `wpiq_actionscheduler_groups` (
  `group_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_actionscheduler_groups`
--

INSERT INTO `wpiq_actionscheduler_groups` VALUES
(1, 'action-scheduler-migration');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_actionscheduler_logs`
--

CREATE TABLE `wpiq_actionscheduler_logs` (
  `log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint unsigned NOT NULL,
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_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=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_actionscheduler_logs`
--

INSERT INTO `wpiq_actionscheduler_logs` VALUES
(1, 5, 'action created', '2022-06-24 05:43:19', '2022-06-24 05:43:19');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_cf7_vdata`
--

CREATE TABLE `wpiq_cf7_vdata` (
  `id` int NOT NULL AUTO_INCREMENT,
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_cf7_vdata_entry`
--

CREATE TABLE `wpiq_cf7_vdata_entry` (
  `id` int NOT NULL AUTO_INCREMENT,
  `cf7_id` int NOT NULL,
  `data_id` int NOT NULL,
  `name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_commentmeta`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_comments`
--

CREATE TABLE `wpiq_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint 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=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_comments`
--

INSERT INTO `wpiq_comments` VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2021-01-13 03:53:37', '2021-01-13 03:53:37', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href="https://gravatar.com">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_e_events`
--

CREATE TABLE `wpiq_e_events` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_e_notes`
--

CREATE TABLE `wpiq_e_notes` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `route_url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci COMMENT 'Clean url where the note was created.',
  `route_title` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `route_post_id` bigint unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.',
  `post_id` bigint unsigned DEFAULT NULL,
  `element_id` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.',
  `parent_id` bigint unsigned NOT NULL DEFAULT '0',
  `author_id` bigint unsigned DEFAULT NULL,
  `author_display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'Save the author name when the author was deleted.',
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `position` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}',
  `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `is_resolved` tinyint(1) NOT NULL DEFAULT '0',
  `is_public` tinyint(1) NOT NULL DEFAULT '1',
  `last_activity_at` datetime DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `route_url_index` (`route_url`(191)),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `parent_id_index` (`parent_id`),
  KEY `author_id_index` (`author_id`),
  KEY `status_index` (`status`),
  KEY `is_resolved_index` (`is_resolved`),
  KEY `is_public_index` (`is_public`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `last_activity_at_index` (`last_activity_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_e_notes_users_relations`
--

CREATE TABLE `wpiq_e_notes_users_relations` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).',
  `note_id` bigint unsigned NOT NULL,
  `user_id` bigint unsigned NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `type_index` (`type`),
  KEY `note_id_index` (`note_id`),
  KEY `user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_e_submissions`
--

CREATE TABLE `wpiq_e_submissions` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hash_id` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `main_meta_id` bigint unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field',
  `post_id` bigint unsigned NOT NULL,
  `referer` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `referer_title` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `element_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `form_name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `campaign_id` bigint unsigned NOT NULL,
  `user_id` bigint unsigned DEFAULT NULL,
  `user_ip` varchar(46) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `actions_count` int DEFAULT '0',
  `actions_succeeded_count` int DEFAULT '0',
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT '0',
  `meta` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_e_submissions`
--

INSERT INTO `wpiq_e_submissions` VALUES
(1, 'submission', 'da6d5af1-c279-4f2f-8f59-1c8e8a3b6c0f', 2, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '171.22.122.247', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 1, 1, 'new', 1, '{"edit_post_id":"27"}', '2023-01-10 20:39:46', '2023-08-21 08:09:02', '2023-01-10 20:39:46', '2023-08-21 08:09:02'),
(2, 'submission', '4fccb86e-4789-485e-ac9c-d64f9e8e9235', 5, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '154.21.127.78', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-01-11 19:35:24', '2023-01-11 19:35:24', '2023-01-11 19:35:24', '2023-01-11 19:35:24'),
(3, 'submission', 'dc50ef2d-e9e0-4904-88cc-2cff95889826', 8, 27, '', 'Contact', '2aece8b9', 'New Form', 0, 0, '165.231.182.137', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36 Edg/90.0.818.49', 1, 1, 'new', 1, '{"edit_post_id":"27"}', '2023-01-15 21:51:46', '2023-08-21 08:07:05', '2023-01-15 21:51:46', '2023-08-21 08:07:05'),
(4, 'submission', '251f69d9-7b88-4fb1-8cd5-0f17bfe39077', 11, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '192.3.244.79', 'Mozilla/5.0 (X11; Linux i686; rv:102.0) Gecko/20100101 Firefox/102.0', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-01-16 19:27:37', '2023-01-16 19:27:37', '2023-01-16 19:27:37', '2023-01-16 19:27:37'),
(5, 'submission', '27d66c9f-9f52-47f3-92bd-cadb19d8758a', 14, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '80.253.251.185', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-01-17 13:51:12', '2023-01-17 13:51:12', '2023-01-17 13:51:12', '2023-01-17 13:51:12'),
(6, 'submission', '98db4099-f262-45fc-9a1f-14aa5f15b1bd', 17, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '172.245.193.116', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-02 16:51:09', '2023-08-02 16:51:09', '2023-08-02 16:51:09', '2023-08-02 16:51:09'),
(7, 'submission', '01d4ad2d-5634-42c6-89c9-b5a6bd49f5f4', 20, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '191.102.135.152', 'Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-03 17:28:13', '2023-08-03 17:28:13', '2023-08-03 17:28:13', '2023-08-03 17:28:13'),
(8, 'submission', '6e8f312c-c317-48ff-81ac-3aee65804dbe', 23, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '122.180.186.3', 'Mozilla/5.0 (X11; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-03 20:08:15', '2023-08-03 20:08:15', '2023-08-03 20:08:15', '2023-08-03 20:08:15'),
(9, 'submission', 'ae04c423-5990-4b23-9efb-9e7cc03b9ea3', 26, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '122.162.146.189', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36', 1, 1, 'new', 1, '{"edit_post_id":"27"}', '2023-08-04 15:11:02', '2023-08-21 08:05:14', '2023-08-04 15:11:02', '2023-08-21 08:05:14'),
(10, 'submission', '928a5062-87de-4ab1-b747-d1e2db772123', 29, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '69.58.1.232', 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-08 16:48:27', '2023-08-08 16:48:27', '2023-08-08 16:48:27', '2023-08-08 16:48:27'),
(11, 'submission', '43898b5b-d583-4bd6-9123-f30b9dd730a9', 32, 27, '', 'Contact', '2aece8b9', 'New Form', 0, 0, '185.82.72.11', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36 Herring/95.1.8810.11', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-08 21:34:07', '2023-08-08 21:34:07', '2023-08-08 21:34:07', '2023-08-08 21:34:07'),
(12, 'submission', 'a71abd6d-c6fb-4586-b538-2128a34f07fa', 35, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '23.104.162.16', 'Mozilla/5.0 (Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-10 21:36:16', '2023-08-10 21:36:16', '2023-08-10 21:36:16', '2023-08-10 21:36:16'),
(13, 'submission', 'dbb546a9-eaf9-4293-95c3-34a7fe342f0f', 38, 27, '', 'Contact', '2aece8b9', 'New Form', 0, 0, '46.8.156.121', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-15 17:38:31', '2023-08-15 17:38:31', '2023-08-15 17:38:31', '2023-08-15 17:38:31'),
(14, 'submission', '3d0564e4-93d6-4804-867d-59be46b0e911', 41, 27, '', 'Contact', '2aece8b9', 'New Form', 0, 0, '91.232.110.90', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-16 15:15:42', '2023-08-16 15:15:42', '2023-08-16 15:15:42', '2023-08-16 15:15:42'),
(15, 'submission', '45fd94ba-d99d-4d83-a552-75054e3adc16', 44, 27, '', 'Contact', '2aece8b9', 'New Form', 0, 0, '82.147.85.79', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.114 Safari/537.36', 1, 1, 'new', 1, '{"edit_post_id":"27"}', '2023-08-17 11:47:46', '2023-08-21 08:08:45', '2023-08-17 11:47:46', '2023-08-21 08:08:45'),
(16, 'submission', '2279d921-a6a7-4971-ae4b-ec2e7c8336ad', 47, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '27.125.249.41', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-21 08:04:31', '2023-08-21 08:04:31', '2023-08-21 08:04:31', '2023-08-21 08:04:31'),
(17, 'submission', '9148d4d4-91a3-41d3-9abf-4624d591b97b', 50, 27, '', 'Contact', '2aece8b9', 'New Form', 0, 0, '45.86.200.193', 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36', 1, 1, 'new', 0, '{"edit_post_id":"27"}', '2023-08-21 09:31:22', '2023-08-21 09:31:22', '2023-08-21 09:31:22', '2023-08-21 09:31:22'),
(18, 'submission', '09dc78ed-ee2b-4172-af4e-5324a5ba3677', 54, 7, 'https://omsrislb.my/', '', '97c2073', 'homepage', 0, 0, '27.125.242.16', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36', 2, 2, 'new', 1, '{"edit_post_id":"7"}', '2023-08-21 16:03:08', '2023-08-21 16:06:26', '2023-08-21 16:03:08', '2023-08-21 16:06:26'),
(19, 'submission', 'dd7b4d0a-f7c2-4286-93a7-9b96d4169246', 58, 27, 'https://omsrislb.my/contact/', 'Contact', '2aece8b9', 'New Form', 0, 0, '23.105.5.35', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51', 1, 1, 'new', 1, '{"edit_post_id":"27"}', '2023-08-21 21:01:49', '2023-08-22 03:59:20', '2023-08-21 21:01:49', '2023-08-22 03:59:20'),
(20, 'submission', '89ed07ad-996b-4f03-a0a5-4eb3c46cc473', 62, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '223.185.28.45', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36', 2, 2, 'new', 0, '{"edit_post_id":"27"}', '2025-02-11 09:24:47', '2025-02-11 09:24:48', '2025-02-11 09:24:47', '2025-02-11 09:24:48'),
(21, 'submission', '6b6510e5-f19d-4f5c-99b0-bed469ea0afc', 67, 7, 'https://omsrislb.my/', '', '97c2073', 'homepage', 0, 0, '45.59.132.110', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', 2, 2, 'new', 0, '{"edit_post_id":"7"}', '2025-03-10 16:43:32', '2025-03-10 16:43:35', '2025-03-10 16:43:32', '2025-03-10 16:43:35'),
(22, 'submission', 'a20e8a70-2474-4814-a60a-37c316aa3593', 72, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '202.186.82.244', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-03-11 01:21:38', '2025-03-11 01:21:41', '2025-03-11 01:21:38', '2025-03-11 01:21:41'),
(23, 'submission', '533182d2-064e-4e85-a5fb-ece829962bb1', 77, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '202.186.82.244', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-03-11 01:21:52', '2025-03-11 01:21:55', '2025-03-11 01:21:52', '2025-03-11 01:21:55'),
(24, 'submission', '1a48aaa3-0379-47c3-9eb1-6fe319c1db7e', 82, 7, 'https://omsrislb.my/', '', '97c2073', 'homepage', 0, 0, '45.59.132.102', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51', 2, 1, 'new', 0, '{"edit_post_id":"7"}', '2025-03-11 15:36:36', '2025-03-11 15:36:39', '2025-03-11 15:36:36', '2025-03-11 15:36:39'),
(25, 'submission', '389ab18b-9bfe-43a3-99d7-b0b0860ab18d', 87, 7, 'https://omsrislb.my/', '', '97c2073', 'homepage', 0, 0, '171.241.187.107', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68', 2, 1, 'new', 0, '{"edit_post_id":"7"}', '2025-03-12 05:49:55', '2025-03-12 05:49:58', '2025-03-12 05:49:55', '2025-03-12 05:49:58'),
(26, 'submission', '88eec3aa-9ab8-4c52-a752-f8f3c6f6d924', 92, 7, 'https://omsrislb.my/', '', '97c2073', 'homepage', 0, 0, '45.59.132.110', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68', 2, 1, 'new', 0, '{"edit_post_id":"7"}', '2025-03-12 16:12:14', '2025-03-12 16:12:16', '2025-03-12 16:12:14', '2025-03-12 16:12:16'),
(27, 'submission', '207ff820-7dbe-4c2c-a217-8fae49ef09ea', 97, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '104.168.149.156', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-03-18 00:50:00', '2025-03-18 00:50:03', '2025-03-18 00:50:00', '2025-03-18 00:50:03'),
(28, 'submission', '0fdac9db-ac8f-4d90-89a7-ad321ab60ab9', 102, 7, 'https://omsrislb.my/', '', '97c2073', 'homepage', 0, 0, '192.186.142.53', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71', 2, 1, 'new', 0, '{"edit_post_id":"7"}', '2025-03-18 16:27:15', '2025-03-18 16:27:17', '2025-03-18 16:27:15', '2025-03-18 16:27:17'),
(29, 'submission', '15e26e7f-a8f5-4d1e-ba2f-22c473187ad8', 107, 7, 'https://omsrislb.my/', '', '97c2073', 'homepage', 0, 0, '196.242.21.34', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51', 2, 1, 'new', 0, '{"edit_post_id":"7"}', '2025-03-19 14:23:50', '2025-03-19 14:23:53', '2025-03-19 14:23:50', '2025-03-19 14:23:53'),
(30, 'submission', 'bb82f773-be27-48fd-928f-81ef71aca0b1', 112, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '198.12.89.150', 'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-03-23 10:46:38', '2025-03-23 10:46:41', '2025-03-23 10:46:38', '2025-03-23 10:46:41'),
(31, 'submission', 'bf7ae52c-6291-43c1-b2e3-8d10e0b02fde', 117, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '198.12.89.150', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-04-01 16:22:01', '2025-04-01 16:22:05', '2025-04-01 16:22:01', '2025-04-01 16:22:05'),
(32, 'submission', 'c640e653-7906-4d76-8ac6-516abf38068f', 122, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '80.211.254.178', 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:114.0) Gecko/20100101 Firefox/114.0', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-04-12 06:41:07', '2025-04-12 06:41:12', '2025-04-12 06:41:07', '2025-04-12 06:41:12'),
(33, 'submission', '9975e47b-899e-4a5e-8ecb-64de24bb4006', 127, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '196.245.148.239', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1264.71', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-04-16 11:32:02', '2025-04-16 11:32:05', '2025-04-16 11:32:02', '2025-04-16 11:32:05'),
(34, 'submission', 'c3acec3f-f8c6-4f98-8f79-70ca4b8878b5', 132, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '196.196.164.145', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 OPR/89.0.4447.51', 2, 2, 'new', 0, '{"edit_post_id":"27"}', '2025-04-24 13:41:22', '2025-04-24 13:41:25', '2025-04-24 13:41:22', '2025-04-24 13:41:25'),
(35, 'submission', '15f48ee3-ef59-4284-ae69-1b1b9351a6c6', 137, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '196.240.104.210', 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0', 2, 2, 'new', 0, '{"edit_post_id":"27"}', '2025-05-10 22:37:16', '2025-05-10 22:37:18', '2025-05-10 22:37:16', '2025-05-10 22:37:18'),
(36, 'submission', '60c4a941-4638-4c20-a35f-57abd3fb3a5b', 142, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '88.218.76.104', 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:114.0) Gecko/20100101 Firefox/114.0', 2, 2, 'new', 0, '{"edit_post_id":"27"}', '2025-06-08 04:22:40', '2025-06-08 04:22:42', '2025-06-08 04:22:40', '2025-06-08 04:22:42'),
(37, 'submission', 'da84098e-eeec-4bf8-8597-08a066363225', 147, 27, 'https://omsrislb.my/contact/', 'Contact', '270e2cb', 'homepage', 0, 0, '196.245.184.121', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68', 2, 1, 'new', 0, '{"edit_post_id":"27"}', '2025-11-20 05:32:39', '2025-11-20 05:32:41', '2025-11-20 05:32:39', '2025-11-20 05:32:41');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_e_submissions_actions_log`
--

CREATE TABLE `wpiq_e_submissions_actions_log` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint unsigned NOT NULL,
  `action_name` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_label` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_e_submissions_actions_log`
--

INSERT INTO `wpiq_e_submissions_actions_log` VALUES
(1, 1, 'email', 'Email', 'success', NULL, '2023-01-10 20:39:46', '2023-01-10 20:39:46', '2023-01-10 20:39:46', '2023-01-10 20:39:46'),
(2, 2, 'email', 'Email', 'success', NULL, '2023-01-11 19:35:24', '2023-01-11 19:35:24', '2023-01-11 19:35:24', '2023-01-11 19:35:24'),
(3, 3, 'email', 'Email', 'success', NULL, '2023-01-15 21:51:46', '2023-01-15 21:51:46', '2023-01-15 21:51:46', '2023-01-15 21:51:46'),
(4, 4, 'email', 'Email', 'success', NULL, '2023-01-16 19:27:37', '2023-01-16 19:27:37', '2023-01-16 19:27:37', '2023-01-16 19:27:37'),
(5, 5, 'email', 'Email', 'success', NULL, '2023-01-17 13:51:12', '2023-01-17 13:51:12', '2023-01-17 13:51:12', '2023-01-17 13:51:12'),
(6, 6, 'email', 'Email', 'success', NULL, '2023-08-02 16:51:09', '2023-08-02 16:51:09', '2023-08-02 16:51:09', '2023-08-02 16:51:09'),
(7, 7, 'email', 'Email', 'success', NULL, '2023-08-03 17:28:13', '2023-08-03 17:28:13', '2023-08-03 17:28:13', '2023-08-03 17:28:13'),
(8, 8, 'email', 'Email', 'success', NULL, '2023-08-03 20:08:15', '2023-08-03 20:08:15', '2023-08-03 20:08:15', '2023-08-03 20:08:15'),
(9, 9, 'email', 'Email', 'success', NULL, '2023-08-04 15:11:02', '2023-08-04 15:11:02', '2023-08-04 15:11:02', '2023-08-04 15:11:02'),
(10, 10, 'email', 'Email', 'success', NULL, '2023-08-08 16:48:27', '2023-08-08 16:48:27', '2023-08-08 16:48:27', '2023-08-08 16:48:27'),
(11, 11, 'email', 'Email', 'success', NULL, '2023-08-08 21:34:07', '2023-08-08 21:34:07', '2023-08-08 21:34:07', '2023-08-08 21:34:07'),
(12, 12, 'email', 'Email', 'success', NULL, '2023-08-10 21:36:16', '2023-08-10 21:36:16', '2023-08-10 21:36:16', '2023-08-10 21:36:16'),
(13, 13, 'email', 'Email', 'success', NULL, '2023-08-15 17:38:31', '2023-08-15 17:38:31', '2023-08-15 17:38:31', '2023-08-15 17:38:31'),
(14, 14, 'email', 'Email', 'success', NULL, '2023-08-16 15:15:42', '2023-08-16 15:15:42', '2023-08-16 15:15:42', '2023-08-16 15:15:42'),
(15, 15, 'email', 'Email', 'success', NULL, '2023-08-17 11:47:46', '2023-08-17 11:47:46', '2023-08-17 11:47:46', '2023-08-17 11:47:46'),
(16, 16, 'email', 'Email', 'success', NULL, '2023-08-21 08:04:31', '2023-08-21 08:04:31', '2023-08-21 08:04:31', '2023-08-21 08:04:31'),
(17, 17, 'email', 'Email', 'success', NULL, '2023-08-21 09:31:22', '2023-08-21 09:31:22', '2023-08-21 09:31:22', '2023-08-21 09:31:22'),
(18, 18, 'email', 'Email', 'success', NULL, '2023-08-21 16:03:08', '2023-08-21 16:03:08', '2023-08-21 16:03:08', '2023-08-21 16:03:08'),
(19, 18, 'redirect', 'Redirect', 'success', NULL, '2023-08-21 16:03:08', '2023-08-21 16:03:08', '2023-08-21 16:03:08', '2023-08-21 16:03:08'),
(20, 19, 'email', 'Email', 'success', NULL, '2023-08-21 21:01:49', '2023-08-21 21:01:49', '2023-08-21 21:01:49', '2023-08-21 21:01:49'),
(21, 20, 'email', 'Email', 'success', NULL, '2025-02-11 09:24:48', '2025-02-11 09:24:48', '2025-02-11 09:24:48', '2025-02-11 09:24:48'),
(22, 20, 'redirect', 'Redirect', 'success', NULL, '2025-02-11 09:24:48', '2025-02-11 09:24:48', '2025-02-11 09:24:48', '2025-02-11 09:24:48'),
(23, 21, 'email', 'Email', 'success', NULL, '2025-03-10 16:43:35', '2025-03-10 16:43:35', '2025-03-10 16:43:35', '2025-03-10 16:43:35'),
(24, 21, 'redirect', 'Redirect', 'success', NULL, '2025-03-10 16:43:35', '2025-03-10 16:43:35', '2025-03-10 16:43:35', '2025-03-10 16:43:35'),
(25, 22, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-11 01:21:41', '2025-03-11 01:21:41', '2025-03-11 01:21:41', '2025-03-11 01:21:41'),
(26, 22, 'redirect', 'Redirect', 'success', NULL, '2025-03-11 01:21:41', '2025-03-11 01:21:41', '2025-03-11 01:21:41', '2025-03-11 01:21:41'),
(27, 23, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-11 01:21:55', '2025-03-11 01:21:55', '2025-03-11 01:21:55', '2025-03-11 01:21:55'),
(28, 23, 'redirect', 'Redirect', 'success', NULL, '2025-03-11 01:21:55', '2025-03-11 01:21:55', '2025-03-11 01:21:55', '2025-03-11 01:21:55'),
(29, 24, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-11 15:36:39', '2025-03-11 15:36:39', '2025-03-11 15:36:39', '2025-03-11 15:36:39'),
(30, 24, 'redirect', 'Redirect', 'success', NULL, '2025-03-11 15:36:39', '2025-03-11 15:36:39', '2025-03-11 15:36:39', '2025-03-11 15:36:39'),
(31, 25, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-12 05:49:58', '2025-03-12 05:49:58', '2025-03-12 05:49:58', '2025-03-12 05:49:58'),
(32, 25, 'redirect', 'Redirect', 'success', NULL, '2025-03-12 05:49:58', '2025-03-12 05:49:58', '2025-03-12 05:49:58', '2025-03-12 05:49:58'),
(33, 26, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-12 16:12:16', '2025-03-12 16:12:16', '2025-03-12 16:12:16', '2025-03-12 16:12:16'),
(34, 26, 'redirect', 'Redirect', 'success', NULL, '2025-03-12 16:12:16', '2025-03-12 16:12:16', '2025-03-12 16:12:16', '2025-03-12 16:12:16'),
(35, 27, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-18 00:50:03', '2025-03-18 00:50:03', '2025-03-18 00:50:03', '2025-03-18 00:50:03'),
(36, 27, 'redirect', 'Redirect', 'success', NULL, '2025-03-18 00:50:03', '2025-03-18 00:50:03', '2025-03-18 00:50:03', '2025-03-18 00:50:03'),
(37, 28, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-18 16:27:17', '2025-03-18 16:27:17', '2025-03-18 16:27:17', '2025-03-18 16:27:17'),
(38, 28, 'redirect', 'Redirect', 'success', NULL, '2025-03-18 16:27:17', '2025-03-18 16:27:17', '2025-03-18 16:27:17', '2025-03-18 16:27:17'),
(39, 29, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-19 14:23:53', '2025-03-19 14:23:53', '2025-03-19 14:23:53', '2025-03-19 14:23:53'),
(40, 29, 'redirect', 'Redirect', 'success', NULL, '2025-03-19 14:23:53', '2025-03-19 14:23:53', '2025-03-19 14:23:53', '2025-03-19 14:23:53'),
(41, 30, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-03-23 10:46:41', '2025-03-23 10:46:41', '2025-03-23 10:46:41', '2025-03-23 10:46:41'),
(42, 30, 'redirect', 'Redirect', 'success', NULL, '2025-03-23 10:46:41', '2025-03-23 10:46:41', '2025-03-23 10:46:41', '2025-03-23 10:46:41'),
(43, 31, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-04-01 16:22:05', '2025-04-01 16:22:05', '2025-04-01 16:22:05', '2025-04-01 16:22:05'),
(44, 31, 'redirect', 'Redirect', 'success', NULL, '2025-04-01 16:22:05', '2025-04-01 16:22:05', '2025-04-01 16:22:05', '2025-04-01 16:22:05'),
(45, 32, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-04-12 06:41:12', '2025-04-12 06:41:12', '2025-04-12 06:41:12', '2025-04-12 06:41:12'),
(46, 32, 'redirect', 'Redirect', 'success', NULL, '2025-04-12 06:41:12', '2025-04-12 06:41:12', '2025-04-12 06:41:12', '2025-04-12 06:41:12'),
(47, 33, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-04-16 11:32:05', '2025-04-16 11:32:05', '2025-04-16 11:32:05', '2025-04-16 11:32:05'),
(48, 33, 'redirect', 'Redirect', 'success', NULL, '2025-04-16 11:32:05', '2025-04-16 11:32:05', '2025-04-16 11:32:05', '2025-04-16 11:32:05'),
(49, 34, 'email', 'Email', 'success', NULL, '2025-04-24 13:41:25', '2025-04-24 13:41:25', '2025-04-24 13:41:25', '2025-04-24 13:41:25'),
(50, 34, 'redirect', 'Redirect', 'success', NULL, '2025-04-24 13:41:25', '2025-04-24 13:41:25', '2025-04-24 13:41:25', '2025-04-24 13:41:25'),
(51, 35, 'email', 'Email', 'success', NULL, '2025-05-10 22:37:18', '2025-05-10 22:37:18', '2025-05-10 22:37:18', '2025-05-10 22:37:18'),
(52, 35, 'redirect', 'Redirect', 'success', NULL, '2025-05-10 22:37:18', '2025-05-10 22:37:18', '2025-05-10 22:37:18', '2025-05-10 22:37:18'),
(53, 36, 'email', 'Email', 'success', NULL, '2025-06-08 04:22:42', '2025-06-08 04:22:42', '2025-06-08 04:22:42', '2025-06-08 04:22:42'),
(54, 36, 'redirect', 'Redirect', 'success', NULL, '2025-06-08 04:22:42', '2025-06-08 04:22:42', '2025-06-08 04:22:42', '2025-06-08 04:22:42'),
(55, 37, 'email', 'Email', 'failed', 'Your submission failed because of a server error.', '2025-11-20 05:32:41', '2025-11-20 05:32:41', '2025-11-20 05:32:41', '2025-11-20 05:32:41'),
(56, 37, 'redirect', 'Redirect', 'success', NULL, '2025-11-20 05:32:41', '2025-11-20 05:32:41', '2025-11-20 05:32:41', '2025-11-20 05:32:41');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_e_submissions_values`
--

CREATE TABLE `wpiq_e_submissions_values` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint unsigned NOT NULL DEFAULT '0',
  `key` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_e_submissions_values`
--

INSERT INTO `wpiq_e_submissions_values` VALUES
(1, 1, 'name', 'Evan Roberts'),
(2, 1, 'email', 'evan@cashadvise.online'),
(3, 1, 'message', 'Hello,\r\n\r\nIs the lack of working capital holding your business back? \r\n\r\nDon’t let things like bad credit or a short time in business keep you from getting the funds you need.\r\n\r\nIf you deposit more than 10k per month you’re already qualified!\r\n\r\nExpress Capital will offer you up to two times your monthly deposits without any collateral or personal guarantees. \r\n\r\nGet pre-qualified in less than 30 seconds without a credit check or submitting a single document.\r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.expresscapitalcorp.com \r\n\r\n\r\n\r\nWarm Regards,\r\n\r\nEvan Roberts\r\nExpress Capital\r\nwww.expresscapitalcorp.com\r\n\r\n \r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.expresscapitalcorp.com/unsubscribe \r\n\r\nor write to:\r\n\r\nExpress Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714'),
(4, 2, 'name', 'Joseph Joseph'),
(5, 2, 'email', 'free@freeaiwriting.com'),
(6, 2, 'message', 'Dear, \r\n\r\nI came across omsrislb.com and wanted to share this great free AI tool. \r\nWith this tool you write blogs and ads 10 times faster and with much higher conversion rates. \r\nYou can use the tool for free via freeaiwriting.com \r\n\r\nThe AI can write blogs, advertising copy, youtube videos and even entire books. \r\nWe would love to hear your feedback. \r\n\r\n\r\nKind regards, \r\nJoseph\r\nFreeaiwriting.com'),
(7, 3, 'name', 'AlenaSam'),
(8, 3, 'email', 'alenaSam@mondmema.tk'),
(9, 3, 'message', 'Hellоǃ\r\nI apolоgize for the оvеrlу spеcifiс mesѕаgе.\r\nМy gіrlfrіеnd and Ι lоve еaсh оthеr. And wе аre all grеаt.\r\nBut... we nеed а man.\r\nWе are 23 yeаrs оld, frоm Rоmаniа, wе alsо knоw englіѕh.\r\nԜe nеver gеt bоredǃ Αnd not only in tаlk...\r\nΜy nаme iѕ Alenа, my рrоfіle іs herе: http://roaguslo.ml/item-32400/'),
(10, 4, 'name', 'Allen Young'),
(11, 4, 'email', 'allen@loanseveryday.online'),
(12, 4, 'message', 'Hello,\r\n\r\nI hope you are doing well, and business is Great!\r\n\r\nAs a business owner you already know how hard it can be to get your hands on some working capital!\r\n\r\nHowever, all that has changed! \r\n\r\nExpress Capital is a Direct Lender who would like to offer you a working capital loan up to 500k.\r\n \r\nGet pre-qualified in less than 30 seconds without having your credit pulled or submitting a single document. \r\n\r\nJust click on the link to INSTANTLY see how much you qualify for www.expresscapitalcorp.com \r\n\r\n\r\nWarm Regards,\r\n\r\nAllen Young\r\nExpress Capital\r\nwww.expresscapitalcorp.com \r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.expresscapitalcorp.com/unsubscribe \r\n\r\nor write to:\r\n\r\nExpress Capital\r\n9169 W State St #3242\r\nGarden City, ID 83714'),
(13, 5, 'name', 'Joseph Joseph'),
(14, 5, 'email', 'free@freeaiwriting.com'),
(15, 5, 'message', 'Dear, \r\n\r\nI came across omsrislb.com and wanted to share this great free AI tool. \r\n\r\nWith this tool you write blogs and ads 10 times faster and with much higher conversion rates. \r\nYou can use the tool for free via freeaiwriting.com \r\n\r\nThe AI can write blogs, advertising copy, youtube videos and even entire books. \r\nWe would love to hear your feedback. \r\n\r\n\r\nKind regards, \r\nJoseph\r\nFreeaiwriting.com'),
(16, 6, 'name', 'Noah Johnson'),
(17, 6, 'email', 'noah@moneysuccess.xyz'),
(18, 6, 'message', 'Are you interested in growing your business even more?\r\n\r\nWe are your one stop shop for an instant approval on any working capital needs\r\n\r\nyou may have. We offer Lines of Credit, Equipment Financing and Invoice Factoring.\r\n\r\nApply in less than 1 minute without submitting a single document or having your credit\r\n\r\npulled.\r\n\r\nwww.nextdayworkingcapital.com\r\n\r\nNoah Johnson\r\nNext Day Working Capital\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.nextdayworkingcapital.com/unsubscribe \r\n\r\n\r\nor write to:\r\n\r\n\r\n\r\nNext Day Working Capital\r\n1050 E. Flamingo Rd\r\nLas Vegas, NV 89119'),
(19, 7, 'name', 'Daniel Garcia'),
(20, 7, 'email', 'daniel@capitalsmart.xyz'),
(21, 7, 'message', 'If you need working capital for your business this week\r\n\r\nyou really should check out our instant approval underwriting \r\n\r\nand see what you qualify for in less than 30 seconds without \r\n\r\neven pulling your credit. \r\n\r\nIf you like the offer we will fund you the next day. it''s that simple! \r\n\r\nwww.nextdayworkingcapital.com \r\n\r\n\r\n\r\nDaniel Garcia\r\nNext Day Working Capital\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.nextdayworkingcapital.com/unsubscribe\r\n\r\n\r\n\r\n\r\nor write to:\r\n\r\n\r\n\r\n\r\nNext Day Working Capital\r\n1050 E. Flamingo Rd\r\nLas Vegas, NV 89119'),
(22, 8, 'name', 'Anna Wilson'),
(23, 8, 'email', 'annawilson.web@gmail.com'),
(24, 8, 'message', 'Hi omsrislb.com ,\r\n\r\nI came across your website on the Internet and saw that it was not showing up in any of the search engines (Google, Yahoo, and Bing) for the majority of keywords associated with your company.\r\n\r\nDo you want more targeted visitors on your website? We can place your website on Google’s 1st Page. yahoo, AOL, Bing. Etc.\r\n\r\nIf interested, kindly provide me your name, phone number, and email.\r\n\r\nRegards,\r\nAnna'),
(25, 9, 'name', 'Catherine Williams'),
(26, 9, 'email', 'thomassrogers63@gmail.com'),
(27, 9, 'message', 'Hi,\r\n\r\nIt''s me, Catherine.\r\n\r\nCan we talk about how well your website performs, develops, uses social media, and is designed?\r\n\r\nFor a more complete explanation, I''ll need your phone number and the best time to call you.'),
(28, 10, 'name', 'Chloe Davis'),
(29, 10, 'email', 'chloe@moneybenefit.xyz'),
(30, 10, 'message', 'Need Working Capital Fast? Instant Approval is Here!" \r\n\r\nIf you need working capital for your business this week, check out\r\n\r\nour instant approval underwriting. See what you qualify for in less\r\n\r\nthan 30 seconds without submitting a single document or even pulling your credit.\r\n\r\nGo to www.nextdayworkingcapital.com to instantly see how much we can offer you. \r\n\r\n\r\n\r\n\r\nChole Davis\r\nNext Day Working Capital\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.nextdayworkingcapital.com/unsubscribe\r\n\r\n\r\n\r\n\r\nor write to:\r\n\r\n\r\n\r\n\r\nNext Day Working Capital\r\n1050 E. Flamingo Rd\r\nLas Vegas, NV 89119'),
(31, 11, 'name', 'UlanAbigo'),
(32, 11, 'email', 'yqgtytnghMt@bobbor.store'),
(33, 11, 'message', 'Купить ювелирные изделия - только в нашем салоне вы найдете приемлемые цены. Быстрей всего сделать заказ на ювелирные украшения москва можно только у нас! \r\n[url=https://uvelir1.ru/]ювелирная студия москва[/url] \r\nювелирное ателье - [url=http://www.uvelir1.ru/]http://www.uvelir1.ru[/url] \r\n[url=http://google.dz/url?q=http://uvelir1.ru]https://google.co.ve/url?q=http://uvelir1.ru[/url]'),
(34, 12, 'name', 'Noah Johnson'),
(35, 12, 'email', 'noah@moneysuccess.xyz'),
(36, 12, 'message', 'Are you interested in growing your business even more?\r\n\r\nWe are your one stop shop for an instant approval on any working capital needs\r\n\r\nyou may have. We offer Lines of Credit, Equipment Financing and Invoice Factoring.\r\n\r\nApply in less than 1 minute without submitting a single document or having your credit\r\n\r\npulled.\r\n\r\nwww.nextdayworkingcapital.com\r\n\r\nNoah Johnson\r\nNext Day Working Capital\r\n\r\n\r\n\r\n\r\n\r\n\r\nThis is an Advertisement.\r\nTo unsubscribe, click here www.nextdayworkingcapital.com/unsubscribe \r\n\r\n\r\nor write to:\r\n\r\n\r\n\r\nNext Day Working Capital\r\n1050 E. Flamingo Rd\r\nLas Vegas, NV 89119'),
(37, 13, 'name', 'LeslieTaf'),
(38, 13, 'email', 'mikhaileliffkt@mail.ru'),
(39, 13, 'message', 'Киберспорт \r\n \r\nЗдесь регулярно публикуются новости, тренды и лайфхаки. Все посты щедро приправлены хорошим авторским юмором. \r\n \r\nSource: \r\n \r\nКиберспорт'),
(40, 14, 'name', 'ПечатиЧелябинск'),
(41, 14, 'email', 'stm618@mail.ru'),
(42, 14, 'message', 'Устройство  печатей равно стереотипов в течение короткие сроки \r\nпечати-в-челябинске.рф на чтоб нашем сайте   печати-в-челябинске.рф \r\n \r\nhttps://печативкраснодаре.рф] \r\n \r\n \r\nhttp://печати-в-челябинске.рф] \r\n \r\n \r\nhttps://alfa-pechati.ru]'),
(43, 15, 'name', 'kjAgGgoSPN'),
(44, 15, 'email', 'callvisvetlana@list.ru'),
(45, 15, 'message', 'Откинь сомнения и бери все ArataurNiladwyn@gmail.com 000*** omsrislb.com'),
(46, 16, 'name', 'test123'),
(47, 16, 'email', 'aiman1949@gmail.com'),
(48, 16, 'message', 'test1234567'),
(49, 17, 'name', 'ZizefiachAbigo'),
(50, 17, 'email', 'fczmwlzppMt@bobbor.store'),
(51, 17, 'message', 'Заказать ювелирные украшения - только в нашем салоне вы найдете качественную продукцию. по самым низким ценам! \r\n[url=https://uvelir1.ru/]ювелирный арт[/url] \r\nювелирные украшения спб - [url=https://uvelir1.ru]https://www.uvelir1.ru/[/url] \r\n[url=http://ww.deborahamos.net/?URL=uvelir1.ru]https://24net.kz/go?url=http://uvelir1.ru[/url]'),
(52, 18, 'name', 'Testing'),
(53, 18, 'field_88e2006', '0194489946'),
(54, 18, 'email', 'eresources1949@gmail.com'),
(55, 18, 'message', 'Maintenance'),
(56, 18, 'field_25663fc', 'testing descriptiontesting descriptiontesting description'),
(57, 19, 'name', 'Carl Deal'),
(58, 19, 'email', 'bigboxbrandundercover@gmail.com'),
(59, 19, 'message', 'Time is running out to grab the deal of a lifetime! With EasyProProcessing, you can enjoy all these benefits:\r\n\r\n0% processing fees - Save big!\r\nFlat rate - $25/month - No hidden costs!\r\nSame day funding - Get your money fast!\r\nUnlimited transactions - Sky''s the limit!\r\n\r\nhttp://nofee.aiexcellent.com/\r\n\r\nDon''t Miss Out! Your peers are already reaping the rewards. Indifference will cost you. Take control of your financial future today!\r\n\r\nPlease copy this URL if no hyperlink\r\nhttp://nofee.aiexcellent.com/\r\n\r\n\r\nIf you are not interested and wish to opt-out please go here.\r\nunsub.aiessential.com\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n-------------------------------------------------------------------------\r\n0% Processing Fees - Keep every cent!\r\nFlat Rate $25/Month - No surprises!\r\nNo Long-Term Contracts - Flexibility at its best!\r\nUnlimited Transactions - The sky''s the limit!\r\nSame Day Funding - Get your money now!\r\n\r\nDon''t Wait! Your competitors are already ahead. Act now or regret later!'),
(60, 20, 'name', 'Jerry D'),
(61, 20, 'field_88e2006', '3128780396'),
(62, 20, 'email', 'pat@aneesho.com'),
(63, 20, 'message', 'Others'),
(64, 20, 'field_25663fc', 'Do you need help with graphic design - brochures, banners, flyers, advertisements, social media posts, logos etc.?\r\n\r\nWe charge a low fixed monthly fee. Let me know if you''re interested and would like to see our portfolio.'),
(65, 21, 'name', 'Search Engine Index'),
(66, 21, 'field_88e2006', '656788074'),
(67, 21, 'email', 'submissions@searchindex.site'),
(68, 21, 'message', 'Quotation'),
(69, 21, 'field_25663fc', 'Hello,\r\n\r\nfor your website do be displayed in searches your domain needs to be indexed in the Google Search Index.\r\n\r\nTo add your domain to Google Search Index now, please visit \r\n\r\nhttps://SearchRegister.info/'),
(70, 22, 'name', 'Shafiha Juhari'),
(71, 22, 'field_88e2006', '0129266114'),
(72, 22, 'email', 'n-shafiha.juhari@sumisaujanagroup.com'),
(73, 22, 'message', 'Quotation'),
(74, 22, 'field_25663fc', 'I hope this email finds you well. My name is Shafiha, and I am from the Procurement Department at Sumisaujana TCM Chemicals Sdn Bhd. We are currently looking for a contractor to repair and replace insulation for our equipment, including the Thermal Oil Heater, Reactor, and Piping Line.\r\n\r\nWe would be happy to arrange a site visit to provide a better understanding of the scope of work. Please let us know your availability for a discussion.\r\n\r\nLooking forward to your response.'),
(75, 23, 'name', 'Shafiha Juhari'),
(76, 23, 'field_88e2006', '0129266114'),
(77, 23, 'email', 'n-shafiha.juhari@sumisaujanagroup.com'),
(78, 23, 'message', 'Quotation'),
(79, 23, 'field_25663fc', 'I hope this email finds you well. My name is Shafiha, and I am from the Procurement Department at Sumisaujana TCM Chemicals Sdn Bhd. We are currently looking for a contractor to repair and replace insulation for our equipment, including the Thermal Oil Heater, Reactor, and Piping Line.\r\n\r\nWe would be happy to arrange a site visit to provide a better understanding of the scope of work. Please let us know your availability for a discussion.\r\n\r\nLooking forward to your response.'),
(80, 24, 'name', 'Search Engine Index'),
(81, 24, 'field_88e2006', '4185826424'),
(82, 24, 'email', 'submissions@searchindex.site'),
(83, 24, 'message', 'Quotation'),
(84, 24, 'field_25663fc', 'Hello,\r\n\r\nfor your website do be displayed in searches your domain needs to be indexed in the Google Search Index.\r\n\r\nTo add your domain to Google Search Index now, please visit \r\n\r\nhttps://SearchRegister.info/'),
(85, 25, 'name', 'Alexandria Stopford'),
(86, 25, 'field_88e2006', '7935743955'),
(87, 25, 'email', 'alexandria@leadboost.click'),
(88, 25, 'message', 'Quotation'),
(89, 25, 'field_25663fc', 'Hello,\r\n\r\nKudos on acquiring omsrislb.my! It''s always exciting to embark on a new online adventure.\r\n\r\nAs part of our initiative to help new domain owners, I''m connecting with a useful resource for omsrislb.my.\r\n\r\nI''m talking about our the Google Maps Lead Collector - a Chrome extension that enables you to find local businesses in your area. \r\n\r\nI''ve made a quick video that demonstrates how it works:\r\nhttps://www.youtube.com/watch?time_continue=20&v=1Dd7i4vNgu0\r\n\r\nThis free tool enables you to:\r\n\r\nEasily download targeted business leads\r\nFind potential clients in targeted industries\r\nStreamline your lead generation\r\nBegin building your business immediately\r\nYou''ll get 50 leads per search with no restrictions on the number of searches!\r\nDownload your free copy from the video description.\r\n\r\nhttps://www.youtube.com/watch?time_continue=20&v=1Dd7i4vNgu0\r\n\r\nHere''s to your success with omsrislb.my! Please reach out with any questions.\r\n\r\nAll the best, \r\nAlexandria Stopford \r\nDigital Marketing Specialist'),
(90, 26, 'name', 'Search Engine Index'),
(91, 26, 'field_88e2006', '737223127'),
(92, 26, 'email', 'submissions@searchindex.site'),
(93, 26, 'message', 'Quotation'),
(94, 26, 'field_25663fc', 'Hello,\r\n\r\nfor your website do be displayed in searches your domain needs to be indexed in the Google Search Index.\r\n\r\nTo add your domain to Google Search Index now, please visit \r\n\r\nhttps://SearchRegister.info/'),
(95, 27, 'name', 'Terence Townsend'),
(96, 27, 'field_88e2006', '04.21.40.86.31'),
(97, 27, 'email', 'nicheflicksai@growwealthy.info'),
(98, 27, 'message', 'Quotation'),
(99, 27, 'field_25663fc', ''),
(100, 28, 'name', 'Katelyn Raiden'),
(101, 28, 'field_88e2006', '3460480175'),
(102, 28, 'email', 'katelynraiden@gmail.com'),
(103, 28, 'message', 'Quotation'),
(104, 28, 'field_25663fc', 'Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n- Channel Creation: If you haven''t started your YouTube journey yet, we can create a professional channel for you as part of your initial order.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nKatelyn'),
(105, 29, 'name', 'Joanna Riggs'),
(106, 29, 'field_88e2006', '882545380'),
(107, 29, 'email', 'joannariggs278@gmail.com'),
(108, 29, 'message', 'Quotation'),
(109, 29, 'field_25663fc', 'Hi,\r\n\r\nI just visited omsrislb.my and wondered if you''d ever thought about having an engaging video to explain what you do?\r\n\r\nOur videos cost just $195 for a 30 second video ($239 for 60 seconds) and include a full script, voice-over and video.\r\n\r\nI can show you some previous videos we''ve done if you want me to send some over. Let me know if you''re interested in seeing samples of our previous work.\r\n\r\nRegards,\r\nJoanna'),
(110, 30, 'name', 'Search Engine Index'),
(111, 30, 'field_88e2006', '103942964'),
(112, 30, 'email', 'submissions@searchindex.site'),
(113, 30, 'message', 'Quotation'),
(114, 30, 'field_25663fc', 'Hello,\r\n\r\nfor your website do be displayed in searches your domain needs to be indexed in the Google Search Index.\r\n\r\nTo add your domain to Google Search Index now, please visit \r\n\r\nhttps://SearchRegister.info/'),
(115, 31, 'name', 'Search Engine Index'),
(116, 31, 'field_88e2006', '3278006188'),
(117, 31, 'email', 'submissions@searchindex.site'),
(118, 31, 'message', 'Quotation'),
(119, 31, 'field_25663fc', 'Hello,\r\n\r\nfor your website do be displayed in searches your domain needs to be indexed in the Google Search Index.\r\n\r\nTo add your domain to Google Search Index now, please visit \r\n\r\nhttps://SearchRegister.info/'),
(120, 32, 'name', 'Felicity Sauncho'),
(121, 32, 'field_88e2006', '261738226'),
(122, 32, 'email', 'felicitysauncho02@gmail.com'),
(123, 32, 'message', 'Quotation'),
(124, 32, 'field_25663fc', 'Hi there,\r\n\r\nWe run a Youtube growth service, where we can increase your subscriber count safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 700-1500 new subscribers each month.\r\n- Real, human subscribers who subscribe because they are interested in your channel/videos.\r\n- Safe: All actions are done, without using any automated tasks / bots.\r\n- Channel Creation: If you haven''t started your YouTube journey yet, we can create a professional channel for you as part of your initial order.\r\n\r\nOur price is just $60 (USD) per month and we can start immediately.\r\n\r\nIf you are interested then we can discuss further.\r\n\r\nKind Regards,\r\nFelicity'),
(125, 33, 'name', 'Arlene Macandie'),
(126, 33, 'field_88e2006', '7809267603'),
(127, 33, 'email', 'macandie.arlene@gmail.com'),
(128, 33, 'message', 'Quotation'),
(129, 33, 'field_25663fc', 'Hi there,\r\n\r\nI''m reaching out because we''ve just released a complete WordPress video training package with unrestricted Private Label Rights. The package includes 19 professional video lessons across 4 courses, covering everything from WordPress basics to local development.\r\n\r\nKey features:\r\n\r\nFull PLR rights (rebrand, resell, repurpose as you wish)\r\n4 complete courses with 19 video lessons\r\nProfessional production quality\r\nReady-to-launch sales materials included\r\n\r\nThis is ideal if you''re looking to quickly launch your own WordPress training business or add to your existing product line.\r\n\r\nFor detailed information and pricing, visit:  https://furtherinfo.info/wpmk\r\n\r\nKind regards,\r\nArlene'),
(130, 34, 'name', 'Tracy Hawks'),
(131, 34, 'field_88e2006', '688147656'),
(132, 34, 'email', 'tracy.hawks@yahoo.com'),
(133, 34, 'message', 'Quotation'),
(134, 34, 'field_25663fc', 'Hi,\r\n\r\nAre you tired of paying multiple monthly subscriptions for premium AI tools? \r\n\r\nI''d like to introduce the world''s first cloud-based platform that gives you access to premium uncensored versions of leading AI apps in a single dashboard:\r\n\r\nDeepSeek R1, Grok, ChatGPT-4o, Gemini 2.0 Flash, Claude Pro, and more.\r\nNo monthly fees - just a one-time payment of $14.95 (normally $97).\r\nFull commercial license included.\r\nLaunch your own AI subscription platform and charge any amount\r\n\r\nKey Features:\r\n\r\nUncensored AI chat with no restrictions on topics.\r\nSupport for 40+ languages.\r\nCode generation capabilities.\r\nEasy-to-use dashboard.\r\n30-day money-back guarantee\r\n\r\nThis limited-time offer includes all premium AI tools without any censorship or monthly fees. You''ll have everything you need to create high-quality content, generate stunning visuals, write code, and more.\r\n\r\nLearn more: https://furtherinfo.info/oneai\r\n\r\nBest regards,\r\nTracy\r\n\r\nIf you do not wish us to contact you again, let us know here: https://removeme.live/a/unsubscribe.php?d=omsrislb.my'),
(135, 35, 'name', 'Clay Gatewood'),
(136, 35, 'field_88e2006', '6649992741'),
(137, 35, 'email', 'gatewood.clay10@gmail.com'),
(138, 35, 'message', 'Quotation'),
(139, 35, 'field_25663fc', 'Hi,\r\n\r\nI thought this may interest you - Get immediate access to 20 premium digital marketing courses with 100% full unrestricted PLR.\r\n\r\nThis means you can:\r\n\r\nSell them as your own products\r\nRebrand them with your name/logo\r\nBundle them with other offerings\r\nGive them away to build your list\r\nUse the content in any way you choose\r\n\r\nThese in-demand courses cover essential digital marketing topics that your audience needs right now.\r\n\r\nWhy start from scratch when you can leverage these professionally-created resources immediately?\r\n\r\nFind out more: https://furtherinfo.info/20plr'),
(140, 36, 'name', 'Krista Abt'),
(141, 36, 'field_88e2006', '416995214'),
(142, 36, 'email', 'krista.abt@gmail.com'),
(143, 36, 'message', 'Quotation'),
(144, 36, 'field_25663fc', 'Hi,\r\n\r\nAre you looking to launch a new YouTube channel or struggling to get the growth you want from your current one? It can be tough to know exactly where to focus your efforts.\r\n\r\nThat''s why we''ve put together the FREE "TubeLaunch Blueprint" – a straightforward guide packed with actionable strategies to help you build and scale a successful YouTube channel.\r\n\r\nDownload here: https://furtherinfo.info/ebookyt\r\n\r\nInside, you''ll discover how to:\r\n\r\nSet up a professional channel that instantly builds trust.\r\nDefine your niche and attract your ideal viewers.\r\nMaster YouTube SEO basics to get your videos discovered.\r\nCreate irresistible thumbnails that boost clicks.\r\nEngage your audience and build a thriving community.\r\n\r\nReady to stop guessing and start growing strategically?\r\n\r\nDownload here: https://furtherinfo.info/ebookyt\r\n\r\nThis guide is designed to demystify the process and give you a clear roadmap to YouTube success.\r\n\r\nKind regards,\r\nKrista\r\n\r\nOpt-out of future emails: https://removeme.live/unsubscribe.php?d=omsrislb.my'),
(145, 37, 'name', 'Gemma Marshall'),
(146, 37, 'field_88e2006', '353157639'),
(147, 37, 'email', 'gemmamarshall811@gmail.com'),
(148, 37, 'message', 'Quotation'),
(149, 37, 'field_25663fc', 'Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n- We can target followers via location, interests and demographics.\r\n- The price is just $60 per month, and we can start immediately.\r\n\r\nIf you''d like to see some of our previous work, let me know, and we can discuss it further.\r\n\r\nKind Regards,\r\nGemma');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_links`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_litespeed_img_optming`
--

CREATE TABLE `wpiq_litespeed_img_optming` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `optm_status` tinyint NOT NULL DEFAULT '0',
  `src` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `server_info` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `post_id` (`post_id`),
  KEY `optm_status` (`optm_status`),
  KEY `src` (`src`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_litespeed_img_optming`
--

INSERT INTO `wpiq_litespeed_img_optming` VALUES
(1, 10, 6, '2021/01/placeholder.png', '{"server":"https:\\/\\/sin97-hyb-worker.quic.cloud","id":"1","file_id":"67db88c364f6c2.83574772.png","ori_md5":"c89550169d5786cbce8b8a0e584dc7b7","ori":"dl\\/d_6969445\\/67db88c364f6c2.83574772.png","webp_md5":"8f6f3b588a24db85476dd4d8e9ca072c","webp":"dl\\/d_6969445\\/67db88c364f6c2.83574772.png.webp"}'),
(2, 10, 1, '2021/01/placeholder-300x200.png', ''),
(3, 10, 1, '2021/01/placeholder-1024x683.png', ''),
(4, 10, 1, '2021/01/placeholder-150x150.png', ''),
(5, 10, 1, '2021/01/placeholder-768x512.png', '');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_options`
--

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

--
-- Dumping data for table `wpiq_options`
--

INSERT INTO `wpiq_options` VALUES
(1, 'siteurl', 'https://omsrislb.my', 'yes'),
(2, 'home', 'https://omsrislb.my', 'yes'),
(3, 'blogname', 'Om Sri Slb', 'yes'),
(4, 'blogdescription', 'Insulation Specialist', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'daniel@cloudix.my', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:123:{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:46:"e-floating-buttons/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:56:"e-floating-buttons/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:76:"e-floating-buttons/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:71:"e-floating-buttons/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:71:"e-floating-buttons/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:52:"e-floating-buttons/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:35:"e-floating-buttons/([^/]+)/embed/?$";s:51:"index.php?e-floating-buttons=$matches[1]&embed=true";s:39:"e-floating-buttons/([^/]+)/trackback/?$";s:45:"index.php?e-floating-buttons=$matches[1]&tb=1";s:47:"e-floating-buttons/([^/]+)/page/?([0-9]{1,})/?$";s:58:"index.php?e-floating-buttons=$matches[1]&paged=$matches[2]";s:54:"e-floating-buttons/([^/]+)/comment-page-([0-9]{1,})/?$";s:58:"index.php?e-floating-buttons=$matches[1]&cpage=$matches[2]";s:43:"e-floating-buttons/([^/]+)(?:/([0-9]+))?/?$";s:57:"index.php?e-floating-buttons=$matches[1]&page=$matches[2]";s:35:"e-floating-buttons/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:45:"e-floating-buttons/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:65:"e-floating-buttons/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"e-floating-buttons/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"e-floating-buttons/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:41:"e-floating-buttons/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:45:"elementskit-content/.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:55:"elementskit-content/.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:75:"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:70:"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:70:"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:51:"elementskit-content/.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:34:"elementskit-content/(.+?)/embed/?$";s:52:"index.php?elementskit_content=$matches[1]&embed=true";s:38:"elementskit-content/(.+?)/trackback/?$";s:46:"index.php?elementskit_content=$matches[1]&tb=1";s:46:"elementskit-content/(.+?)/page/?([0-9]{1,})/?$";s:59:"index.php?elementskit_content=$matches[1]&paged=$matches[2]";s:53:"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$";s:59:"index.php?elementskit_content=$matches[1]&cpage=$matches[2]";s:42:"elementskit-content/(.+?)(?:/([0-9]+))?/?$";s:58:"index.php?elementskit_content=$matches[1]&page=$matches[2]";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:13:"favicon\\.ico$";s:19:"index.php?favicon=1";s:12:"sitemap\\.xml";s:23:"index.php?sitemap=index";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:8:"embed/?$";s:21:"index.php?&embed=true";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:38:"index.php?&page_id=7&cpage=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:17:"comments/embed/?$";s:21:"index.php?&embed=true";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:20:"search/(.+)/embed/?$";s:34:"index.php?s=$matches[1]&embed=true";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:23:"author/([^/]+)/embed/?$";s:44:"index.php?author_name=$matches[1]&embed=true";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:45:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$";s:74:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:32:"([0-9]{4})/([0-9]{1,2})/embed/?$";s:58:"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:19:"([0-9]{4})/embed/?$";s:37:"index.php?year=$matches[1]&embed=true";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:".?.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"(.?.+?)/embed/?$";s:41:"index.php?pagename=$matches[1]&embed=true";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:24:"(.?.+?)(?:/([0-9]+))?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:27:"[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"([^/]+)/embed/?$";s:37:"index.php?name=$matches[1]&embed=true";s:20:"([^/]+)/trackback/?$";s:31:"index.php?name=$matches[1]&tb=1";s:40:"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:35:"([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:28:"([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:35:"([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:24:"([^/]+)(?:/([0-9]+))?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:16:"[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:26:"[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:46:"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:22:"[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:9:{i:0;s:91:"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php";i:1;s:51:"all-in-one-wp-migration/all-in-one-wp-migration.php";i:2;s:31:"code-snippets/code-snippets.php";i:3;s:31:"elementor-pro/elementor-pro.php";i:4;s:23:"elementor/elementor.php";i:5;s:37:"elementskit-lite/elementskit-lite.php";i:6;s:51:"ooohboi-steroids-for-elementor/ooohboi-steroids.php";i:7;s:23:"wordfence/wordfence.php";i:8;s:27:"wp-optimize/wp-optimize.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'https://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:72:"/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/style.css";i:1;s:0:"";}', 'no'),
(40, 'template', 'twentytwentythree', 'yes'),
(41, 'stylesheet', 'twentytwentythree', 'yes'),
(42, 'comment_registration', '0', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'subscriber', 'yes'),
(46, 'db_version', '60717', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '1', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'page', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '1', 'yes'),
(68, 'close_comments_days_old', '28', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '0', 'yes'),
(72, 'comments_per_page', '20', 'yes'),
(73, 'default_comments_page', 'newest', 'yes'),
(74, 'comment_order', 'asc', 'yes'),
(75, 'sticky_posts', 'a:0:{}', 'yes'),
(76, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(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:4:{s:23:"elementor/elementor.php";a:2:{i:0;s:21:"Elementor\\Maintenance";i:1;s:9:"uninstall";}s:21:"backuply/backuply.php";s:21:"backuply_deactivation";s:27:"wp-optimize/wp-optimize.php";a:2:{i:0;s:13:"WPO_Uninstall";i:1;s:7:"actions";}s:35:"litespeed-cache/litespeed-cache.php";s:47:"LiteSpeed\\Activation::uninstall_litespeed_cache";}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '7', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '602', 'yes'),
(87, 'medium_large_size_w', '768', 'yes'),
(88, 'medium_large_size_h', '0', 'yes'),
(89, 'wp_page_for_privacy_policy', '3', 'yes'),
(90, 'show_comments_cookies_opt_in', '1', 'yes'),
(91, 'admin_email_lifespan', '1692667618', 'yes'),
(92, 'disallowed_keys', '', 'no'),
(93, 'comment_previously_approved', '1', 'yes'),
(94, 'auto_plugin_theme_update_emails', 'a:1:{s:91:"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php";s:4:"2.81";}', 'no'),
(95, 'auto_update_core_dev', 'enabled', 'yes'),
(96, 'auto_update_core_minor', 'enabled', 'yes'),
(97, 'auto_update_core_major', 'enabled', 'yes'),
(98, 'initial_db_version', '49752', 'yes'),
(99, 'wpiq_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:73:{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:23:"wf2fa_activate_2fa_self";b:1;s:25:"wf2fa_activate_2fa_others";b:1;s:21:"wf2fa_manage_settings";b:1;s:26:"create_notes_elementor-pro";b:1;s:24:"edit_notes_elementor-pro";b:1;s:26:"delete_notes_elementor-pro";b:1;s:24:"read_notes_elementor-pro";b:1;s:31:"edit_others_notes_elementor-pro";b:1;s:33:"delete_others_notes_elementor-pro";b:1;s:39:"read_others_private_notes_elementor-pro";b:1;s:19:"cf7_db_form_view989";b:1;s:20:"cf7_db_form_edit_989";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'),
(100, 'fresh_site', '0', 'off'),
(101, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(102, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(103, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(104, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(105, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(106, 'sidebars_widgets', 'a:4:{s:19:"wp_inactive_widgets";a:3:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";}s:9:"sidebar-1";a:3:{i:0;s:10:"archives-2";i:1;s:12:"categories-2";i:2;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:13:"array_version";i:3;}', 'yes'),
(107, 'allow_major_auto_core_updates', 'true', 'yes'),
(108, 'allow_minor_auto_core_updates', 'true', 'yes'),
(109, 'auto_update_plugin', 'true', 'yes'),
(110, 'auto_update_theme', 'true', 'yes'),
(111, 'auto_update_translation', 'true', 'yes'),
(113, 'mm_coming_soon', 'false', 'yes'),
(114, 'mm_host', 'b7119342-0c17-11e2-8b3b-0030483370c8', 'yes'),
(115, 'bluehost_plugin_compatibility_results', 'a:2:{s:6:"status";s:8:"standard";s:9:"timestamp";s:19:"2021-01-13 03:53:39";}', 'yes'),
(116, 'CE4WP_REFERRED_BY', 'a:3:{s:8:"campaign";s:17:"Bluehost_Standard";s:6:"plugin";s:8:"Bluehost";s:6:"source";s:12:"preinstalled";}', 'yes'),
(117, 'ce4wp_activated', '1', 'yes'),
(118, 'ce4wp_install_date', '2021-01-13 3:53:40', 'yes'),
(119, 'ce4wp_activation_redirect', '0', 'yes'),
(120, 'endurance_cache_level', '2', 'yes'),
(127, 'cron', 'a:33:{i:1769560554;a:1:{s:40:"wordfence_completeCoreUpdateNotification";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1769560559;a:1:{s:15:"wf_scan_monitor";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:24:"wf_scan_monitor_interval";s:4:"args";a:0:{}s:8:"interval";i:60;}}}i:1769561457;a:1:{s:21:"wordfence_hourly_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1769561632;a:1:{s:20:"jetpack_clean_nonces";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1769561634;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:1769562246;a:1:{s:16:"mojo_cron_hourly";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1769562939;a:1:{s:21:"wordfence_ls_ntp_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1769567700;a:1:{s:31:"wpo_page_cache_schedule_preload";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:9:"wpo_daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1769568745;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:1769572432;a:2:{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: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;}}}i:1769572434;a:2:{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:1769573046;a:3:{s:16:"mojo_cron_weekly";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}s:20:"mojo_cron_twicedaily";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:15:"mojo_cron_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:1769577265;a:2:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:25:"delete_expired_transients";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1769586217;a:2:{s:21:"wpo_weekly_cron_tasks";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}s:29:"wpo_smush_clear_backup_images";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1769586493;a:2:{s:20:"wpo_prune_cache_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:19:"wpo_purge_old_cache";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:19:"wpo_purge_old_cache";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1769588596;a:1:{s:21:"wp_update_user_counts";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1769599567;a:1:{s:28:"elementor/tracker/send_event";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1769606082;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:1769612682;a:1:{s:35:"wordfence_batchReportFailedAttempts";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1769644242;a:1:{s:26:"wordfence_daily_autoUpdate";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1769644257;a:1:{s:20:"wordfence_daily_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1769658832;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:1769658844;a:1:{s:12:"bh_data_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}i:1769676955;a:1:{s:13:"nfd_data_cron";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}i:1769699061;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"0cfac25a5a632cff550548cdeba03787";a:2:{s:8:"schedule";b:0;s:4:"args";a:1:{i:0;i:1769699061;}}}}i:1769862630;a:1:{s:27:"wordfence_processAttackData";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1769958261;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"bcdd3776aff9af955bcf861f30e51f35";a:2:{s:8:"schedule";b:0;s:4:"args";a:1:{i:0;i:1769958261;}}}}i:1770021899;a:1:{s:30:"wp_delete_temp_updater_backups";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}i:1770048000;a:1:{s:31:"wordfence_email_activity_report";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1770217461;a:1:{s:30:"wordfence_start_scheduled_scan";a:1:{s:32:"307a098979a79bd37bf2ca176131f814";a:2:{s:8:"schedule";b:0;s:4:"args";a:1:{i:0;i:1770217461;}}}}i:1771487017;a:1:{s:28:"wpo_smush_clear_failed_tasks";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:11:"wpo_monthly";s:4:"args";a:0:{}s:8:"interval";i:2592000;}}}i:1771630705;a:1:{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:7:"version";i:2;}', 'on'),
(128, 'jetpack_connection_active_plugins', 'a:1:{s:7:"jetpack";a:1:{s:4:"name";s:7:"Jetpack";}}', 'yes'),
(129, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(130, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(131, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(132, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(133, 'widget_media_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(134, 'widget_media_video', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(135, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(136, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(137, 'widget_custom_html', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(152, 'recovery_keys', 'a:0:{}', 'off'),
(166, 'bluehost_plugin_version', '2.12.15', 'yes'),
(169, 'mm_install_date', 'Jan 13, 2021', 'yes'),
(170, 'mm_cron', 'a:1:{s:6:"hourly";a:1:{s:9:"installed";a:5:{s:1:"t";s:5:"event";s:2:"ec";s:13:"plugin_status";s:2:"ea";s:9:"installed";s:2:"el";s:26:"Install date: Jan 13, 2021";s:4:"keep";b:0;}}}', 'yes'),
(171, 'bh_plugin_install_date', '1610510645', 'yes'),
(172, 'eig_last_site_login', '2023-01-10T11:23:41+00:00', 'yes'),
(177, 'bh_data_queue', 'a:0:{}', 'no'),
(179, 'theme_mods_twentytwentyone', 'a:6:{s:18:"custom_css_post_id";i:44;s:11:"custom_logo";i:741;s:28:"display_excerpt_or_full_post";s:7:"excerpt";s:18:"nav_menu_locations";a:1:{s:7:"primary";i:3;}s:16:"background_color";s:6:"ffffff";s:16:"sidebars_widgets";a:2:{s:4:"time";i:1692519944;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:0:{}s:9:"sidebar-2";a:3:{i:0;s:10:"archives-2";i:1;s:12:"categories-2";i:2;s:6:"meta-2";}}}}', 'off'),
(183, 'finished_updating_comment_type', '1', 'yes'),
(216, 'recently_activated', 'a:3:{s:35:"litespeed-cache/litespeed-cache.php";i:1742974985;s:26:"wp-backup-manager/init.php";i:1742404710;s:21:"backuply/backuply.php";i:1742404693;}', 'off'),
(217, 'elementor_version', '3.28.1', 'yes'),
(218, 'elementor_install_history', 'a:20:{s:5:"3.0.6";i:1673349968;s:6:"3.0.16";i:1610514968;s:5:"3.1.0";i:1611699670;s:5:"3.1.1";i:1612195352;s:5:"3.1.2";i:1614734550;s:5:"3.1.3";i:1614806110;s:5:"3.1.4";i:1615404726;s:5:"3.2.1";i:1619115321;s:5:"3.2.2";i:1619457629;s:5:"3.2.3";i:1620240904;s:5:"3.2.4";i:1622135537;s:5:"3.2.5";i:1623905940;s:5:"3.4.8";i:1639064215;s:5:"3.5.0";i:1639497960;s:6:"3.10.0";i:1692241881;s:6:"3.10.1";i:1692507983;s:6:"3.15.2";i:1692507984;s:6:"3.15.3";i:1692584330;s:6:"3.28.0";i:1742439623;s:6:"3.28.1";i:1742974910;}', 'yes'),
(222, 'elementor_active_kit', '4', 'yes'),
(229, '_elementor_installed_time', '1610514927', 'yes'),
(230, 'elementor_remote_info_library', 'a:3:{s:10:"types_data";a:4:{s:5:"block";a:2:{s:10:"categories";a:30:{i:0;s:8:"404 page";i:1;s:5:"about";i:2;s:7:"archive";i:3;s:8:"Benefits";i:4;s:14:"call to action";i:5;s:7:"clients";i:6;s:7:"contact";i:7;s:4:"Data";i:8;s:10:"ehp-footer";i:9;s:10:"ehp-header";i:10;s:3:"faq";i:11;s:8:"features";i:12;s:6:"footer";i:13;s:7:"Gallery";i:14;s:6:"header";i:15;s:4:"hero";i:16;s:11:"Link in Bio";i:17;s:9:"portfolio";i:18;s:7:"pricing";i:19;s:15:"product archive";i:20;s:5:"Quote";i:21;s:15:"Service Details";i:22;s:8:"services";i:23;s:11:"single page";i:24;s:11:"single post";i:25;s:14:"single product";i:26;s:5:"stats";i:27;s:9:"subscribe";i:28;s:4:"team";i:29;s:12:"testimonials";}s:4:"sets";a:5:{i:0;s:11:"Boxing Club";i:1;s:19:"Business Consultant";i:2;s:16:"Marketing Agency";i:3;s:9:"Wireframe";i:4;s:15:"Workshop Center";}}s:5:"popup";a:1:{s:10:"categories";a:6:{i:0;s:10:"bottom bar";i:1;s:7:"classic";i:2;s:6:"fly-in";i:3;s:11:"full screen";i:4;s:9:"hello bar";i:5;s:8:"slide-in";}}s:2:"lp";a:1:{s:10:"categories";a:15:{i:0;s:8:"Business";i:1;s:16:"Coming Soon Page";i:2;s:9:"eCommerce";i:3;s:9:"Education";i:4;s:6:"Events";i:5;s:18:"Health and Fitness";i:6;s:3:"NFT";i:7;s:14:"Online Service";i:8;s:7:"Product";i:9;s:11:"Real Estate";i:10;s:18:"Social Involvement";i:11;s:14:"Thank You Page";i:12;s:6:"Travel";i:13;s:18:"Under Construction";i:14;s:9:"Wireframe";}}s:2:"lb";a:1:{s:10:"categories";a:2:{i:0;s:4:"post";i:1;s:7:"product";}}}s:10:"categories";a:30:{i:0;s:8:"404 page";i:1;s:5:"about";i:2;s:7:"archive";i:3;s:8:"Benefits";i:4;s:14:"call to action";i:5;s:7:"clients";i:6;s:7:"contact";i:7;s:4:"Data";i:8;s:10:"ehp-footer";i:9;s:10:"ehp-header";i:10;s:3:"faq";i:11;s:8:"features";i:12;s:6:"footer";i:13;s:7:"Gallery";i:14;s:6:"header";i:15;s:4:"hero";i:16;s:11:"Link in Bio";i:17;s:9:"portfolio";i:18;s:7:"pricing";i:19;s:15:"product archive";i:20;s:5:"Quote";i:21;s:15:"Service Details";i:22;s:8:"services";i:23;s:11:"single page";i:24;s:11:"single post";i:25;s:14:"single product";i:26;s:5:"stats";i:27;s:9:"subscribe";i:28;s:4:"team";i:29;s:12:"testimonials";}s:9:"templates";a:4:{i:0;a:20:{s:4:"tmpl";i:1254;s:2:"id";i:20472;s:5:"title";s:10:"test ido f";s:9:"thumbnail";s:153:"https://library.stg.elementor.red/wp-content/uploads/2025/01/png-clipart-logo-harry-potter-literary-series-lord-voldemort-film-harry-potter-thumbnail.png";s:12:"tmpl_created";i:1751356263;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.stg.elementor.red/blocks/test-ido-f/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:11:"access_tier";s:4:"free";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:1;a:20:{s:4:"tmpl";i:1227;s:2:"id";i:19968;s:5:"title";s:12:"Zeyad Test 1";s:9:"thumbnail";s:83:"https://library.stg.elementor.red/wp-content/uploads/2022/09/boxking_hero_img_2.jpg";s:12:"tmpl_created";i:1670765723;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.stg.elementor.red/blocks/zeyad-test-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:11:"access_tier";s:9:"essential";s:7:"subtype";s:5:"about";s:4:"tags";s:2:"[]";s:10:"menu_order";i:1;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:2;a:20:{s:4:"tmpl";i:1231;s:2:"id";i:19494;s:5:"title";s:5:"test2";s:9:"thumbnail";s:83:"https://library.stg.elementor.red/wp-content/uploads/2022/09/boxking_hero_img_4.jpg";s:12:"tmpl_created";i:1672308146;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.stg.elementor.red/blocks/test2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:11:"access_tier";s:9:"essential";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:2;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:3;a:20:{s:4:"tmpl";i:1209;s:2:"id";i:9631;s:5:"title";s:38:"Slide-in | Sale | Register | Subscribe";s:9:"thumbnail";s:87:"https://library.stg.elementor.red/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png";s:12:"tmpl_created";i:1660034300;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.stg.elementor.red/popups/slide-in-sale-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:11:"access_tier";s:9:"essential";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:142;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:18:"editor_layout_type";s:0:"";s:15:"minimum_version";s:5:"0.0.0";s:8:"products";s:7:"regular";s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}}}', 'off'),
(231, 'elementor_remote_info_feed_data', 'a:3:{i:0;a:5:{s:5:"title";s:76:"Introducing Elementor 3.32: Transitions, Transform, Size Variables, and More";s:7:"excerpt";s:250:"Elementor 3.32 is here, accelerating Editor V4 Alpha with transform controls and layered transitions, system-wide Size Variables and streamlined class management. This release empowers you to build more consistent, dynamic, and professional websites.";s:7:"created";i:1759243152;s:5:"badge";s:3:"NEW";s:3:"url";s:138:"https://elementor.com/blog/elementor-332-v4-transform-transitions/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:1;a:5:{s:5:"title";s:70:"Introducing Elementor 3.31: New Editor V4 Variables, Filters, and More";s:7:"excerpt";s:294:"Elementor 3.31 is here, pushing Editor V4 forward with powerful design system enhancements and modern visual styling tools. From Variables and Filters to smarter editing workflows and semantic markup, this version makes it easier than ever to design beautiful, performant, and accessible sites.";s:7:"created";i:1755094220;s:5:"badge";s:3:"NEW";s:3:"url";s:140:"https://elementor.com/blog/elementor-331-v4-alpha-variables-filters/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:2;a:5:{s:5:"title";s:67:"What Is an MCP? The AI Breakthrough Web Creators Shouldn’t Ignore";s:7:"excerpt";s:143:"Discover how Model Context Protocol (MCP) is shaping AI-tool interaction and redefining how pro web creators build, manage, and scale websites.";s:7:"created";i:1754310811;s:5:"badge";s:0:"";s:3:"url";s:130:"https://elementor.com/blog/mcp-explained-for-web-creators/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}}', 'off'),
(238, 'elementor_pro_version', '3.15.1', 'yes'),
(239, 'widget_elementor-library', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(240, '_elementor_pro_installed_time', '1610514968', 'yes'),
(245, 'elementor_fonts_manager_font_types', 'a:0:{}', 'yes'),
(246, 'elementor_fonts_manager_fonts', 'a:0:{}', 'yes'),
(247, 'elementor_custom_icon_sets_config', 'a:0:{}', 'yes'),
(248, 'elementor_connect_site_key', '04b225698d23aff67f373b4d04d6bd2f', 'yes'),
(249, 'elementor_allow_tracking', 'yes', 'yes'),
(250, 'elementor_tracker_last_send', '1769560569', 'yes'),
(251, 'elementor_pro_license_key', '3160f55deed28854d76ba0b22fa5e968', 'yes'),
(252, '_elementor_pro_license_data_fallback', 'a:2:{s:7:"timeout";i:1657352314;s:5:"value";s:446:"{"expires":"2022-11-05 00:04:44","payment_id":8827617,"subscription_id":8827617,"customer_name":"Daniel Chye","customer_email":"daniel@cloudix.my","price_id":3,"license_limit":1000,"site_count":191,"activations_left":809,"success":true,"license":"valid","item_id":6630548,"item_name":"Elementor Pro - Expert","subscriptions":"enable","checksum":"checksum","features":["experts","template_access_level_20","kit_access_level_20","editor_comments"]}";}', 'yes'),
(253, '_elementor_pro_license_data', 'a:2:{s:7:"timeout";i:1657309114;s:5:"value";s:446:"{"expires":"2022-11-05 00:04:44","payment_id":8827617,"subscription_id":8827617,"customer_name":"Daniel Chye","customer_email":"daniel@cloudix.my","price_id":3,"license_limit":1000,"site_count":191,"activations_left":809,"success":true,"license":"valid","item_id":6630548,"item_name":"Elementor Pro - Expert","subscriptions":"enable","checksum":"checksum","features":["experts","template_access_level_20","kit_access_level_20","editor_comments"]}";}', 'yes'),
(341, 'elementskit-lite_install_date', '2021-01-13 01:22:50', 'yes'),
(342, 'elementskit-lite__banner_last_check', '1765297103', 'yes'),
(343, 'elementskit-lite__banner_data', 'O:8:"stdClass":10:{s:8:"10021821";O:8:"stdClass":7:{s:2:"id";i:10021821;s:5:"title";s:32:"Wpmet Notice BFCM Dashboard 2025";s:4:"type";s:6:"notice";s:6:"screen";s:9:"dashboard";s:5:"start";i:1762819200;s:3:"end";i:1765324800;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:29:"https://wpmet.com/wpnoticeh80";s:11:"button_text";s:16:"Save $3,397 Now!";s:11:"notice_body";s:259:"<strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Wpmet’s Black Friday Sale is live<em data-start="1852" data-end="1881">!\r\n</em></strong><strong>\r\nSave up to $3,397 on the All-in-One WordPress Plugin Bundle (80% OFF) </strong>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10021820";O:8:"stdClass":7:{s:2:"id";i:10021820;s:5:"title";s:24:"Wpmet BFCM Own page 2025";s:4:"type";s:6:"notice";s:6:"screen";s:11:"plugin_page";s:5:"start";i:1762819200;s:3:"end";i:1765324800;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:29:"https://wpmet.com/wpnoticeh80";s:11:"button_text";s:16:"Save $3,397 Now!";s:11:"notice_body";s:257:"<strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Wpmet’s Black Friday Sale is live<em data-start="1852" data-end="1881">!</em></strong><strong>\r\nSave up to $3,397 on the All-in-One WordPress Plugin Bundle (80% OFF) </strong>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10020931";O:8:"stdClass":7:{s:2:"id";i:10020931;s:5:"title";s:29:"Wpmet Halloween Own page 2025";s:4:"type";s:6:"notice";s:6:"screen";s:11:"plugin_page";s:5:"start";i:1760486400;s:3:"end";i:1762128000;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:29:"https://wpmet.com/wpnoticeh78";s:11:"button_text";s:16:"Save $2,936 Now!";s:11:"notice_body";s:475:"<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Wpmet’s Halloween Sale is live<em data-start="1852" data-end="1881">!</em></strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><strong>Save up to $2,936 on the All-in-One WordPress Plugin Bundle (78% OFF) </strong>Or <strong>enjoy up to 35% OFF</strong> on your favorite single plugins — <em data-start="794" data-end="830">ElementsKit, GutenKit, ShopEngine,</em> and more!!</p>";s:12:"notice_image";s:64:"https://api.wpmet.com/auth/wp-content/uploads/2025/10/78-Off.jpg";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10020929";O:8:"stdClass":7:{s:2:"id";i:10020929;s:5:"title";s:30:"Wpmet Halloween Dashboard 2025";s:4:"type";s:6:"notice";s:6:"screen";s:9:"dashboard";s:5:"start";i:1760486400;s:3:"end";i:1762128000;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:29:"https://wpmet.com/wpnoticeh78";s:11:"button_text";s:16:"Save $2,936 Now!";s:11:"notice_body";s:432:"<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Wpmet’s Halloween Sale is live!</strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><strong>Save up to $2,936 on the All-in-One WordPress Plugin Bundle (78% OFF) </strong>Or <strong>enjoy up to 35% OFF</strong> on your favorite single plugins — <em data-start="794" data-end="830">ElementsKit, GutenKit, ShopEngine,</em> and more!!</p>";s:12:"notice_image";s:64:"https://api.wpmet.com/auth/wp-content/uploads/2025/10/78-Off.jpg";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10019444";O:8:"stdClass":7:{s:2:"id";i:10019444;s:5:"title";s:27:"Wpmet Birthday 2025 ownpage";s:4:"type";s:6:"notice";s:6:"screen";s:11:"plugin_page";s:5:"start";i:1753920000;s:3:"end";i:1755561600;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:26:"https://wpmet.com/notice51";s:11:"button_text";s:20:"Claim Your Discount!";s:11:"notice_body";s:589:"<h3><strong style="color: #; text-transform: sentencecase; font-size: 14px;"><span style="color: #e60073;">Wpmet Birthday Sale!!</span></strong></h3>\r\n<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Save up to $2,986 on Premium WordPress Bundle Plugin!</strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><b>Get up to 30% discounts</b> on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, PopupKit, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10018928";O:8:"stdClass":7:{s:2:"id";i:10018928;s:5:"title";s:29:"Wpmet Birthday 2025 dashboard";s:4:"type";s:6:"notice";s:6:"screen";s:9:"dashboard";s:5:"start";i:1753920000;s:3:"end";i:1755561600;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:26:"https://wpmet.com/notice50";s:11:"button_text";s:20:"Claim Your Discount!";s:11:"notice_body";s:589:"<h3><strong style="color: #; text-transform: sentencecase; font-size: 14px;"><span style="color: #e60073;">Wpmet Birthday Sale!!</span></strong></h3>\r\n<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Save up to $2,986 on Premium WordPress Bundle Plugin!</strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><b>Get up to 30% discounts</b> on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, PopupKit, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10018688";O:8:"stdClass":7:{s:2:"id";i:10018688;s:5:"title";s:42:"Wpmet 4th of July Flash Sale 2025 Ownpages";s:4:"type";s:6:"notice";s:6:"screen";s:11:"plugin_page";s:5:"start";i:1751328000;s:3:"end";i:1752019200;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:26:"https://wpmet.com/notice35";s:11:"button_text";s:20:"Claim Your Discount!";s:11:"notice_body";s:585:"<h3><strong style="color: #; text-transform: uppercase; font-size: 14px;"><span style="color: #e60073;">Happy 4th of July super Sale!!</span></strong></h3>\r\n<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Save up to $2,986 on Premium WordPress Bundle Plugin!</strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><b>Get up to 30% discounts</b> on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10018687";O:8:"stdClass":7:{s:2:"id";i:10018687;s:5:"title";s:43:"Wpmet 4th of July Flash Sale 2025 Dashboard";s:4:"type";s:6:"notice";s:6:"screen";s:9:"dashboard";s:5:"start";i:1751328000;s:3:"end";i:1752019200;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:26:"https://wpmet.com/notice35";s:11:"button_text";s:20:"Claim Your Discount!";s:11:"notice_body";s:585:"<h3><strong style="color: #; text-transform: uppercase; font-size: 14px;"><span style="color: #e60073;">Happy 4th of July super Sale!!</span></strong></h3>\r\n<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Save up to $2,986 on Premium WordPress Bundle Plugin!</strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><b>Get up to 30% discounts</b> on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10018221";O:8:"stdClass":7:{s:2:"id";i:10018221;s:5:"title";s:43:"WordPress Birthday Flash Sale 2025 Own Page";s:4:"type";s:6:"notice";s:6:"screen";s:11:"plugin_page";s:5:"start";i:1748304000;s:3:"end";i:1748649600;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:32:"www.wpmet.com/banner//wpbirthday";s:11:"button_text";s:29:"Claim Your Birthday Discount!";s:11:"notice_body";s:590:"<h3><strong style="color: #; text-transform: uppercase; font-size: 14px;"><span style="color: #e60073;">WordPress Birthday Deals from Wpmet</span></strong></h3>\r\n<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Save up to $2,986 on Premium WordPress Bundle Plugin!</strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><b>Get up to 30% discounts</b> on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}s:8:"10018220";O:8:"stdClass":7:{s:2:"id";i:10018220;s:5:"title";s:44:"WordPress Birthday Flash Sale 2025 Dashboard";s:4:"type";s:6:"notice";s:6:"screen";s:9:"dashboard";s:5:"start";i:1748304000;s:3:"end";i:1748649600;s:4:"data";O:8:"stdClass":9:{s:4:"type";s:6:"notice";s:11:"button_link";s:32:"www.wpmet.com/banner//wpbirthday";s:11:"button_text";s:29:"Claim Your Birthday Discount!";s:11:"notice_body";s:590:"<h3><strong style="color: #; text-transform: uppercase; font-size: 14px;"><span style="color: #e60073;">WordPress Birthday Deals from Wpmet</span></strong></h3>\r\n<h3><strong style="font-size: 24px; padding: 8px 0 5px; color: #; display: block;">Save up to $2,986 on Premium WordPress Bundle Plugin!</strong></h3>\r\n<p style="font-size: 16px; margin-left: -2px;"><b>Get up to 30% discounts</b> on each of our PRO Single plugins — ElementsKit, GutenKit, ShopEngine, MetForm, EmailKit, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>";s:12:"notice_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2024/11/80.png";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";s:10:"unique_key";s:0:"";}}}', 'yes'),
(372, 'elementskit-lite__stories_last_check', '1765297102', 'yes'),
(373, 'elementskit-lite__stories_data', 'O:8:"stdClass":10:{s:8:"10021822";O:8:"stdClass":9:{s:2:"id";i:10021822;s:5:"title";s:18:"BFCM GetGenie 2025";s:11:"description";s:0:"";s:7:"plugins";a:2:{i:0;s:8:"getgenie";i:1;s:12:"getgenie-pro";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1762819200;s:3:"end";i:1765324800;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:33:"https://getgenie.ai/geniestoryh50";s:11:"story_image";s:68:"https://api.wpmet.com/auth/wp-content/uploads/2025/11/GetGenie-1.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10021818";O:8:"stdClass":9:{s:2:"id";i:10021818;s:5:"title";s:15:"Wpmet BFCM 2025";s:11:"description";s:0:"";s:7:"plugins";a:7:{i:0;s:16:"elementskit-lite";i:1;s:8:"emailkit";i:2;s:21:"gutenkit-blocks-addon";i:3;s:7:"metform";i:4;s:10:"shopengine";i:5;s:9:"wp-social";i:6;s:18:"wp-ultimate-review";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1762819200;s:3:"end";i:1765324800;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:28:"https://wpmet.com/wpstoryh80";s:11:"story_image";s:65:"https://api.wpmet.com/auth/wp-content/uploads/2025/11/Wpmet-2.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10020924";O:8:"stdClass":9:{s:2:"id";i:10020924;s:5:"title";s:23:"Halloween GetGenie 2025";s:11:"description";s:0:"";s:7:"plugins";a:2:{i:0;s:8:"getgenie";i:1;s:12:"getgenie-pro";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1760486400;s:3:"end";i:1762128000;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:33:"https://getgenie.ai/geniestoryh45";s:11:"story_image";s:66:"https://api.wpmet.com/auth/wp-content/uploads/2025/10/GetGenie.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10020922";O:8:"stdClass":9:{s:2:"id";i:10020922;s:5:"title";s:20:"Hallowwen Wpmet 2025";s:11:"description";s:0:"";s:7:"plugins";a:7:{i:0;s:16:"elementskit-lite";i:1;s:8:"emailkit";i:2;s:21:"gutenkit-blocks-addon";i:3;s:7:"metform";i:4;s:10:"shopengine";i:5;s:9:"wp-social";i:6;s:18:"wp-ultimate-review";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1760486400;s:3:"end";i:1762128000;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:28:"https://wpmet.com/wpstoryh78";s:11:"story_image";s:65:"https://api.wpmet.com/auth/wp-content/uploads/2025/10/Wpmet-1.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10020276";O:8:"stdClass":9:{s:2:"id";i:10020276;s:5:"title";s:17:"GetGenie 30K Deal";s:11:"description";s:0:"";s:7:"plugins";a:2:{i:0;s:8:"getgenie";i:1;s:12:"getgenie-pro";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1757203200;s:3:"end";i:1758499200;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:28:"https://getgenie.ai/30kstory";s:11:"story_image";s:71:"https://api.wpmet.com/auth/wp-content/uploads/2025/09/Genie-30K-GIF.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10019442";O:8:"stdClass":9:{s:2:"id";i:10019442;s:5:"title";s:23:"Wpmet Birthday 25 Genie";s:11:"description";s:0:"";s:7:"plugins";a:1:{i:0;s:8:"getgenie";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1753920000;s:3:"end";i:1755561600;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:32:"https://wpmet.com/gbday-story-25";s:11:"story_image";s:63:"https://api.wpmet.com/auth/wp-content/uploads/2025/07/Genie.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10019440";O:8:"stdClass":9:{s:2:"id";i:10019440;s:5:"title";s:19:"Wpmet Birthday 2025";s:11:"description";s:0:"";s:7:"plugins";a:6:{i:0;s:8:"emailkit";i:1;s:21:"gutenkit-blocks-addon";i:2;s:7:"metform";i:3;s:10:"shopengine";i:4;s:9:"wp-social";i:5;s:18:"wp-ultimate-review";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1753920000;s:3:"end";i:1755561600;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:31:"https://wpmet.com/bday-story-25";s:11:"story_image";s:60:"https://api.wpmet.com/auth/wp-content/uploads/2025/07/WP.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10018690";O:8:"stdClass":9:{s:2:"id";i:10018690;s:5:"title";s:36:"GetGenie 4th of July Flash Sale 2025";s:11:"description";s:0:"";s:7:"plugins";a:2:{i:0;s:8:"getgenie";i:1;s:12:"getgenie-pro";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1751328000;s:3:"end";i:1752019200;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:27:"https://getgenie.ai/story45";s:11:"story_image";s:71:"https://api.wpmet.com/auth/wp-content/uploads/2025/07/GetGenie__Gif.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10018685";O:8:"stdClass":9:{s:2:"id";i:10018685;s:5:"title";s:33:"Wpmet 4th of July Flash Sale 2025";s:11:"description";s:0:"";s:7:"plugins";a:7:{i:0;s:16:"elementskit-lite";i:1;s:8:"emailkit";i:2;s:21:"gutenkit-blocks-addon";i:3;s:7:"metform";i:4;s:10:"shopengine";i:5;s:9:"wp-social";i:6;s:18:"wp-ultimate-review";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1751328000;s:3:"end";i:1752019200;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:25:"https://wpmet.com/story35";s:11:"story_image";s:63:"https://api.wpmet.com/auth/wp-content/uploads/2025/07/WpMet.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}s:8:"10018273";O:8:"stdClass":9:{s:2:"id";i:10018273;s:5:"title";s:24:"WordPress Birthday Deals";s:11:"description";s:0:"";s:7:"plugins";a:7:{i:0;s:16:"elementskit-lite";i:1;s:8:"emailkit";i:2;s:21:"gutenkit-blocks-addon";i:3;s:7:"metform";i:4;s:10:"shopengine";i:5;s:9:"wp-social";i:6;s:18:"wp-ultimate-review";}s:4:"type";s:6:"banner";s:8:"priority";s:4:"high";s:5:"start";i:1748304000;s:3:"end";i:1748649600;s:4:"data";O:8:"stdClass":6:{s:4:"type";s:6:"banner";s:10:"story_link";s:21:"www.wpmet.com/wpbdays";s:11:"story_image";s:63:"https://api.wpmet.com/auth/wp-content/uploads/2025/05/story.gif";s:9:"blacklist";s:0:"";s:9:"whitelist";s:0:"";s:9:"style_css";s:0:"";}}}', 'yes');
INSERT INTO `wpiq_options` VALUES
(408, 'elementor_pro_theme_builder_conditions', 'a:2:{s:6:"footer";a:1:{i:60;a:1:{i:0;s:15:"include/general";}}s:6:"header";a:1:{i:9;a:1:{i:0;s:15:"include/general";}}}', 'yes'),
(490, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'off'),
(491, 'elementskit_options', 'a:1:{s:17:"megamenu_settings";a:1:{s:15:"menu_location_3";a:1:{s:10:"is_enabled";i:0;}}}', 'yes'),
(502, 'elementor_library_category_children', 'a:0:{}', 'yes'),
(945, 'elementor_log', 'a:42:{s:32:"598b5ea272dbe8512e56ce31ec7e94d3";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-17 03:11:21";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-17 03:11:21";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"8a1946e4c3443e6fd418e9f31a07e375";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-17 03:11:21";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-17 03:11:21";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"c4e53f5862d6759e88f37f4a6a72afda";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-17 03:11:21";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:64:"Elementor/Upgrades - _v_3_5_0_remove_old_elementor_scheme Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-17 03:11:21";}s:7:"\0*\0args";a:2:{s:7:"message";s:64:"Elementor/Upgrades - _v_3_5_0_remove_old_elementor_scheme Start ";s:4:"type";s:4:"info";}}s:32:"1098fe3e4cf7612f8ee03d54192b89ce";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-17 03:11:21";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:66:"Elementor/Upgrades - _v_3_5_0_remove_old_elementor_scheme Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-17 03:11:21";}s:7:"\0*\0args";a:2:{s:7:"message";s:66:"Elementor/Upgrades - _v_3_5_0_remove_old_elementor_scheme Finished";s:4:"type";s:4:"info";}}s:32:"5420387cabeb79c288e2843d7f61923f";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-17 03:11:21";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:5:"3.5.0";s:2:"to";s:6:"3.10.0";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-17 03:11:21";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:5:"3.5.0";s:2:"to";s:6:"3.10.0";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"20176940ae701dbf14a5ea3ef67073e8";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2023-08-19 04:23:47";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:58:"Cannot read properties of null (reading &#039;clone&#039;)";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:7248;s:14:"\0*\0times_dates";a:42:{i:0;s:19:"2023-08-19 06:58:12";i:1;s:19:"2023-08-19 06:58:12";i:2;s:19:"2023-08-19 06:58:12";i:3;s:19:"2023-08-19 06:58:12";i:4;s:19:"2023-08-19 06:58:12";i:5;s:19:"2023-08-19 06:58:12";i:6;s:19:"2023-08-19 06:58:12";i:7;s:19:"2023-08-19 06:58:12";i:8;s:19:"2023-08-19 06:58:12";i:9;s:19:"2023-08-19 06:58:12";i:10;s:19:"2023-08-19 06:58:12";i:11;s:19:"2023-08-19 06:58:12";i:12;s:19:"2023-08-19 06:58:12";i:13;s:19:"2023-08-19 06:58:12";i:14;s:19:"2023-08-19 06:58:12";i:15;s:19:"2023-08-19 06:58:12";i:16;s:19:"2023-08-19 06:58:12";i:17;s:19:"2023-08-19 06:58:12";i:18;s:19:"2023-08-19 06:58:12";i:19;s:19:"2023-08-19 06:58:13";i:20;s:19:"2023-08-19 06:58:13";i:21;s:19:"2023-08-19 06:58:13";i:22;s:19:"2023-08-19 06:58:13";i:23;s:19:"2023-08-19 06:58:13";i:24;s:19:"2023-08-19 06:58:13";i:25;s:19:"2023-08-19 06:58:13";i:26;s:19:"2023-08-19 06:58:13";i:27;s:19:"2023-08-19 06:58:13";i:28;s:19:"2023-08-19 06:58:13";i:29;s:19:"2023-08-19 06:58:13";i:30;s:19:"2023-08-19 06:58:13";i:31;s:19:"2023-08-19 06:58:13";i:32;s:19:"2023-08-19 06:58:13";i:33;s:19:"2023-08-19 06:58:13";i:34;s:19:"2023-08-19 06:58:13";i:35;s:19:"2023-08-19 06:58:13";i:36;s:19:"2023-08-19 06:58:13";i:37;s:19:"2023-08-19 06:58:13";i:38;s:19:"2023-08-19 06:58:13";i:39;s:19:"2023-08-19 06:58:13";i:40;s:19:"2023-08-19 06:58:13";i:41;s:19:"2023-08-19 06:58:13";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1692419027";s:7:"message";s:48:"Cannot read properties of null (reading ''clone'')";s:3:"url";s:89:"https://omsrislb.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0";s:4:"line";s:1:"2";s:6:"column";s:5:"16820";}s:7:"\0*\0file";s:89:"https://omsrislb.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0";s:7:"\0*\0line";s:1:"2";s:9:"\0*\0column";s:5:"16820";}s:32:"0a997826a2fbc91e2cea3d61324d249d";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2023-08-19 04:23:47";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:63:"Cannot read properties of null (reading &#039;changestop&#039;)";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:84;s:14:"\0*\0times_dates";a:42:{i:0;s:19:"2023-08-19 06:49:20";i:1;s:19:"2023-08-19 06:49:21";i:2;s:19:"2023-08-19 06:49:23";i:3;s:19:"2023-08-19 06:49:25";i:4;s:19:"2023-08-19 06:49:31";i:5;s:19:"2023-08-19 06:49:32";i:6;s:19:"2023-08-19 06:49:38";i:7;s:19:"2023-08-19 06:50:11";i:8;s:19:"2023-08-19 06:51:53";i:9;s:19:"2023-08-19 06:51:54";i:10;s:19:"2023-08-19 06:51:59";i:11;s:19:"2023-08-19 06:52:23";i:12;s:19:"2023-08-19 06:52:29";i:13;s:19:"2023-08-19 06:53:17";i:14;s:19:"2023-08-19 06:53:22";i:15;s:19:"2023-08-19 06:53:50";i:16;s:19:"2023-08-19 06:53:57";i:17;s:19:"2023-08-19 06:54:06";i:18;s:19:"2023-08-19 06:54:18";i:19;s:19:"2023-08-19 06:54:30";i:20;s:19:"2023-08-19 06:54:38";i:21;s:19:"2023-08-19 06:54:39";i:22;s:19:"2023-08-19 06:54:40";i:23;s:19:"2023-08-19 06:54:43";i:24;s:19:"2023-08-19 06:54:45";i:25;s:19:"2023-08-19 06:54:59";i:26;s:19:"2023-08-19 06:56:27";i:27;s:19:"2023-08-19 06:56:37";i:28;s:19:"2023-08-19 06:56:42";i:29;s:19:"2023-08-19 06:56:42";i:30;s:19:"2023-08-19 06:57:16";i:31;s:19:"2023-08-19 06:57:17";i:32;s:19:"2023-08-19 06:57:36";i:33;s:19:"2023-08-19 06:57:40";i:34;s:19:"2023-08-19 06:57:42";i:35;s:19:"2023-08-19 06:57:43";i:36;s:19:"2023-08-19 06:57:45";i:37;s:19:"2023-08-19 06:57:47";i:38;s:19:"2023-08-19 06:57:49";i:39;s:19:"2023-08-19 06:57:54";i:40;s:19:"2023-08-19 06:58:01";i:41;s:19:"2023-08-19 06:58:11";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1692419027";s:7:"message";s:53:"Cannot read properties of null (reading ''changestop'')";s:3:"url";s:89:"https://omsrislb.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0";s:4:"line";s:1:"2";s:6:"column";s:5:"21012";}s:7:"\0*\0file";s:89:"https://omsrislb.com/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0";s:7:"\0*\0line";s:1:"2";s:9:"\0*\0column";s:5:"21012";}s:32:"d45737fd4aff3db0c00260efe66d57d2";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2023-08-19 04:24:37";s:7:"\0*\0type";s:7:"warning";s:10:"\0*\0message";s:35:"Undefined array key &quot;url&quot;";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:8;s:14:"\0*\0times_dates";a:8:{i:0;s:19:"2023-08-19 04:24:37";i:1;s:19:"2023-08-19 04:24:52";i:2;s:19:"2023-08-19 04:33:39";i:3;s:19:"2023-08-19 06:52:10";i:4;s:19:"2023-08-19 06:53:30";i:5;s:19:"2023-08-19 06:53:48";i:6;s:19:"2023-08-19 06:53:56";i:7;s:19:"2023-08-19 06:54:29";}s:7:"\0*\0args";a:5:{s:4:"type";s:7:"warning";s:7:"message";s:25:"Undefined array key "url"";s:4:"file";s:82:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/core/logger/items/js.php";s:4:"line";i:17;s:5:"trace";b:1;}s:7:"\0*\0file";s:82:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/core/logger/items/js.php";s:7:"\0*\0line";i:17;}s:32:"7eba2ec85cd008299e3ea5c46e82492f";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2023-08-19 08:08:00";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:67:"Cannot read properties of undefined (reading &#039;localized&#039;)";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:7;s:14:"\0*\0times_dates";a:7:{i:0;s:19:"2023-08-19 08:08:00";i:1;s:19:"2023-08-21 16:23:26";i:2;s:19:"2023-08-21 16:23:26";i:3;s:19:"2023-08-21 16:23:26";i:4;s:19:"2023-08-21 16:23:26";i:5;s:19:"2023-08-21 16:23:26";i:6;s:19:"2023-08-21 16:23:27";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1692432480";s:7:"message";s:57:"Cannot read properties of undefined (reading ''localized'')";s:3:"url";s:84:"https://omsrislb.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.10.0";s:4:"line";s:1:"3";s:6:"column";s:6:"782020";}s:7:"\0*\0file";s:84:"https://omsrislb.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.10.0";s:7:"\0*\0line";s:1:"3";s:9:"\0*\0column";s:6:"782020";}s:32:"016ea5926de010a066b9ca9fe7620f94";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2023-08-19 08:36:58";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:64:"Cannot read properties of undefined (reading &#039;params&#039;)";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:6;s:14:"\0*\0times_dates";a:6:{i:0;s:19:"2023-08-19 08:36:58";i:1;s:19:"2023-08-19 08:36:58";i:2;s:19:"2023-08-19 08:36:58";i:3;s:19:"2023-08-19 08:36:58";i:4;s:19:"2023-08-19 08:37:00";i:5;s:19:"2023-08-19 08:37:01";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1692434218";s:7:"message";s:54:"Cannot read properties of undefined (reading ''params'')";s:3:"url";s:95:"https://omsrislb.com/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js?ver=3.10.0";s:4:"line";s:1:"2";s:6:"column";s:4:"7084";}s:7:"\0*\0file";s:95:"https://omsrislb.com/wp-content/plugins/elementor/assets/js/preloaded-modules.min.js?ver=3.10.0";s:7:"\0*\0line";s:1:"2";s:9:"\0*\0column";s:4:"7084";}s:32:"4d3213a24e4979c1ea4a7d28b4ed6f40";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"elementor-pro::elementor_pro_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"elementor-pro::elementor_pro_updater Started";s:4:"type";s:4:"info";}}s:32:"928a1393333189118dddc2150839987c";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:48:"Elementor Pro/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:2:{s:7:"message";s:48:"Elementor Pro/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"301d8fa8c56ea8f2e39db95c7f68aa7e";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor Pro/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:2:{s:7:"message";s:50:"Elementor Pro/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"430d2f048797e4e8526f6b312ecedf53";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.10.1";s:2:"to";s:6:"3.15.1";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.10.1";s:2:"to";s:6:"3.15.1";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"d193bc20e78125760672968bd97329e8";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.10.1";s:2:"to";s:6:"3.15.1";}s:8:"\0*\0times";i:2;s:14:"\0*\0times_dates";a:2:{i:0;s:19:"2023-08-20 05:06:24";i:1;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:13:"Elementor Pro";s:4:"from";s:6:"3.10.1";s:2:"to";s:6:"3.15.1";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"643b37e5f20d7d813381f51ef6c72f54";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"65c2b2e1ea4f8952ea4303f2fec9639e";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"af4a23ad8c44f4ef1f92b99d3f942624";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"e77e0e575552a77f02d694f82af51cff";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.10.0";s:2:"to";s:6:"3.15.2";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.10.0";s:2:"to";s:6:"3.15.2";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"5900ccfc8da98d519bd728cc0dd0b0fe";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:24";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.10.0";s:2:"to";s:6:"3.15.2";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 05:06:24";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.10.0";s:2:"to";s:6:"3.15.2";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"6a8fcb884cc63387f7eea418a9a8d005";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2023-08-20 05:06:27";s:7:"\0*\0type";s:7:"warning";s:10:"\0*\0message";s:46:"Undefined array key &quot;padding_mobile&quot;";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:71;s:14:"\0*\0times_dates";a:42:{i:0;s:19:"2023-08-20 07:59:21";i:1;s:19:"2023-08-20 08:00:31";i:2;s:19:"2023-08-20 08:03:04";i:3;s:19:"2023-08-20 08:04:51";i:4;s:19:"2023-08-20 08:05:48";i:5;s:19:"2023-08-20 08:07:21";i:6;s:19:"2023-08-20 08:08:36";i:7;s:19:"2023-08-20 08:10:30";i:8;s:19:"2023-08-20 08:12:13";i:9;s:19:"2023-08-20 08:14:37";i:10;s:19:"2023-08-20 08:17:32";i:11;s:19:"2023-08-20 08:19:29";i:12;s:19:"2023-08-20 08:20:02";i:13;s:19:"2023-08-20 08:22:57";i:14;s:19:"2023-08-20 08:33:05";i:15;s:19:"2023-08-20 08:35:47";i:16;s:19:"2023-08-20 08:36:35";i:17;s:19:"2023-08-20 09:31:49";i:18;s:19:"2023-08-20 09:38:04";i:19;s:19:"2023-08-20 09:39:56";i:20;s:19:"2023-08-20 09:42:03";i:21;s:19:"2023-08-20 09:42:48";i:22;s:19:"2023-08-20 09:44:26";i:23;s:19:"2023-08-20 09:48:42";i:24;s:19:"2023-08-20 09:50:17";i:25;s:19:"2023-08-20 09:51:26";i:26;s:19:"2023-08-20 09:53:42";i:27;s:19:"2023-08-20 09:55:08";i:28;s:19:"2023-08-20 09:56:52";i:29;s:19:"2023-08-20 09:58:49";i:30;s:19:"2023-08-20 10:04:22";i:31;s:19:"2023-08-20 10:05:03";i:32;s:19:"2023-08-20 10:21:05";i:33;s:19:"2023-08-20 23:06:49";i:34;s:19:"2023-08-21 01:02:49";i:35;s:19:"2023-08-21 01:03:06";i:36;s:19:"2023-08-21 01:05:14";i:37;s:19:"2023-08-21 01:06:47";i:38;s:19:"2023-08-21 02:04:48";i:39;s:19:"2023-08-21 02:06:24";i:40;s:19:"2023-08-21 02:08:28";i:41;s:19:"2023-08-21 02:09:32";}s:7:"\0*\0args";a:5:{s:4:"type";s:7:"warning";s:7:"message";s:36:"Undefined array key "padding_mobile"";s:4:"file";s:81:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/core/files/css/base.php";s:4:"line";i:776;s:5:"trace";b:1;}s:7:"\0*\0file";s:81:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/core/files/css/base.php";s:7:"\0*\0line";i:776;}s:32:"38d2745972e53e9e3b57c783bf055a52";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2023-08-20 06:59:07";s:7:"\0*\0type";s:7:"warning";s:10:"\0*\0message";s:51:"Trying to access array offset on value of type bool";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-20 06:59:07";}s:7:"\0*\0args";a:5:{s:4:"type";s:7:"warning";s:7:"message";s:51:"Trying to access array offset on value of type bool";s:4:"file";s:85:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/includes/managers/image.php";s:4:"line";i:113;s:5:"trace";b:1;}s:7:"\0*\0file";s:85:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/includes/managers/image.php";s:7:"\0*\0line";i:113;}s:32:"bad98f762cbcc36424949b9b5fa255ce";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2023-08-21 02:10:38";s:7:"\0*\0type";s:7:"warning";s:10:"\0*\0message";s:36:"Undefined array key &quot;data&quot;";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:4;s:14:"\0*\0times_dates";a:4:{i:0;s:19:"2023-08-21 02:10:38";i:1;s:19:"2023-08-21 02:11:26";i:2;s:19:"2023-08-21 03:15:43";i:3;s:19:"2023-08-21 03:24:22";}s:7:"\0*\0args";a:5:{s:4:"type";s:7:"warning";s:7:"message";s:26:"Undefined array key "data"";s:4:"file";s:93:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/core/common/modules/ajax/module.php";s:4:"line";i:175;s:5:"trace";b:1;}s:7:"\0*\0file";s:93:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor/core/common/modules/ajax/module.php";s:7:"\0*\0line";i:175;}s:32:"add341293aaf18712b5a4a4e36376f6d";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2023-08-21 02:10:43";s:7:"\0*\0type";s:6:"notice";s:10:"\0*\0message";s:36:"Function utf8_decode() is deprecated";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:9;s:14:"\0*\0times_dates";a:9:{i:0;s:19:"2023-08-21 02:10:43";i:1;s:19:"2023-08-21 03:15:46";i:2;s:19:"2023-08-21 03:24:24";i:3;s:19:"2023-08-21 03:24:41";i:4;s:19:"2023-08-21 03:24:46";i:5;s:19:"2023-08-21 03:24:48";i:6;s:19:"2023-08-21 03:24:49";i:7;s:19:"2023-08-21 03:24:50";i:8;s:19:"2023-08-21 03:24:50";}s:7:"\0*\0args";a:5:{s:4:"type";s:6:"notice";s:7:"message";s:36:"Function utf8_decode() is deprecated";s:4:"file";s:92:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor-pro/modules/screenshots/module.php";s:4:"line";i:33;s:5:"trace";b:1;}s:7:"\0*\0file";s:92:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor-pro/modules/screenshots/module.php";s:7:"\0*\0line";i:33;}s:32:"d9a386ca98fc509122acafdbede06065";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-21 02:18:49";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-21 02:18:49";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"47fe977cade240359438b90ed05c7ee5";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-21 02:18:49";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-21 02:18:49";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"631830f1817880a035b3e0e07a58c5d2";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-21 02:18:50";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-21 02:18:50";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"7d0d3ff4f722eb673c2e687fd28f01ff";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-21 02:18:50";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.15.2";s:2:"to";s:6:"3.15.3";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-21 02:18:50";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.15.2";s:2:"to";s:6:"3.15.3";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"6c940866ab24dcef27dff0767cf6e415";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2023-08-21 02:18:50";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.15.2";s:2:"to";s:6:"3.15.3";}s:8:"\0*\0times";i:2;s:14:"\0*\0times_dates";a:2:{i:0;s:19:"2023-08-21 02:18:50";i:1;s:19:"2023-08-21 02:18:50";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.15.2";s:2:"to";s:6:"3.15.3";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"58fb37337126433428b9342b4ff6938d";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2023-08-21 03:24:14";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:63:"Cannot read properties of undefined (reading &#039;value&#039;)";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2023-08-21 03:24:14";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1692588254";s:7:"message";s:53:"Cannot read properties of undefined (reading ''value'')";s:3:"url";s:128:"https://omsrislb.com/wp-admin/load-scripts.php?c=0&amp;loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&amp;ver=6.3";s:4:"line";s:1:"2";s:6:"column";s:5:"28722";}s:7:"\0*\0file";s:128:"https://omsrislb.com/wp-admin/load-scripts.php?c=0&amp;loadchunk_0=jquery-core,jquery-migrate,utils,moxiejs,plupload&amp;ver=6.3";s:7:"\0*\0line";s:1:"2";s:9:"\0*\0column";s:5:"28722";}s:32:"8b940f8cfd06ce2af827f77dc96fed30";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2023-08-21 08:38:04";s:7:"\0*\0type";s:7:"warning";s:10:"\0*\0message";s:46:"Undefined array key &quot;editor_post_id&quot;";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:2;s:14:"\0*\0times_dates";a:2:{i:0;s:19:"2023-08-21 08:38:04";i:1;s:19:"2025-03-17 15:35:04";}s:7:"\0*\0args";a:5:{s:4:"type";s:7:"warning";s:7:"message";s:36:"Undefined array key "editor_post_id"";s:4:"file";s:114:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php";s:4:"line";i:171;s:5:"trace";b:1;}s:7:"\0*\0file";s:114:"/home2/timebroa/omsrislb.com/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php";s:7:"\0*\0line";i:171;}s:32:"f99eb5ed417492ef28b6b3000203a316";O:30:"Elementor\\Core\\Logger\\Items\\JS":10:{s:7:"\0*\0date";s:19:"2025-03-19 16:00:22";s:7:"\0*\0type";s:5:"error";s:10:"\0*\0message";s:61:"Cannot read properties of undefined (reading &#039;get&#039;)";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-19 16:00:22";}s:7:"\0*\0args";a:6:{s:4:"type";s:5:"error";s:9:"timestamp";s:10:"1742400022";s:7:"message";s:51:"Cannot read properties of undefined (reading ''get'')";s:3:"url";s:83:"https://omsrislb.my/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.28.0";s:4:"line";s:1:"3";s:6:"column";s:6:"797868";}s:7:"\0*\0file";s:83:"https://omsrislb.my/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.28.0";s:7:"\0*\0line";s:1:"3";s:9:"\0*\0column";s:6:"797868";}s:32:"1ee1a8c469dcbf8a12c870215cbfeb48";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-20 03:00:22";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-20 03:00:22";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"1692104c84842d15f802e145b09409ef";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-20 03:00:22";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-20 03:00:22";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"c869db9b3912845e873774b7bc50f21b";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-20 03:00:23";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-20 03:00:23";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"3b6387772d9851330a7e0cc4fdf6899e";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-20 03:00:23";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.15.3";s:2:"to";s:6:"3.28.0";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-20 03:00:23";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.15.3";s:2:"to";s:6:"3.28.0";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}s:32:"c35809a80117e512f01aed165969034b";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0date";s:19:"2025-03-20 03:25:24";s:7:"\0*\0type";s:7:"warning";s:10:"\0*\0message";s:39:"Undefined array key &quot;options&quot;";s:7:"\0*\0meta";a:1:{s:5:"trace";a:1:{i:0;a:3:{s:8:"function";s:8:"shutdown";s:5:"class";s:29:"Elementor\\Core\\Logger\\Manager";s:4:"type";s:2:"->";}}}s:8:"\0*\0times";i:4215;s:14:"\0*\0times_dates";a:42:{i:0;s:19:"2026-01-30 11:52:45";i:1;s:19:"2026-01-30 15:36:05";i:2;s:19:"2026-01-30 23:35:48";i:3;s:19:"2026-01-31 00:07:48";i:4;s:19:"2026-01-31 02:21:54";i:5;s:19:"2026-01-31 04:23:21";i:6;s:19:"2026-01-31 04:34:06";i:7;s:19:"2026-01-31 04:42:35";i:8;s:19:"2026-01-31 05:55:04";i:9;s:19:"2026-01-31 08:01:44";i:10;s:19:"2026-01-31 10:38:40";i:11;s:19:"2026-01-31 10:38:41";i:12;s:19:"2026-01-31 12:29:14";i:13;s:19:"2026-01-31 13:15:04";i:14;s:19:"2026-01-31 14:19:46";i:15;s:19:"2026-01-31 17:27:20";i:16;s:19:"2026-02-01 02:12:48";i:17;s:19:"2026-02-01 10:06:56";i:18;s:19:"2026-02-01 11:07:35";i:19;s:19:"2026-02-01 11:07:35";i:20;s:19:"2026-02-01 15:26:16";i:21;s:19:"2026-02-01 19:33:18";i:22;s:19:"2026-02-01 20:35:05";i:23;s:19:"2026-02-02 16:44:26";i:24;s:19:"2026-02-02 17:45:58";i:25;s:19:"2026-02-02 17:45:59";i:26;s:19:"2026-02-02 17:46:00";i:27;s:19:"2026-02-02 20:59:42";i:28;s:19:"2026-02-02 22:31:21";i:29;s:19:"2026-02-02 22:31:22";i:30;s:19:"2026-02-02 22:34:31";i:31;s:19:"2026-02-03 00:09:04";i:32;s:19:"2026-02-03 15:26:54";i:33;s:19:"2026-02-03 17:04:12";i:34;s:19:"2026-02-03 19:46:50";i:35;s:19:"2026-02-03 21:35:28";i:36;s:19:"2026-02-05 16:21:58";i:37;s:19:"2026-02-05 16:22:00";i:38;s:19:"2026-02-05 17:38:52";i:39;s:19:"2026-02-05 17:38:53";i:40;s:19:"2026-02-06 10:26:49";i:41;s:19:"2026-02-10 13:08:51";}s:7:"\0*\0args";a:5:{s:4:"type";s:7:"warning";s:7:"message";s:29:"Undefined array key "options"";s:4:"file";s:103:"/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php";s:4:"line";i:192;s:5:"trace";b:1;}s:7:"\0*\0file";s:103:"/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php";s:7:"\0*\0line";i:192;}s:32:"a6eeea86286c8eee01c1735ac4822ad3";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-26 07:41:49";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:36:"elementor::elementor_updater Started";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-26 07:41:49";}s:7:"\0*\0args";a:2:{s:7:"message";s:36:"elementor::elementor_updater Started";s:4:"type";s:4:"info";}}s:32:"bd4dc6df9ecaf9b8f7596830782c5bae";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-26 07:41:49";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-26 07:41:49";}s:7:"\0*\0args";a:2:{s:7:"message";s:44:"Elementor/Upgrades - _on_each_version Start ";s:4:"type";s:4:"info";}}s:32:"26cc7b79ef9d2f4784936d8140631661";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-26 07:41:50";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:47:"Elementor data updater process has been queued.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.28.0";s:2:"to";s:6:"3.28.1";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-26 07:41:50";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.28.0";s:2:"to";s:6:"3.28.1";}s:7:"message";s:47:"Elementor data updater process has been queued.";s:4:"type";s:4:"info";}}s:32:"d516f9f260d155beeeaed54b33dac7cf";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-26 07:41:50";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:7:"\0*\0meta";a:0:{}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-26 07:41:50";}s:7:"\0*\0args";a:2:{s:7:"message";s:46:"Elementor/Upgrades - _on_each_version Finished";s:4:"type";s:4:"info";}}s:32:"e335724dfa2da9aa1962a15392765f6d";O:32:"Elementor\\Core\\Logger\\Items\\Base":7:{s:7:"\0*\0date";s:19:"2025-03-26 07:41:50";s:7:"\0*\0type";s:4:"info";s:10:"\0*\0message";s:50:"Elementor data updater process has been completed.";s:7:"\0*\0meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.28.0";s:2:"to";s:6:"3.28.1";}s:8:"\0*\0times";i:1;s:14:"\0*\0times_dates";a:1:{i:0;s:19:"2025-03-26 07:41:50";}s:7:"\0*\0args";a:3:{s:4:"meta";a:3:{s:6:"plugin";s:9:"Elementor";s:4:"from";s:6:"3.28.0";s:2:"to";s:6:"3.28.1";}s:7:"message";s:50:"Elementor data updater process has been completed.";s:4:"type";s:4:"info";}}}', 'off'),
(4072, 'auto_core_update_notified', 'a:4:{s:4:"type";s:7:"success";s:5:"email";s:17:"daniel@cloudix.my";s:7:"version";s:5:"6.8.3";s:9:"timestamp";i:1759273815;}', 'off'),
(4420, 'category_children', 'a:0:{}', 'yes'),
(5842, 'https_detection_errors', 'a:0:{}', 'off'),
(9308, 'auto_update_plugins', 'a:8:{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:91:"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php";i:3;s:55:"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php";i:4;s:37:"elementskit-lite/elementskit-lite.php";i:5;s:51:"ooohboi-steroids-for-elementor/ooohboi-steroids.php";i:6;s:23:"wordfence/wordfence.php";i:7;s:26:"wp-backup-manager/init.php";}', 'no'),
(9311, 'auto_update_themes', 'a:5:{i:0;s:7:"sinatra";i:1;s:14:"twentynineteen";i:2;s:12:"twentytwenty";i:3;s:15:"twentytwentyone";i:4;s:15:"twentytwentytwo";}', 'no'),
(11066, 'widget_block', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(11435, 'bluehost_access_token', 'utv.egy.mybluehost.me/1655346884/60/ha:s,i:45c37e0f/243f6e701e492d8f2586fe5ffc4417f6/sh.7.40731', 'yes'),
(11436, 'bluehost_access_token_expiration', '1655350484', 'yes'),
(11437, 'bluehost_access_user', '4515738', 'yes'),
(11663, 'wp_force_deactivated_plugins', 'a:0:{}', 'off'),
(14416, 'db_upgraded', '', 'on'),
(22695, 'elementor_events_db_version', '1.0.0', 'no'),
(33372, 'wordfence_ls_version', '1.1.15', 'yes'),
(33373, 'wfls_last_role_change', '1737062129', 'off'),
(33374, 'wordfence_version', '8.1.4', 'yes'),
(33375, 'wordfence_case', '1', 'yes'),
(33376, 'wordfence_installed', '1', 'yes'),
(33381, 'wordfenceActivated', '1', 'yes'),
(33384, 'wf_plugin_act_error', '', 'yes'),
(33442, 'ai1wmue_plugin_key', 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX', 'yes'),
(33444, 'swift_performance_plugin_organizer', 'a:0:{}', 'yes'),
(35666, 'wordfence_syncAttackDataAttempts', '0', 'off'),
(35667, 'wordfence_syncingAttackData', '0', 'off'),
(35668, 'wordfence_lastSyncAttackData', '1770072411', 'off'),
(44441, 'user_count', '2', 'no'),
(44450, 'nfd_data_connection_attempts', '2', 'yes'),
(44451, 'nfd_data_token', 'Ol3fghjt6HhrJzXReDv2uUduVDFjTlJaZmxta1JSYUp1SWh5T0JQUnhveXZhdlp3ZGNYZmdocXpIV0htUGp4elp6Ky9LVmJlcnIyNUpPMDBKWWhIQ3lhc3pYTWRXN09NN3BxbVpkaVRsK2d5RlUrTGRFTDNKS0pTeGh3OCtBbjBKdE5vcHViNnpiVlVrWDFtdXRKSTN5aWtEWkxYK1g4bndPSldMQT09', 'yes'),
(44454, 'newfold_active_modules', 'a:9:{s:4:"data";b:1;s:16:"business-reviews";b:0;s:11:"coming-soon";b:1;s:9:"ecommerce";b:1;s:11:"marketplace";b:1;s:13:"notifications";b:1;s:10:"onboarding";b:0;s:16:"secure-passwords";b:1;s:3:"sso";b:1;}', 'yes'),
(44457, 'bh_cdata_retry_count', '9', 'yes'),
(48989, 'recovery_mode_email_last_sent', '1742440514', 'yes'),
(50062, 'nfd_data_queue', 'a:2:{i:0;O:32:"NewfoldLabs\\WP\\Module\\Data\\Event":6:{s:8:"category";s:5:"admin";s:3:"key";s:8:"pageview";s:4:"data";a:2:{s:4:"page";s:30:"https://omsrislb.com/wp-admin/";s:10:"page_title";s:9:"Dashboard";}s:7:"request";a:4:{s:3:"url";s:30:"https://omsrislb.com/wp-admin/";s:10:"page_title";s:9:"Dashboard";s:10:"user_agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36";s:2:"ip";s:15:"110.159.103.211";}s:4:"user";a:4:{s:2:"id";i:1;s:5:"login";s:5:"omsri";s:4:"role";s:13:"administrator";s:6:"locale";s:5:"en_US";}s:4:"time";i:1673349846;}i:1;O:32:"NewfoldLabs\\WP\\Module\\Data\\Event":6:{s:8:"category";s:5:"admin";s:3:"key";s:8:"pageview";s:4:"data";a:2:{s:4:"page";s:41:"https://omsrislb.com/wp-admin/plugins.php";s:10:"page_title";s:7:"Plugins";}s:7:"request";a:4:{s:3:"url";s:41:"https://omsrislb.com/wp-admin/plugins.php";s:10:"page_title";s:7:"Plugins";s:10:"user_agent";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36";s:2:"ip";s:15:"110.159.103.211";}s:4:"user";a:4:{s:2:"id";i:1;s:5:"login";s:5:"omsri";s:4:"role";s:13:"administrator";s:6:"locale";s:5:"en_US";}s:4:"time";i:1673349854;}}', 'no'),
(50076, 'deleted_plugin', 'a:7:{s:4:"slug";s:19:"jetpack/jetpack.php";s:7:"version";s:4:"11.6";s:5:"title";s:7:"Jetpack";s:3:"url";s:19:"https://jetpack.com";s:6:"active";b:0;s:2:"mu";b:0;s:12:"auto_updates";b:1;}', 'yes'),
(50118, '_elementor_pro_api_requests_lock', 'a:2:{s:16:"get_license_data";i:1765297100;s:11:"get_version";i:1770249305;}', 'yes'),
(50119, '_elementor_pro_license_v2_data_fallback', 'a:2:{s:7:"timeout";i:1765383501;s:5:"value";s:41:"{"success":false,"error":"site_inactive"}";}', 'off'),
(50120, '_elementor_pro_license_v2_data', 'a:2:{s:7:"timeout";i:1765340301;s:5:"value";s:41:"{"success":false,"error":"site_inactive"}";}', 'off'),
(50123, 'elementor_notes_db_version', '5', 'yes'),
(50124, 'elementor_submissions_db_version', '5', 'yes'),
(53649, 'duplicate_page_options', 'a:4:{s:21:"duplicate_post_status";s:5:"draft";s:23:"duplicate_post_redirect";s:7:"to_list";s:21:"duplicate_post_suffix";s:0:"";s:21:"duplicate_post_editor";s:7:"classic";}', 'yes'),
(53650, 'elementor_scheme_color', 'a:4:{i:1;s:7:"#6ec1e4";i:2;s:7:"#54595f";i:3;s:7:"#7a7a7a";i:4;s:7:"#61ce70";}', 'yes'),
(53651, 'elementor_scheme_typography', 'a:4:{i:1;a:2:{s:11:"font_family";s:6:"Roboto";s:11:"font_weight";s:3:"600";}i:2;a:2:{s:11:"font_family";s:11:"Roboto Slab";s:11:"font_weight";s:3:"400";}i:3;a:2:{s:11:"font_family";s:6:"Roboto";s:11:"font_weight";s:3:"400";}i:4;a:2:{s:11:"font_family";s:6:"Roboto";s:11:"font_weight";s:3:"500";}}', 'yes'),
(53652, 'elementor_scheme_color-picker', 'a:8:{i:1;s:7:"#6ec1e4";i:2;s:7:"#54595f";i:3;s:7:"#7a7a7a";i:4;s:7:"#61ce70";i:5;s:7:"#4054b2";i:6;s:7:"#23a455";i:7;s:4:"#000";i:8;s:4:"#fff";}', 'yes'),
(53654, 'site_logo', '741', 'yes'),
(54061, 'vsz_cf7_db_version', '2.0.0', 'yes'),
(54316, 'elementor_1_elementor_pro_updater_batch_a283e624e73cb02d87ef381b', 'a:1:{i:0;a:1:{s:8:"callback";a:2:{i:0;s:34:"ElementorPro\\Core\\Upgrade\\Upgrades";i:1;s:16:"_on_each_version";}}}', 'no'),
(54347, '_elementor_settings_update_time', '1692512071', 'yes'),
(54348, 'elementor_cpt_support', 'a:2:{i:0;s:4:"post";i:1;s:4:"page";}', 'yes'),
(54349, 'elementor_disable_color_schemes', '', 'yes'),
(54350, 'elementor_disable_typography_schemes', '', 'yes'),
(54351, 'elementor_google_maps_api_key', '', 'yes'),
(54352, 'elementor_pro_recaptcha_site_key', '', 'yes'),
(54353, 'elementor_pro_recaptcha_secret_key', '', 'yes'),
(54354, 'elementor_pro_recaptcha_v3_site_key', '', 'yes'),
(54355, 'elementor_pro_recaptcha_v3_secret_key', '', 'yes'),
(54356, 'elementor_pro_recaptcha_v3_threshold', '0.5', 'yes'),
(54357, 'elementor_pro_facebook_app_id', '', 'yes'),
(54358, 'elementor_pro_mailchimp_api_key', '', 'yes'),
(54359, 'elementor_validate_api_data', '', 'yes'),
(54360, 'elementor_pro_drip_api_token', '', 'yes'),
(54361, 'elementor_pro_activecampaign_api_key', '', 'yes'),
(54362, 'elementor_pro_activecampaign_api_url', '', 'yes'),
(54363, 'elementor_pro_getresponse_api_key', '', 'yes'),
(54364, 'elementor_pro_convertkit_api_key', '', 'yes'),
(54365, 'elementor_pro_mailerlite_api_key', '', 'yes'),
(54366, 'elementor_typekit-kit-id', '', 'yes'),
(54367, 'elementor_font_awesome_pro_kit_id', '', 'yes'),
(54368, 'elementor_pro_stripe_test_secret_key', '', 'yes'),
(54369, 'elementor_validate_stripe_api_test_secret_key_button', '', 'yes'),
(54370, 'elementor_pro_stripe_live_secret_key', '', 'yes'),
(54371, 'elementor_validate_stripe_api_live_secret_key_button', '', 'yes'),
(54372, 'elementor_stripe_legal_disclaimer', '', 'yes'),
(54373, 'elementor_css_print_method', 'external', 'yes'),
(54374, 'elementor_editor_break_lines', '', 'yes'),
(54375, 'elementor_unfiltered_files_upload', '', 'yes'),
(54376, 'elementor_google_font', '1', 'yes'),
(54377, 'elementor_font_display', 'auto', 'yes'),
(54378, 'elementor_load_fa4_shim', '', 'yes'),
(54379, 'elementor_meta_generator_tag', '', 'yes'),
(54380, 'elementor_experiment-e_font_icon_svg', 'active', 'yes'),
(54381, 'elementor_experiment-container', 'active', 'yes'),
(54382, 'elementor_experiment-container_grid', 'default', 'yes'),
(54383, 'elementor_experiment-editor_v2', 'default', 'yes'),
(54384, 'elementor_experiment-landing-pages', 'default', 'yes'),
(54385, 'elementor_experiment-nested-elements', 'default', 'yes'),
(54386, 'elementor_experiment-e_lazyload', 'default', 'yes'),
(54387, 'elementor_experiment-e_global_styleguide', 'default', 'yes'),
(54388, 'elementor_experiment-mega-menu', 'default', 'yes'),
(54389, 'elementor_experiment-taxonomy-filter', 'default', 'yes'),
(54390, 'elementor_experiment-e_dom_optimization', 'default', 'yes'),
(54391, 'elementor_experiment-e_optimized_assets_loading', 'default', 'yes'),
(54392, 'elementor_experiment-e_optimized_css_loading', 'default', 'yes'),
(54393, 'elementor_experiment-additional_custom_breakpoints', 'default', 'yes'),
(54394, 'elementor_experiment-e_swiper_latest', 'default', 'yes'),
(54395, 'elementor_experiment-theme_builder_v2', 'default', 'yes'),
(54396, 'elementor_experiment-page-transitions', 'default', 'yes'),
(54397, 'elementor_experiment-notes', 'default', 'yes'),
(54398, 'elementor_experiment-loop', 'default', 'yes'),
(54399, 'elementor_experiment-form-submissions', 'default', 'yes'),
(54400, 'elementor_experiment-e_scroll_snap', 'default', 'yes'),
(54472, 'elementor_clear_cache', '', 'yes'),
(54473, 'elementor_reset_api_data', '', 'yes'),
(54475, 'elementor_enable_inspector', '', 'yes'),
(54476, 'elementor_replace_url', '', 'yes'),
(54477, 'elementor_rollback', '', 'yes'),
(54478, 'elementor_rollback_pro_separator', '', 'yes'),
(54479, 'elementor_rollback_pro', '', 'yes'),
(54480, 'elementor_beta', 'no', 'yes'),
(54481, 'elementor_maintenance_mode_mode', '', 'yes'),
(54482, 'elementor_maintenance_mode_exclude_mode', 'logged_in', 'yes'),
(54483, 'elementor_maintenance_mode_exclude_roles', 'a:0:{}', 'yes'),
(54484, 'elementor_maintenance_mode_template_id', '', 'yes'),
(54565, 'current_theme', 'Twenty Twenty-Three', 'yes'),
(54566, 'theme_mods_twentytwentythree', 'a:5:{i:0;b:0;s:18:"nav_menu_locations";a:0:{}s:19:"wp_classic_sidebars";a:2:{s:9:"sidebar-1";a:11:{s:4:"name";s:9:"Footer #1";s:2:"id";s:9:"sidebar-1";s:11:"description";s:73:"Widgets in this area will be displayed in the first column in the footer.";s:5:"class";s:0:"";s:13:"before_widget";s:53:"<div class="widget %2$s"><div class="widget-content">";s:12:"after_widget";s:12:"</div></div>";s:12:"before_title";s:51:"<h2 class="widget-title subheading heading-size-3">";s:11:"after_title";s:5:"</h2>";s:14:"before_sidebar";s:0:"";s:13:"after_sidebar";s:0:"";s:12:"show_in_rest";b:0;}s:9:"sidebar-2";a:11:{s:4:"name";s:9:"Footer #2";s:2:"id";s:9:"sidebar-2";s:11:"description";s:74:"Widgets in this area will be displayed in the second column in the footer.";s:5:"class";s:0:"";s:13:"before_widget";s:53:"<div class="widget %2$s"><div class="widget-content">";s:12:"after_widget";s:12:"</div></div>";s:12:"before_title";s:51:"<h2 class="widget-title subheading heading-size-3">";s:11:"after_title";s:5:"</h2>";s:14:"before_sidebar";s:0:"";s:13:"after_sidebar";s:0:"";s:12:"show_in_rest";b:0;}}s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1692583304;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:3:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";}s:9:"sidebar-1";a:3:{i:0;s:10:"archives-2";i:1;s:12:"categories-2";i:2;s:6:"meta-2";}}}}', 'yes'),
(54567, 'theme_switched', '', 'yes'),
(54753, 'theme_mods_twentytwenty', 'a:4:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:7:"primary";i:3;}s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1692583693;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:3:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";}s:9:"sidebar-1";a:3:{i:0;s:10:"archives-2";i:1;s:12:"categories-2";i:2;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}}}}', 'off'),
(55096, 'secret_key', '#0VXGA >dy2Ua~8w+)%^Nthz{&r-rq>MX[M`4#[6HQ=7z{{/=Zx$0W-@vg$&sGbX', 'no'),
(55123, 'uacf7_installation_date', '1', 'yes'),
(55131, 'ultimate-addons-for-contact-form-7_allow_tracking', 'no', 'yes'),
(55133, 'ultimate-addons-for-contact-form-7_tracking_skipped', 'yes', 'yes'),
(55157, 'uacf7_option_name', 'a:0:{}', 'yes'),
(55700, 'ai1wm_secret_key', 'hoJw97XSEm4e', 'auto'),
(55701, 'ai1wm_backups_labels', 'a:0:{}', 'auto'),
(55702, 'ai1wm_sites_links', 'a:0:{}', 'auto'),
(55703, 'ai1wm_backups_path', '/home/binawebp/omsrislb.my/wp-content/ai1wm-backups', 'auto'),
(55709, 'ai1wm_status', 'a:3:{s:4:"type";s:4:"done";s:5:"title";s:41:"Your site has been imported successfully!";s:7:"message";s:372:"» <a class="ai1wm-no-underline" href="https://omsrislb.my/wp-admin/options-permalink.php#submit" target="_blank">Save permalinks structure</a>. (opens a new window)<br />» <a class="ai1wm-no-underline" href="https://wordpress.org/support/view/plugin-reviews/all-in-one-wp-migration?rate=5#postform" target="_blank">Optionally, review the plugin</a>. (opens a new window)";}', 'auto'),
(55715, 'jetpack_active_modules', 'a:0:{}', 'auto'),
(55727, 'wp_attachment_pages_enabled', '1', 'on'),
(55827, '_elementor_global_css', 'a:6:{s:4:"time";i:1735725011;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;b:0;}', 'auto'),
(56110, 'backuply_license_notice', '1737535640', 'auto'),
(56155, 'softaculous_pro_license', 'a:13:{s:7:"license";s:30:"SOFTWP-47607-68961-98212-99910";s:7:"expires";s:8:"20250202";s:4:"type";s:1:"1";s:8:"type_txt";s:7:"Premium";s:9:"num_sites";N;s:4:"plan";s:8:"personal";s:6:"active";i:1;s:10:"licexpired";N;s:4:"thid";N;s:6:"status";i:1;s:9:"last_edit";s:10:"1735537918";s:10:"status_txt";s:33:"<font color="green">Active</font>";s:8:"has_plid";i:1;}', 'yes'),
(57265, 'litespeed.conf.__activation', '-1', 'auto'),
(57266, 'litespeed.cloud._summary', '{"curr_request.ver_check":0,"last_request.ver_check":1742975023,"news.utime":1742399245,"curr_request.news":0,"last_request.news":1742399245,"token_ts":1742440547,"ips_ts":1742811223,"ips_ts_runner":1742811223,"ips":["102.221.36.98","103.106.229.82","103.106.229.94","103.146.63.42","103.152.118.219","103.152.118.72","103.164.203.163","103.72.163.222","103.75.117.169","104.225.142.116","104.244.77.37","108.61.158.223","108.61.200.94","109.248.43.195","135.148.120.32","136.243.106.228","139.84.230.39","141.164.38.65","145.239.252.65","146.88.239.197","147.78.0.165","147.78.3.13","147.78.3.161","149.28.136.245","149.28.47.113","149.28.85.239","152.228.171.66","152.53.36.14","152.53.38.14","154.205.144.192","155.138.221.81","156.67.218.140","157.90.154.114","158.51.123.249","162.254.117.80","162.254.118.29","163.182.174.161","163.47.21.168","164.52.202.100","167.71.185.204","167.88.61.211","170.249.218.98","178.17.171.177","178.22.124.247","178.22.124.251","178.255.220.12","18.192.146.200","185.116.60.231","185.116.60.232","185.126.237.51","185.186.78.89","185.212.169.91","185.228.26.40","185.53.57.40","185.53.57.89","188.172.228.182","188.172.229.113","188.64.184.71","190.92.176.5","191.96.101.140","192.248.156.201","192.248.191.135","192.99.38.117","193.203.191.189","194.163.134.104","194.36.144.221","195.231.17.141","199.247.28.91","199.59.247.242","201.182.97.70","202.61.226.253","204.10.163.237","209.124.84.191","209.208.26.218","211.23.143.87","213.159.1.75","213.183.48.170","213.184.85.245","216.238.104.48","216.238.71.13","23.160.56.125","23.95.73.167","31.131.4.244","31.22.115.186","31.40.212.152","34.247.229.180","34.249.110.197","38.114.121.40","38.54.30.228","38.54.79.187","38.60.253.237","41.185.29.210","41.223.52.170","45.124.65.86","45.248.77.61","45.32.123.201","45.32.183.112","45.32.210.159","45.32.67.144","45.32.77.223","45.63.67.181","45.76.247.71","45.76.252.131","45.77.148.74","45.77.165.216","45.77.51.171","46.250.220.133","49.12.102.29","5.134.119.103","5.134.119.194","5.188.183.13","5.189.146.228","51.81.186.219","51.81.33.156","54.246.224.74","54.36.103.97","61.219.247.87","61.219.247.90","64.176.163.166","64.176.4.251","64.227.16.93","64.31.63.160","65.108.104.232","65.20.76.133","65.21.81.50","65.21.81.51","66.42.124.101","66.42.75.121","67.219.99.102","67.220.72.216","69.50.95.216","79.172.239.249","81.31.156.245","81.31.156.246","86.105.14.231","86.105.14.232","89.147.110.130","89.58.38.4","91.148.135.53","91.201.67.57","91.228.7.67","92.118.205.75","94.75.232.90","95.179.145.87","95.179.245.162","95.216.116.209"],"is_linked":0,"apikey_ts":1742440584,"curr_request.d\\/usage":0,"partner":[],"last_request.d\\/usage":1742972209,"usage.img_optm":{"total_used":1,"used":1,"quota":10000,"unlimited_quota":false,"pag_used":0,"pag_bal":0,"pkgs":4,"daily_quota":1000,"remaining_daily_quota":1000},"usage.page_optm":{"total_used":42,"used":42,"quota":2000,"unlimited_quota":false,"pag_used":0,"pag_bal":0,"pkgs":4,"daily_quota":166,"remaining_daily_quota":164,"sub_svc":{"ccss":20,"ucss":20,"vpi":2}},"usage.ccss":{"total_used":42,"used":42,"quota":2000,"unlimited_quota":false,"pag_used":0,"pag_bal":0,"pkgs":4,"daily_quota":166,"remaining_daily_quota":164},"usage.ucss":false,"usage.vpi":false,"usage.lqip":{"total_used":0,"used":0,"quota":1000,"unlimited_quota":false,"pag_used":0,"pag_bal":0,"pkgs":4,"daily_quota":83,"remaining_daily_quota":83},"usage.cdn":{"total_used":0,"used":0,"quota":200,"unlimited_quota":false,"pag_used":0,"pag_bal":0,"pkgs":4,"daily_quota":-1,"remaining_daily_quota":-1},"usage.health":{"total_used":0,"used":0,"quota":1000,"unlimited_quota":false,"pag_used":0,"pag_bal":0,"pkgs":4,"daily_quota":-1,"remaining_daily_quota":-1},"curr_request.d\\/nodes":0,"last_request.d\\/nodes":1742909283,"server.img_optm":"https:\\/\\/node119.quic.cloud","server_date.img_optm":1742440640,"curr_request.img_optm-new_req":0,"last_request.img_optm-new_req":1742440640,"server.ccss":"https:\\/\\/node449.quic.cloud","server_date.ccss":1742909290,"curr_request.ccss":0,"disabled_node":{"https:\\/\\/node3.quic.cloud":1742909283,"https:\\/\\/node449.quic.cloud":1742669941,"https:\\/\\/node13.quic.cloud":1742838639},"server.ucss":"https:\\/\\/node123.quic.cloud","server_date.ucss":1742702755,"curr_request.ucss":0,"last_request.ucss":1742956142,"server.vpi":"https:\\/\\/node123.quic.cloud","server_date.vpi":1742440983,"curr_request.vpi":0,"last_request.vpi":1742441045,"last_request.ccss":1742958865,"pk_b64":"OU9PkLeUAemY2GOvKNGhTEkYC6Ti\\/MjwChe2RXwsRsc=","sk_b64":"GQuX+fkLs+q6DG0JNhrXw2A+GBEBS7o2WKOa1bGDprw5T0+Qt5QB6ZjYY68o0aFMSRgLpOL8yPAKF7ZFfCxGxw==","curr_request.d\\/v3upgrade":0,"last_request.d\\/v3upgrade":1742974886,"qc_activated":"linked"}', 'auto'),
(57268, 'litespeed.conf.hash', 'UwmGNWKGNFAdyL5qAt5h7nEP0C3qRF7g', 'auto'),
(57269, 'litespeed.conf.auto_upgrade', '', 'auto'),
(57270, 'litespeed.conf.api_key', 'B848F9D992AB9D6D09DAEC7DFBABFEFD', 'auto'),
(57271, 'litespeed.conf.server_ip', '111.90.134.97', 'auto'),
(57272, 'litespeed.conf.guest', '1', 'auto'),
(57273, 'litespeed.conf.guest_optm', '1', 'auto'),
(57274, 'litespeed.conf.news', '1', 'auto'),
(57275, 'litespeed.conf.guest_uas', '["Lighthouse","GTmetrix","Google","Pingdom","bot","spider","PTST","HeadlessChrome"]', 'auto'),
(57276, 'litespeed.conf.guest_ips', '["208.70.247.157","172.255.48.130","172.255.48.131","172.255.48.132","172.255.48.133","172.255.48.134","172.255.48.135","172.255.48.136","172.255.48.137","172.255.48.138","172.255.48.139","172.255.48.140","172.255.48.141","172.255.48.142","172.255.48.143","172.255.48.144","172.255.48.145","172.255.48.146","172.255.48.147","52.229.122.240","104.214.72.101","13.66.7.11","13.85.24.83","13.85.24.90","13.85.82.26","40.74.242.253","40.74.243.13","40.74.243.176","104.214.48.247","157.55.189.189","104.214.110.135","70.37.83.240","65.52.36.250","13.78.216.56","52.162.212.163","23.96.34.105","65.52.113.236","172.255.61.34","172.255.61.35","172.255.61.36","172.255.61.37","172.255.61.38","172.255.61.39","172.255.61.40","104.41.2.19","191.235.98.164","191.235.99.221","191.232.194.51","52.237.235.185","52.237.250.73","52.237.236.145","104.211.143.8","104.211.165.53","52.172.14.87","40.83.89.214","52.175.57.81","20.188.63.151","20.52.36.49","52.246.165.153","51.144.102.233","13.76.97.224","102.133.169.66","52.231.199.170","13.53.162.7","40.123.218.94"]', 'auto'),
(57277, 'litespeed.conf.cache', '1', 'auto'),
(57278, 'litespeed.conf.cache-priv', '1', 'auto'),
(57279, 'litespeed.conf.cache-commenter', '1', 'auto'),
(57280, 'litespeed.conf.cache-rest', '1', 'auto'),
(57281, 'litespeed.conf.cache-page_login', '1', 'auto'),
(57282, 'litespeed.conf.cache-resources', '1', 'auto'),
(57283, 'litespeed.conf.cache-mobile', '1', 'auto'),
(57284, 'litespeed.conf.cache-mobile_rules', '["Mobile","Android","Silk\\/","Kindle","BlackBerry","Opera Mini","Opera Mobi"]', 'auto');
INSERT INTO `wpiq_options` VALUES
(57285, 'litespeed.conf.cache-browser', '1', 'auto'),
(57286, 'litespeed.conf.cache-exc_useragents', '[]', 'auto'),
(57287, 'litespeed.conf.cache-exc_cookies', '[]', 'auto'),
(57288, 'litespeed.conf.cache-exc_qs', '[]', 'auto'),
(57289, 'litespeed.conf.cache-exc_cat', '[]', 'auto'),
(57290, 'litespeed.conf.cache-exc_tag', '[]', 'auto'),
(57291, 'litespeed.conf.cache-force_uri', '[]', 'auto'),
(57292, 'litespeed.conf.cache-force_pub_uri', '[]', 'auto'),
(57293, 'litespeed.conf.cache-priv_uri', '[]', 'auto'),
(57294, 'litespeed.conf.cache-exc', '[]', 'auto'),
(57295, 'litespeed.conf.cache-exc_roles', '[]', 'auto'),
(57296, 'litespeed.conf.cache-drop_qs', '["fbclid","gclid","utm*","_ga"]', 'auto'),
(57297, 'litespeed.conf.cache-ttl_pub', '604800', 'auto'),
(57298, 'litespeed.conf.cache-ttl_priv', '1800', 'auto'),
(57299, 'litespeed.conf.cache-ttl_frontpage', '604800', 'auto'),
(57300, 'litespeed.conf.cache-ttl_feed', '604800', 'auto'),
(57301, 'litespeed.conf.cache-ttl_rest', '604800', 'auto'),
(57302, 'litespeed.conf.cache-ttl_browser', '31557600', 'auto'),
(57303, 'litespeed.conf.cache-ttl_status', '["404 3600","500 600"]', 'auto'),
(57304, 'litespeed.conf.cache-login_cookie', '', 'auto'),
(57305, 'litespeed.conf.cache-ajax_ttl', '[]', 'auto'),
(57306, 'litespeed.conf.cache-vary_cookies', '[]', 'auto'),
(57307, 'litespeed.conf.cache-vary_group', '[]', 'auto'),
(57308, 'litespeed.conf.purge-upgrade', '1', 'auto'),
(57309, 'litespeed.conf.purge-stale', '', 'auto'),
(57310, 'litespeed.conf.purge-post_all', '', 'auto'),
(57311, 'litespeed.conf.purge-post_f', '1', 'auto'),
(57312, 'litespeed.conf.purge-post_h', '1', 'auto'),
(57313, 'litespeed.conf.purge-post_p', '1', 'auto'),
(57314, 'litespeed.conf.purge-post_pwrp', '1', 'auto'),
(57315, 'litespeed.conf.purge-post_a', '1', 'auto'),
(57316, 'litespeed.conf.purge-post_y', '', 'auto'),
(57317, 'litespeed.conf.purge-post_m', '1', 'auto'),
(57318, 'litespeed.conf.purge-post_d', '', 'auto'),
(57319, 'litespeed.conf.purge-post_t', '1', 'auto'),
(57320, 'litespeed.conf.purge-post_pt', '1', 'auto'),
(57321, 'litespeed.conf.purge-timed_urls', '[]', 'auto'),
(57322, 'litespeed.conf.purge-timed_urls_time', '', 'auto'),
(57323, 'litespeed.conf.purge-hook_all', '["switch_theme","wp_create_nav_menu","wp_update_nav_menu","wp_delete_nav_menu","create_term","edit_terms","delete_term","add_link","edit_link","delete_link"]', 'auto'),
(57324, 'litespeed.conf.esi', '', 'auto'),
(57325, 'litespeed.conf.esi-cache_admbar', '1', 'auto'),
(57326, 'litespeed.conf.esi-cache_commform', '1', 'auto'),
(57327, 'litespeed.conf.esi-nonce', '["stats_nonce","subscribe_nonce"]', 'auto'),
(57328, 'litespeed.conf.util-instant_click', '', 'auto'),
(57329, 'litespeed.conf.util-no_https_vary', '', 'auto'),
(57330, 'litespeed.conf.debug-disable_all', '', 'auto'),
(57331, 'litespeed.conf.debug', '', 'auto'),
(57332, 'litespeed.conf.debug-ips', '["127.0.0.1"]', 'auto'),
(57333, 'litespeed.conf.debug-level', '', 'auto'),
(57334, 'litespeed.conf.debug-filesize', '3', 'auto'),
(57335, 'litespeed.conf.debug-collapse_qs', '', 'auto'),
(57336, 'litespeed.conf.debug-inc', '[]', 'auto'),
(57337, 'litespeed.conf.debug-exc', '[]', 'auto'),
(57338, 'litespeed.conf.debug-exc_strings', '[]', 'auto'),
(57339, 'litespeed.conf.db_optm-revisions_max', '0', 'auto'),
(57340, 'litespeed.conf.db_optm-revisions_age', '0', 'auto'),
(57341, 'litespeed.conf.optm-css_min', '1', 'auto'),
(57342, 'litespeed.conf.optm-css_comb', '', 'auto'),
(57343, 'litespeed.conf.optm-css_comb_ext_inl', '', 'auto'),
(57344, 'litespeed.conf.optm-ucss', '', 'auto'),
(57345, 'litespeed.conf.optm-ucss_inline', '', 'auto'),
(57346, 'litespeed.conf.optm-ucss_whitelist', '[]', 'auto'),
(57347, 'litespeed.conf.optm-ucss_file_exc_inline', '[]', 'auto'),
(57348, 'litespeed.conf.optm-ucss_exc', '[]', 'auto'),
(57349, 'litespeed.conf.optm-css_exc', '[]', 'auto'),
(57350, 'litespeed.conf.optm-js_min', '1', 'auto'),
(57351, 'litespeed.conf.optm-js_comb', '', 'auto'),
(57352, 'litespeed.conf.optm-js_comb_ext_inl', '', 'auto'),
(57353, 'litespeed.conf.optm-js_delay_inc', '[]', 'auto'),
(57354, 'litespeed.conf.optm-js_exc', '["jquery.js","jquery.min.js"]', 'auto'),
(57355, 'litespeed.conf.optm-html_min', '1', 'auto'),
(57356, 'litespeed.conf.optm-html_lazy', '[]', 'auto'),
(57357, 'litespeed.conf.optm-html_skip_comment', '[]', 'auto'),
(57358, 'litespeed.conf.optm-qs_rm', '1', 'auto'),
(57359, 'litespeed.conf.optm-ggfonts_rm', '', 'auto'),
(57360, 'litespeed.conf.optm-css_async', '', 'auto'),
(57361, 'litespeed.conf.optm-ccss_per_url', '', 'auto'),
(57362, 'litespeed.conf.optm-ccss_sep_posttype', '["page"]', 'auto'),
(57363, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'auto'),
(57364, 'litespeed.conf.optm-css_async_inline', '', 'auto'),
(57365, 'litespeed.conf.optm-css_font_display', '1', 'auto'),
(57366, 'litespeed.conf.optm-js_defer', '1', 'auto'),
(57367, 'litespeed.conf.optm-emoji_rm', '1', 'auto'),
(57368, 'litespeed.conf.optm-noscript_rm', '1', 'auto'),
(57369, 'litespeed.conf.optm-ggfonts_async', '', 'auto'),
(57370, 'litespeed.conf.optm-exc_roles', '[]', 'auto'),
(57371, 'litespeed.conf.optm-ccss_con', '', 'auto'),
(57372, 'litespeed.conf.optm-js_defer_exc', '["jquery.js","jquery.min.js","gtm.js","analytics.js"]', 'auto'),
(57373, 'litespeed.conf.optm-gm_js_exc', '[]', 'auto'),
(57374, 'litespeed.conf.optm-dns_prefetch', '[]', 'auto'),
(57375, 'litespeed.conf.optm-dns_prefetch_ctrl', '1', 'auto'),
(57376, 'litespeed.conf.optm-dns_preconnect', '[]', 'auto'),
(57377, 'litespeed.conf.optm-exc', '[]', 'auto'),
(57378, 'litespeed.conf.optm-guest_only', '1', 'auto'),
(57379, 'litespeed.conf.object', '', 'auto'),
(57380, 'litespeed.conf.object-kind', '', 'auto'),
(57381, 'litespeed.conf.object-host', 'localhost', 'auto'),
(57382, 'litespeed.conf.object-port', '11211', 'auto'),
(57383, 'litespeed.conf.object-life', '360', 'auto'),
(57384, 'litespeed.conf.object-persistent', '1', 'auto'),
(57385, 'litespeed.conf.object-admin', '1', 'auto'),
(57386, 'litespeed.conf.object-transients', '1', 'auto'),
(57387, 'litespeed.conf.object-db_id', '0', 'auto'),
(57388, 'litespeed.conf.object-user', '', 'auto'),
(57389, 'litespeed.conf.object-pswd', '', 'auto'),
(57390, 'litespeed.conf.object-global_groups', '["users","userlogins","useremail","userslugs","usermeta","user_meta","site-transient","site-options","site-lookup","site-details","blog-lookup","blog-details","blog-id-cache","rss","global-posts","global-cache-test"]', 'auto'),
(57391, 'litespeed.conf.object-non_persistent_groups', '["comment","counts","plugins","wc_session_id"]', 'auto'),
(57392, 'litespeed.conf.discuss-avatar_cache', '1', 'auto'),
(57393, 'litespeed.conf.discuss-avatar_cron', '1', 'auto'),
(57394, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'auto'),
(57395, 'litespeed.conf.optm-localize', '', 'auto'),
(57396, 'litespeed.conf.optm-localize_domains', '["### Popular scripts ###","https:\\/\\/platform.twitter.com\\/widgets.js","https:\\/\\/connect.facebook.net\\/en_US\\/fbevents.js"]', 'auto'),
(57397, 'litespeed.conf.media-lazy', '', 'auto'),
(57398, 'litespeed.conf.media-lazy_placeholder', '', 'auto'),
(57399, 'litespeed.conf.media-placeholder_resp', '', 'auto'),
(57400, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'auto'),
(57401, 'litespeed.conf.media-placeholder_resp_svg', '<svg xmlns="http://www.w3.org/2000/svg" width="{width}" height="{height}" viewBox="0 0 {width} {height}"><rect width="100%" height="100%" style="fill:{color};fill-opacity: 0.1;"/></svg>', 'auto'),
(57402, 'litespeed.conf.media-lqip', '', 'auto'),
(57403, 'litespeed.conf.media-lqip_qual', '4', 'auto'),
(57404, 'litespeed.conf.media-lqip_min_w', '150', 'auto'),
(57405, 'litespeed.conf.media-lqip_min_h', '150', 'auto'),
(57406, 'litespeed.conf.media-placeholder_resp_async', '1', 'auto'),
(57407, 'litespeed.conf.media-iframe_lazy', '', 'auto'),
(57408, 'litespeed.conf.media-add_missing_sizes', '', 'auto'),
(57409, 'litespeed.conf.media-lazy_exc', '[]', 'auto'),
(57410, 'litespeed.conf.media-lazy_cls_exc', '["wmu-preview-img"]', 'auto'),
(57411, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'auto'),
(57412, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'auto'),
(57413, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'auto'),
(57414, 'litespeed.conf.media-lazy_uri_exc', '[]', 'auto'),
(57415, 'litespeed.conf.media-lqip_exc', '["https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp"]', 'auto'),
(57416, 'litespeed.conf.media-vpi', '', 'auto'),
(57417, 'litespeed.conf.media-vpi_cron', '', 'auto'),
(57418, 'litespeed.conf.img_optm-auto', '1', 'auto'),
(57419, 'litespeed.conf.img_optm-cron', '1', 'auto'),
(57420, 'litespeed.conf.img_optm-ori', '1', 'auto'),
(57421, 'litespeed.conf.img_optm-rm_bkup', '', 'auto'),
(57422, 'litespeed.conf.img_optm-webp', '1', 'auto'),
(57423, 'litespeed.conf.img_optm-lossless', '', 'auto'),
(57424, 'litespeed.conf.img_optm-exif', '', 'auto'),
(57425, 'litespeed.conf.img_optm-webp_attr', '["img.src","div.data-thumb","img.data-src","img.data-lazyload","div.data-large_image","img.retina_logo_url","div.data-parallax-image","div.data-vc-parallax-image","video.poster"]', 'auto'),
(57426, 'litespeed.conf.img_optm-webp_replace_srcset', '1', 'auto'),
(57427, 'litespeed.conf.img_optm-jpg_quality', '82', 'auto'),
(57428, 'litespeed.conf.crawler', '', 'auto'),
(57429, 'litespeed.conf.crawler-usleep', '500', 'auto'),
(57430, 'litespeed.conf.crawler-run_duration', '400', 'auto'),
(57431, 'litespeed.conf.crawler-run_interval', '600', 'auto'),
(57432, 'litespeed.conf.crawler-crawl_interval', '302400', 'auto'),
(57433, 'litespeed.conf.crawler-threads', '3', 'auto'),
(57434, 'litespeed.conf.crawler-timeout', '30', 'auto'),
(57435, 'litespeed.conf.crawler-load_limit', '1', 'auto'),
(57436, 'litespeed.conf.crawler-sitemap', '', 'auto'),
(57437, 'litespeed.conf.crawler-drop_domain', '1', 'auto'),
(57438, 'litespeed.conf.crawler-map_timeout', '120', 'auto'),
(57439, 'litespeed.conf.crawler-roles', '[]', 'auto'),
(57440, 'litespeed.conf.crawler-cookies', '[]', 'auto'),
(57441, 'litespeed.conf.misc-heartbeat_front', '', 'auto'),
(57442, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'auto'),
(57443, 'litespeed.conf.misc-heartbeat_back', '', 'auto'),
(57444, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'auto'),
(57445, 'litespeed.conf.misc-heartbeat_editor', '', 'auto'),
(57446, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'auto'),
(57447, 'litespeed.conf.cdn', '', 'auto'),
(57448, 'litespeed.conf.cdn-ori', '[]', 'auto'),
(57449, 'litespeed.conf.cdn-ori_dir', '["wp-content","wp-includes"]', 'auto'),
(57450, 'litespeed.conf.cdn-exc', '[]', 'auto'),
(57451, 'litespeed.conf.cdn-quic', '', 'auto'),
(57452, 'litespeed.conf.cdn-cloudflare', '', 'auto'),
(57453, 'litespeed.conf.cdn-cloudflare_email', '', 'auto'),
(57454, 'litespeed.conf.cdn-cloudflare_key', '', 'auto'),
(57455, 'litespeed.conf.cdn-cloudflare_name', '', 'auto'),
(57456, 'litespeed.conf.cdn-cloudflare_zone', '', 'auto'),
(57457, 'litespeed.conf.cdn-mapping', '[{"url":"","inc_img":"1","inc_css":"1","inc_js":"1","filetype":[".aac",".css",".eot",".gif",".jpeg",".jpg",".js",".less",".mp3",".mp4",".ogg",".otf",".pdf",".png",".svg",".ttf",".webp",".woff",".woff2"]}]', 'auto'),
(57458, 'litespeed.conf.cdn-attr', '[".src",".data-src",".href",".poster","source.srcset"]', 'auto'),
(57459, 'litespeed.conf.qc-token', '', 'auto'),
(57460, 'litespeed.conf.qc-nameservers', '', 'auto'),
(57461, 'litespeed.purge.queue', '-1', 'auto'),
(57462, 'litespeed.purge.queue2', '-1', 'auto'),
(60667, 'litespeed.gui.lscwp_whm_install', '-1', 'auto'),
(60668, 'litespeed.gui.dismiss', '-1', 'auto'),
(60669, 'litespeed.gui._summary', '{"new_version":1742826181,"score":1743430981,"new_version.last_check":1742972174,"new_version.v":"6.5.4"}', 'auto'),
(60670, 'litespeed.data.upgrading', '-1', 'auto'),
(60671, 'litespeed.admin_display.messages', '["<div class=\\"litespeed_icon notice notice-success is-dismissible\\"><p>Purged all caches successfully.<\\/p><\\/div>"]', 'auto'),
(60727, 'litespeed.optimize.timestamp_purge_css', '1742974985', 'auto'),
(61493, 'elementor_landing_pages_activation', '0', 'auto'),
(61506, 'e_editor_counter', '23', 'auto'),
(61507, '_elementor_notifications_data', 'a:2:{s:7:"timeout";i:1747471966;s:5:"value";s:12824:"[{"id":"ai-isolate-object","title":"Sharper product images, instantly","description":"Remove distractions and reframe your shots with the new Isolate Object tool powered by Elementor AI \\u2014 perfect for a polished, uniform Woo storefront.","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/isolate-object-ai.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/Isolateobjectblog","readMoreText":"Learn More","conditions":[[{"type":"introduction_meta","meta":"ai_get_started"}]],"cta":"Start Free Trial","ctaLink":"https:\\/\\/go.elementor.com\\/Isolateobjectblog"},{"id":"ai-isolate-object","title":"Sharper product images, instantly","description":"Remove distractions and reframe your shots with the new Isolate Object tool powered by Elementor AI \\u2014 perfect for a polished, uniform Woo storefront.","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/isolate-object-ai.png","chipTags":["New Feature"],"cta":"Start Free Trial","link":"https:\\/\\/go.elementor.com\\/Isolateobjectblog","readMoreText":"Learn More","ctaLink":"https:\\/\\/go.elementor.com\\/Isolateobjectblog"},{"id":"hello-biz-contact","title":"New Contact Widget, Visual Layout Presets & more","description":"Hello Biz just got an update! Explore the new Contact Widget, Visual Layout Presets, Form Submissions integration, and fresh new kits.","topic":"Hello Biz","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/hello-biz-contact.png","chipTags":["New Features"],"link":"https:\\/\\/go.elementor.com\\/hello-biz-updates","readMoreText":"Learn More"},{"id":"ai-site-planner-colors","title":"Style Your Wireframe, Speed Up Your Store Build","description":"Site Planner now lets you style your wireframe with fonts and colors - instantly visualizing your site\\u2019s look and feel. Plus, it predesigns pages for WooCommerce like Cart and Checkout, so you can dive straight into customizations","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/site-planner-colors.png","chipTags":["New Feature"],"link":"http:\\/\\/www.elementor.com\\/ai-site-planner","readMoreText":"Learn More"},{"id":"ally-notification","title":"Just released! Ally - a new plugin for web accessibility & usability","description":"Ally simplifies the complexities of making your website more accessible. With new regulations here and coming, making your website more usable and inclusive is no longer just an option, but a must.","topic":"Ally by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ally-notification.png","chipTags":["New plugin"],"cta":"Get it free","ctaLink":"https:\\/\\/wordpress.org\\/plugins\\/pojo-accessibility\\/","conditions":[[{"type":"plugin","operator":"!=","plugin":"pojo-accessibility\\/pojo-accessibility.php"}]]},{"id":"send-notification","title":"Grow your business with Send: an intuitive platform for Email & SMS, natively built for WooCommerce.","description":"Deliver powerful, automated email & SMS campaigns with Send\\u2014built for WooCommerce to help you boost conversions, drive growth, and go beyond just building websites.","topic":"Send by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/send-notification.png","chipTags":["New plugin"],"cta":"Explore Send","ctaLink":"https:\\/\\/go.elementor.com\\/AHSfdh","conditions":[[{"type":"plugin","operator":"!=","plugin":"send-app\\/send-app.php"}]]},{"id":"ai-site-planner","title":"Instant Sitemaps & Wireframes","description":"Get your website plan in minutes with AI Site Planner. Describe your desired site and AI will generate a sitemap, brief and wireframe populated with initial content, ready for you to customize.","topic":"Elementor AI","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/aI-site-planner.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/ai-notification-site-planner\\/","readMoreText":"Learn More"},{"id":"grid-span-3.27","title":"Design Grid layouts that fit your exact vision","description":"Advanced column and row span controls give you the power to design Grid Container layouts that fit your exact vision.","topic":"Elementor 3.27","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/grid-span-3.27.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-grid-span-blog\\/","readMoreText":"Learn More"},{"id":"local-fonts-3.27","title":"Load Google Fonts safer and faster","description":"Once enabled, Google Fonts are served directly from your server, streamlining the loading process and enhancing security.","topic":"Elementor 3.27","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/local-google-fonts-3.27.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-local-fonts-blog\\/","readMoreText":"Learn More"},{"id":"video-shorts-3.27","title":"Showcase short-form, vertical videos","description":"The Video widget now supports YouTube Shorts in a vertical 9:16 ratio, the go-to format for engaging audiences.","topic":"Elementor 3.27","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/video-shorts-3.27.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.27-video-shorts-blog\\/","readMoreText":"Learn More"},{"id":"dynamic-off-canvas-3.26","title":"Dynamic Off-Canvas for Loop Grids","description":"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.","topic":"Elementor Pro 3.26","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png","chipPlan":"Pro","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-blog\\/","readMoreText":"Learn More","conditions":[[{"type":"plugin","plugin":"elementor-pro\\/elementor-pro.php"}]]},{"id":"dynamic-off-canvas-3.26","title":"Dynamic Off-Canvas for Loop Grids","description":"Create richer, more interactive designs by linking Dynamic Content to the Off Canvas widget, delivering seamless user experiences.","topic":"Elementor Pro 3.26","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/off-canvas-loop-grids.png","chipTags":["New Feature"],"cta":"Upgrade","ctaLink":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.26-loop-off-canvas\\/"},{"id":"css-loading-3.25","title":"Boost Performance with Conditional CSS Loading","description":"Boost performance by conditionally loading only the styles that each page needs, reducing the page CSS size by up to 668kb.","topic":"Elementor 3.25","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.25-css-Loading.png","chipTags":["Performance"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3-25-blog\\/","readMoreText":"Learn More"},{"id":"image-optimizer-3.19","title":"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.","description":"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP, for faster loading times and and better user experience.","topic":"Image Optimizer Plugin by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png","chipTags":["New plugin"],"cta":"Get the Image Optimizer","ctaLink":"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/","conditions":[[{"type":"plugin","operator":"!=","plugin":"image-optimization\\/image-optimization.php"}]]},{"id":"variable-fonts-3.24","title":"Elevate text design with Variable Fonts","description":"Experience unparalleled fluidity in your design with precise control over text width and weight.","topic":"Elementor Pro 3.24","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png","chipPlan":"Pro","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/","readMoreText":"Learn More","conditions":[[{"type":"plugin","plugin":"elementor-pro\\/elementor-pro.php"}]]},{"id":"variable-fonts-3.24","title":"Elevate text design with Variable Fonts","description":"Experience unparalleled fluidity in your design with precise control over text width and weight.","topic":"Elementor Pro 3.24","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-variable-fonts.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/","readMoreText":"Learn More","cta":"Upgrade","ctaLink":"https:\\/\\/go.elementor.com\\/go-pro-notification-3-24-variable-fonts\\/"},{"id":"floating-bars-3.24","title":"Increase conversion with Floating Bars","description":"Place your most important messages and promotions at the top or bottom of your page seamlessly with over 30 pre-made templates.","topic":"Elementor 3.24","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/3.24-floating-bar.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3.24-blog\\/","readMoreText":"Learn More"},{"id":"search-widget-3.23","title":"Increases site exploration with AJAX loading & live results","description":"Enabling faster, more accurate content discovery and helping visitors find what they''re looking for.","topic":"Elementor Pro 3.23","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png","chipPlan":"Pro","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/","readMoreText":"Learn More","conditions":[[{"type":"plugin","plugin":"elementor-pro\\/elementor-pro.php"}]]},{"id":"search-widget-3.23","title":"Increases site exploration with AJAX loading & live results","description":"Enabling faster, more accurate content discovery and helping visitors find what they''re looking for.","topic":"Elementor Pro 3.23","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/search-widget-3.23.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features\\/","readMoreText":"Learn More","cta":"Upgrade","ctaLink":"https:\\/\\/go.elementor.com\\/go-pro-notification-search-widget\\/"},{"id":"floating-buttons-3.23","title":"Get more leads with Floating Buttons","description":"Empowering you to increase conversion by seamlessly integrating a direct link to a chat or different platforms in the form of a floating button.","topic":"Elementor 3.23","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/floating-buttons-3.23.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/","readMoreText":"Learn More"},{"id":"link-in-bio-3.23","title":"New Link in Bio Widgets for any Purpose","description":"Create a polished and professional page with just a few clicks and effectively showcase all your important links. Choose from 7 unique widgets and over 60 templates!","topic":"Elementor 3.23","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/link-in-bio-3.23.png","chipTags":["New Feature"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-link-in-bio-3-23-blog\\/","readMoreText":"Learn More"},{"id":"nested-elements-3.23","title":"Work faster on Nested Elements","description":"Customize Nested Elements faster with version 3.23. Now every change to a Nested Element will only affect the relevant element and not require reloading the entire widget, improving Editor interaction time by 60%-98%.","topic":"Elementor 3.23","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/nested-elements-3.23.png","chipTags":["Performance"],"link":"https:\\/\\/go.elementor.com\\/go-pro-notification-3-23-features-blog\\/","readMoreText":"Learn More"},{"id":"5-star-rating-prompt","title":"Love the New Features? Let Us Know with 5 Stars!","description":"Help spread the word by telling the world what you love about Elementor.","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png","cta":"Leave a Review","ctaLink":"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/"},{"id":"site-mailer-introducing","title":"Introducing Site Mailer","description":"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\\u2014no need for an SMTP plugin or complicated configurations.","topic":"Site Mailer Plugin by Elementor","imageSrc":"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/Site-mailer.png","chipTags":["New plugin"],"cta":"Start Free Trial","ctaLink":"https:\\/\\/go.elementor.com\\/sm-wp-dash-whatsnew\\/","conditions":[[{"type":"plugin","operator":"!=","plugin":"site-mailer\\/site-mailer.php"}]]}]";}', 'off'),
(61510, '_elementor_local_google_fonts', 'a:6:{s:6:"roboto";a:2:{s:3:"url";s:76:"https://omsrislb.my/wp-content/uploads/elementor/google-fonts/css/roboto.css";s:7:"version";i:1742399276;}s:10:"robotoslab";a:2:{s:3:"url";s:80:"https://omsrislb.my/wp-content/uploads/elementor/google-fonts/css/robotoslab.css";s:7:"version";i:1742399280;}s:7:"raleway";a:2:{s:3:"url";s:77:"https://omsrislb.my/wp-content/uploads/elementor/google-fonts/css/raleway.css";s:7:"version";i:1742399298;}s:7:"poppins";a:2:{s:3:"url";s:77:"https://omsrislb.my/wp-content/uploads/elementor/google-fonts/css/poppins.css";s:7:"version";i:1742399300;}s:6:"prompt";a:2:{s:3:"url";s:76:"https://omsrislb.my/wp-content/uploads/elementor/google-fonts/css/prompt.css";s:7:"version";i:1742401700;}s:4:"lato";a:2:{s:3:"url";s:74:"https://omsrislb.my/wp-content/uploads/elementor/google-fonts/css/lato.css";s:7:"version";i:1742441934;}}', 'auto'),
(61720, 'code_snippets_version', '3.6.8', 'auto'),
(61721, 'code_snippets_settings', 'a:2:{s:7:"general";a:8:{s:19:"activate_by_default";b:1;s:11:"enable_tags";b:1;s:18:"enable_description";b:1;s:18:"visual_editor_rows";i:5;s:10:"list_order";s:12:"priority-asc";s:13:"disable_prism";b:0;s:17:"hide_upgrade_menu";b:0;s:18:"complete_uninstall";b:0;}s:6:"editor";a:11:{s:16:"indent_with_tabs";b:1;s:8:"tab_size";i:4;s:11:"indent_unit";i:4;s:10:"wrap_lines";b:1;s:12:"code_folding";b:1;s:12:"line_numbers";b:1;s:19:"auto_close_brackets";b:1;s:27:"highlight_selection_matches";b:1;s:21:"highlight_active_line";b:1;s:6:"keymap";s:7:"default";s:5:"theme";s:7:"default";}}', 'auto'),
(61742, 'recently_activated_snippets', 'a:0:{}', 'auto'),
(61913, 'elementskit-lite_never_show', 'yes', 'auto'),
(61935, '_transient_wp_core_block_css_files', 'a:2:{s:7:"version";s:5:"6.9.1";s:5:"files";a:584:{i:0;s:31:"accordion-heading/style-rtl.css";i:1;s:35:"accordion-heading/style-rtl.min.css";i:2;s:27:"accordion-heading/style.css";i:3;s:31:"accordion-heading/style.min.css";i:4;s:28:"accordion-item/style-rtl.css";i:5;s:32:"accordion-item/style-rtl.min.css";i:6;s:24:"accordion-item/style.css";i:7;s:28:"accordion-item/style.min.css";i:8;s:29:"accordion-panel/style-rtl.css";i:9;s:33:"accordion-panel/style-rtl.min.css";i:10;s:25:"accordion-panel/style.css";i:11;s:29:"accordion-panel/style.min.css";i:12;s:23:"accordion/style-rtl.css";i:13;s:27:"accordion/style-rtl.min.css";i:14;s:19:"accordion/style.css";i:15;s:23:"accordion/style.min.css";i:16;s:23:"archives/editor-rtl.css";i:17;s:27:"archives/editor-rtl.min.css";i:18;s:19:"archives/editor.css";i:19;s:23:"archives/editor.min.css";i:20;s:22:"archives/style-rtl.css";i:21;s:26:"archives/style-rtl.min.css";i:22;s:18:"archives/style.css";i:23;s:22:"archives/style.min.css";i:24;s:20:"audio/editor-rtl.css";i:25;s:24:"audio/editor-rtl.min.css";i:26;s:16:"audio/editor.css";i:27;s:20:"audio/editor.min.css";i:28;s:19:"audio/style-rtl.css";i:29;s:23:"audio/style-rtl.min.css";i:30;s:15:"audio/style.css";i:31;s:19:"audio/style.min.css";i:32;s:19:"audio/theme-rtl.css";i:33;s:23:"audio/theme-rtl.min.css";i:34;s:15:"audio/theme.css";i:35;s:19:"audio/theme.min.css";i:36;s:21:"avatar/editor-rtl.css";i:37;s:25:"avatar/editor-rtl.min.css";i:38;s:17:"avatar/editor.css";i:39;s:21:"avatar/editor.min.css";i:40;s:20:"avatar/style-rtl.css";i:41;s:24:"avatar/style-rtl.min.css";i:42;s:16:"avatar/style.css";i:43;s:20:"avatar/style.min.css";i:44;s:21:"button/editor-rtl.css";i:45;s:25:"button/editor-rtl.min.css";i:46;s:17:"button/editor.css";i:47;s:21:"button/editor.min.css";i:48;s:20:"button/style-rtl.css";i:49;s:24:"button/style-rtl.min.css";i:50;s:16:"button/style.css";i:51;s:20:"button/style.min.css";i:52;s:22:"buttons/editor-rtl.css";i:53;s:26:"buttons/editor-rtl.min.css";i:54;s:18:"buttons/editor.css";i:55;s:22:"buttons/editor.min.css";i:56;s:21:"buttons/style-rtl.css";i:57;s:25:"buttons/style-rtl.min.css";i:58;s:17:"buttons/style.css";i:59;s:21:"buttons/style.min.css";i:60;s:22:"calendar/style-rtl.css";i:61;s:26:"calendar/style-rtl.min.css";i:62;s:18:"calendar/style.css";i:63;s:22:"calendar/style.min.css";i:64;s:25:"categories/editor-rtl.css";i:65;s:29:"categories/editor-rtl.min.css";i:66;s:21:"categories/editor.css";i:67;s:25:"categories/editor.min.css";i:68;s:24:"categories/style-rtl.css";i:69;s:28:"categories/style-rtl.min.css";i:70;s:20:"categories/style.css";i:71;s:24:"categories/style.min.css";i:72;s:19:"code/editor-rtl.css";i:73;s:23:"code/editor-rtl.min.css";i:74;s:15:"code/editor.css";i:75;s:19:"code/editor.min.css";i:76;s:18:"code/style-rtl.css";i:77;s:22:"code/style-rtl.min.css";i:78;s:14:"code/style.css";i:79;s:18:"code/style.min.css";i:80;s:18:"code/theme-rtl.css";i:81;s:22:"code/theme-rtl.min.css";i:82;s:14:"code/theme.css";i:83;s:18:"code/theme.min.css";i:84;s:22:"columns/editor-rtl.css";i:85;s:26:"columns/editor-rtl.min.css";i:86;s:18:"columns/editor.css";i:87;s:22:"columns/editor.min.css";i:88;s:21:"columns/style-rtl.css";i:89;s:25:"columns/style-rtl.min.css";i:90;s:17:"columns/style.css";i:91;s:21:"columns/style.min.css";i:92;s:33:"comment-author-name/style-rtl.css";i:93;s:37:"comment-author-name/style-rtl.min.css";i:94;s:29:"comment-author-name/style.css";i:95;s:33:"comment-author-name/style.min.css";i:96;s:29:"comment-content/style-rtl.css";i:97;s:33:"comment-content/style-rtl.min.css";i:98;s:25:"comment-content/style.css";i:99;s:29:"comment-content/style.min.css";i:100;s:26:"comment-date/style-rtl.css";i:101;s:30:"comment-date/style-rtl.min.css";i:102;s:22:"comment-date/style.css";i:103;s:26:"comment-date/style.min.css";i:104;s:31:"comment-edit-link/style-rtl.css";i:105;s:35:"comment-edit-link/style-rtl.min.css";i:106;s:27:"comment-edit-link/style.css";i:107;s:31:"comment-edit-link/style.min.css";i:108;s:32:"comment-reply-link/style-rtl.css";i:109;s:36:"comment-reply-link/style-rtl.min.css";i:110;s:28:"comment-reply-link/style.css";i:111;s:32:"comment-reply-link/style.min.css";i:112;s:30:"comment-template/style-rtl.css";i:113;s:34:"comment-template/style-rtl.min.css";i:114;s:26:"comment-template/style.css";i:115;s:30:"comment-template/style.min.css";i:116;s:42:"comments-pagination-numbers/editor-rtl.css";i:117;s:46:"comments-pagination-numbers/editor-rtl.min.css";i:118;s:38:"comments-pagination-numbers/editor.css";i:119;s:42:"comments-pagination-numbers/editor.min.css";i:120;s:34:"comments-pagination/editor-rtl.css";i:121;s:38:"comments-pagination/editor-rtl.min.css";i:122;s:30:"comments-pagination/editor.css";i:123;s:34:"comments-pagination/editor.min.css";i:124;s:33:"comments-pagination/style-rtl.css";i:125;s:37:"comments-pagination/style-rtl.min.css";i:126;s:29:"comments-pagination/style.css";i:127;s:33:"comments-pagination/style.min.css";i:128;s:29:"comments-title/editor-rtl.css";i:129;s:33:"comments-title/editor-rtl.min.css";i:130;s:25:"comments-title/editor.css";i:131;s:29:"comments-title/editor.min.css";i:132;s:23:"comments/editor-rtl.css";i:133;s:27:"comments/editor-rtl.min.css";i:134;s:19:"comments/editor.css";i:135;s:23:"comments/editor.min.css";i:136;s:22:"comments/style-rtl.css";i:137;s:26:"comments/style-rtl.min.css";i:138;s:18:"comments/style.css";i:139;s:22:"comments/style.min.css";i:140;s:20:"cover/editor-rtl.css";i:141;s:24:"cover/editor-rtl.min.css";i:142;s:16:"cover/editor.css";i:143;s:20:"cover/editor.min.css";i:144;s:19:"cover/style-rtl.css";i:145;s:23:"cover/style-rtl.min.css";i:146;s:15:"cover/style.css";i:147;s:19:"cover/style.min.css";i:148;s:22:"details/editor-rtl.css";i:149;s:26:"details/editor-rtl.min.css";i:150;s:18:"details/editor.css";i:151;s:22:"details/editor.min.css";i:152;s:21:"details/style-rtl.css";i:153;s:25:"details/style-rtl.min.css";i:154;s:17:"details/style.css";i:155;s:21:"details/style.min.css";i:156;s:20:"embed/editor-rtl.css";i:157;s:24:"embed/editor-rtl.min.css";i:158;s:16:"embed/editor.css";i:159;s:20:"embed/editor.min.css";i:160;s:19:"embed/style-rtl.css";i:161;s:23:"embed/style-rtl.min.css";i:162;s:15:"embed/style.css";i:163;s:19:"embed/style.min.css";i:164;s:19:"embed/theme-rtl.css";i:165;s:23:"embed/theme-rtl.min.css";i:166;s:15:"embed/theme.css";i:167;s:19:"embed/theme.min.css";i:168;s:19:"file/editor-rtl.css";i:169;s:23:"file/editor-rtl.min.css";i:170;s:15:"file/editor.css";i:171;s:19:"file/editor.min.css";i:172;s:18:"file/style-rtl.css";i:173;s:22:"file/style-rtl.min.css";i:174;s:14:"file/style.css";i:175;s:18:"file/style.min.css";i:176;s:23:"footnotes/style-rtl.css";i:177;s:27:"footnotes/style-rtl.min.css";i:178;s:19:"footnotes/style.css";i:179;s:23:"footnotes/style.min.css";i:180;s:23:"freeform/editor-rtl.css";i:181;s:27:"freeform/editor-rtl.min.css";i:182;s:19:"freeform/editor.css";i:183;s:23:"freeform/editor.min.css";i:184;s:22:"gallery/editor-rtl.css";i:185;s:26:"gallery/editor-rtl.min.css";i:186;s:18:"gallery/editor.css";i:187;s:22:"gallery/editor.min.css";i:188;s:21:"gallery/style-rtl.css";i:189;s:25:"gallery/style-rtl.min.css";i:190;s:17:"gallery/style.css";i:191;s:21:"gallery/style.min.css";i:192;s:21:"gallery/theme-rtl.css";i:193;s:25:"gallery/theme-rtl.min.css";i:194;s:17:"gallery/theme.css";i:195;s:21:"gallery/theme.min.css";i:196;s:20:"group/editor-rtl.css";i:197;s:24:"group/editor-rtl.min.css";i:198;s:16:"group/editor.css";i:199;s:20:"group/editor.min.css";i:200;s:19:"group/style-rtl.css";i:201;s:23:"group/style-rtl.min.css";i:202;s:15:"group/style.css";i:203;s:19:"group/style.min.css";i:204;s:19:"group/theme-rtl.css";i:205;s:23:"group/theme-rtl.min.css";i:206;s:15:"group/theme.css";i:207;s:19:"group/theme.min.css";i:208;s:21:"heading/style-rtl.css";i:209;s:25:"heading/style-rtl.min.css";i:210;s:17:"heading/style.css";i:211;s:21:"heading/style.min.css";i:212;s:19:"html/editor-rtl.css";i:213;s:23:"html/editor-rtl.min.css";i:214;s:15:"html/editor.css";i:215;s:19:"html/editor.min.css";i:216;s:20:"image/editor-rtl.css";i:217;s:24:"image/editor-rtl.min.css";i:218;s:16:"image/editor.css";i:219;s:20:"image/editor.min.css";i:220;s:19:"image/style-rtl.css";i:221;s:23:"image/style-rtl.min.css";i:222;s:15:"image/style.css";i:223;s:19:"image/style.min.css";i:224;s:19:"image/theme-rtl.css";i:225;s:23:"image/theme-rtl.min.css";i:226;s:15:"image/theme.css";i:227;s:19:"image/theme.min.css";i:228;s:29:"latest-comments/style-rtl.css";i:229;s:33:"latest-comments/style-rtl.min.css";i:230;s:25:"latest-comments/style.css";i:231;s:29:"latest-comments/style.min.css";i:232;s:27:"latest-posts/editor-rtl.css";i:233;s:31:"latest-posts/editor-rtl.min.css";i:234;s:23:"latest-posts/editor.css";i:235;s:27:"latest-posts/editor.min.css";i:236;s:26:"latest-posts/style-rtl.css";i:237;s:30:"latest-posts/style-rtl.min.css";i:238;s:22:"latest-posts/style.css";i:239;s:26:"latest-posts/style.min.css";i:240;s:18:"list/style-rtl.css";i:241;s:22:"list/style-rtl.min.css";i:242;s:14:"list/style.css";i:243;s:18:"list/style.min.css";i:244;s:22:"loginout/style-rtl.css";i:245;s:26:"loginout/style-rtl.min.css";i:246;s:18:"loginout/style.css";i:247;s:22:"loginout/style.min.css";i:248;s:19:"math/editor-rtl.css";i:249;s:23:"math/editor-rtl.min.css";i:250;s:15:"math/editor.css";i:251;s:19:"math/editor.min.css";i:252;s:18:"math/style-rtl.css";i:253;s:22:"math/style-rtl.min.css";i:254;s:14:"math/style.css";i:255;s:18:"math/style.min.css";i:256;s:25:"media-text/editor-rtl.css";i:257;s:29:"media-text/editor-rtl.min.css";i:258;s:21:"media-text/editor.css";i:259;s:25:"media-text/editor.min.css";i:260;s:24:"media-text/style-rtl.css";i:261;s:28:"media-text/style-rtl.min.css";i:262;s:20:"media-text/style.css";i:263;s:24:"media-text/style.min.css";i:264;s:19:"more/editor-rtl.css";i:265;s:23:"more/editor-rtl.min.css";i:266;s:15:"more/editor.css";i:267;s:19:"more/editor.min.css";i:268;s:30:"navigation-link/editor-rtl.css";i:269;s:34:"navigation-link/editor-rtl.min.css";i:270;s:26:"navigation-link/editor.css";i:271;s:30:"navigation-link/editor.min.css";i:272;s:29:"navigation-link/style-rtl.css";i:273;s:33:"navigation-link/style-rtl.min.css";i:274;s:25:"navigation-link/style.css";i:275;s:29:"navigation-link/style.min.css";i:276;s:33:"navigation-submenu/editor-rtl.css";i:277;s:37:"navigation-submenu/editor-rtl.min.css";i:278;s:29:"navigation-submenu/editor.css";i:279;s:33:"navigation-submenu/editor.min.css";i:280;s:25:"navigation/editor-rtl.css";i:281;s:29:"navigation/editor-rtl.min.css";i:282;s:21:"navigation/editor.css";i:283;s:25:"navigation/editor.min.css";i:284;s:24:"navigation/style-rtl.css";i:285;s:28:"navigation/style-rtl.min.css";i:286;s:20:"navigation/style.css";i:287;s:24:"navigation/style.min.css";i:288;s:23:"nextpage/editor-rtl.css";i:289;s:27:"nextpage/editor-rtl.min.css";i:290;s:19:"nextpage/editor.css";i:291;s:23:"nextpage/editor.min.css";i:292;s:24:"page-list/editor-rtl.css";i:293;s:28:"page-list/editor-rtl.min.css";i:294;s:20:"page-list/editor.css";i:295;s:24:"page-list/editor.min.css";i:296;s:23:"page-list/style-rtl.css";i:297;s:27:"page-list/style-rtl.min.css";i:298;s:19:"page-list/style.css";i:299;s:23:"page-list/style.min.css";i:300;s:24:"paragraph/editor-rtl.css";i:301;s:28:"paragraph/editor-rtl.min.css";i:302;s:20:"paragraph/editor.css";i:303;s:24:"paragraph/editor.min.css";i:304;s:23:"paragraph/style-rtl.css";i:305;s:27:"paragraph/style-rtl.min.css";i:306;s:19:"paragraph/style.css";i:307;s:23:"paragraph/style.min.css";i:308;s:35:"post-author-biography/style-rtl.css";i:309;s:39:"post-author-biography/style-rtl.min.css";i:310;s:31:"post-author-biography/style.css";i:311;s:35:"post-author-biography/style.min.css";i:312;s:30:"post-author-name/style-rtl.css";i:313;s:34:"post-author-name/style-rtl.min.css";i:314;s:26:"post-author-name/style.css";i:315;s:30:"post-author-name/style.min.css";i:316;s:25:"post-author/style-rtl.css";i:317;s:29:"post-author/style-rtl.min.css";i:318;s:21:"post-author/style.css";i:319;s:25:"post-author/style.min.css";i:320;s:33:"post-comments-count/style-rtl.css";i:321;s:37:"post-comments-count/style-rtl.min.css";i:322;s:29:"post-comments-count/style.css";i:323;s:33:"post-comments-count/style.min.css";i:324;s:33:"post-comments-form/editor-rtl.css";i:325;s:37:"post-comments-form/editor-rtl.min.css";i:326;s:29:"post-comments-form/editor.css";i:327;s:33:"post-comments-form/editor.min.css";i:328;s:32:"post-comments-form/style-rtl.css";i:329;s:36:"post-comments-form/style-rtl.min.css";i:330;s:28:"post-comments-form/style.css";i:331;s:32:"post-comments-form/style.min.css";i:332;s:32:"post-comments-link/style-rtl.css";i:333;s:36:"post-comments-link/style-rtl.min.css";i:334;s:28:"post-comments-link/style.css";i:335;s:32:"post-comments-link/style.min.css";i:336;s:26:"post-content/style-rtl.css";i:337;s:30:"post-content/style-rtl.min.css";i:338;s:22:"post-content/style.css";i:339;s:26:"post-content/style.min.css";i:340;s:23:"post-date/style-rtl.css";i:341;s:27:"post-date/style-rtl.min.css";i:342;s:19:"post-date/style.css";i:343;s:23:"post-date/style.min.css";i:344;s:27:"post-excerpt/editor-rtl.css";i:345;s:31:"post-excerpt/editor-rtl.min.css";i:346;s:23:"post-excerpt/editor.css";i:347;s:27:"post-excerpt/editor.min.css";i:348;s:26:"post-excerpt/style-rtl.css";i:349;s:30:"post-excerpt/style-rtl.min.css";i:350;s:22:"post-excerpt/style.css";i:351;s:26:"post-excerpt/style.min.css";i:352;s:34:"post-featured-image/editor-rtl.css";i:353;s:38:"post-featured-image/editor-rtl.min.css";i:354;s:30:"post-featured-image/editor.css";i:355;s:34:"post-featured-image/editor.min.css";i:356;s:33:"post-featured-image/style-rtl.css";i:357;s:37:"post-featured-image/style-rtl.min.css";i:358;s:29:"post-featured-image/style.css";i:359;s:33:"post-featured-image/style.min.css";i:360;s:34:"post-navigation-link/style-rtl.css";i:361;s:38:"post-navigation-link/style-rtl.min.css";i:362;s:30:"post-navigation-link/style.css";i:363;s:34:"post-navigation-link/style.min.css";i:364;s:27:"post-template/style-rtl.css";i:365;s:31:"post-template/style-rtl.min.css";i:366;s:23:"post-template/style.css";i:367;s:27:"post-template/style.min.css";i:368;s:24:"post-terms/style-rtl.css";i:369;s:28:"post-terms/style-rtl.min.css";i:370;s:20:"post-terms/style.css";i:371;s:24:"post-terms/style.min.css";i:372;s:31:"post-time-to-read/style-rtl.css";i:373;s:35:"post-time-to-read/style-rtl.min.css";i:374;s:27:"post-time-to-read/style.css";i:375;s:31:"post-time-to-read/style.min.css";i:376;s:24:"post-title/style-rtl.css";i:377;s:28:"post-title/style-rtl.min.css";i:378;s:20:"post-title/style.css";i:379;s:24:"post-title/style.min.css";i:380;s:26:"preformatted/style-rtl.css";i:381;s:30:"preformatted/style-rtl.min.css";i:382;s:22:"preformatted/style.css";i:383;s:26:"preformatted/style.min.css";i:384;s:24:"pullquote/editor-rtl.css";i:385;s:28:"pullquote/editor-rtl.min.css";i:386;s:20:"pullquote/editor.css";i:387;s:24:"pullquote/editor.min.css";i:388;s:23:"pullquote/style-rtl.css";i:389;s:27:"pullquote/style-rtl.min.css";i:390;s:19:"pullquote/style.css";i:391;s:23:"pullquote/style.min.css";i:392;s:23:"pullquote/theme-rtl.css";i:393;s:27:"pullquote/theme-rtl.min.css";i:394;s:19:"pullquote/theme.css";i:395;s:23:"pullquote/theme.min.css";i:396;s:39:"query-pagination-numbers/editor-rtl.css";i:397;s:43:"query-pagination-numbers/editor-rtl.min.css";i:398;s:35:"query-pagination-numbers/editor.css";i:399;s:39:"query-pagination-numbers/editor.min.css";i:400;s:31:"query-pagination/editor-rtl.css";i:401;s:35:"query-pagination/editor-rtl.min.css";i:402;s:27:"query-pagination/editor.css";i:403;s:31:"query-pagination/editor.min.css";i:404;s:30:"query-pagination/style-rtl.css";i:405;s:34:"query-pagination/style-rtl.min.css";i:406;s:26:"query-pagination/style.css";i:407;s:30:"query-pagination/style.min.css";i:408;s:25:"query-title/style-rtl.css";i:409;s:29:"query-title/style-rtl.min.css";i:410;s:21:"query-title/style.css";i:411;s:25:"query-title/style.min.css";i:412;s:25:"query-total/style-rtl.css";i:413;s:29:"query-total/style-rtl.min.css";i:414;s:21:"query-total/style.css";i:415;s:25:"query-total/style.min.css";i:416;s:20:"query/editor-rtl.css";i:417;s:24:"query/editor-rtl.min.css";i:418;s:16:"query/editor.css";i:419;s:20:"query/editor.min.css";i:420;s:19:"quote/style-rtl.css";i:421;s:23:"quote/style-rtl.min.css";i:422;s:15:"quote/style.css";i:423;s:19:"quote/style.min.css";i:424;s:19:"quote/theme-rtl.css";i:425;s:23:"quote/theme-rtl.min.css";i:426;s:15:"quote/theme.css";i:427;s:19:"quote/theme.min.css";i:428;s:23:"read-more/style-rtl.css";i:429;s:27:"read-more/style-rtl.min.css";i:430;s:19:"read-more/style.css";i:431;s:23:"read-more/style.min.css";i:432;s:18:"rss/editor-rtl.css";i:433;s:22:"rss/editor-rtl.min.css";i:434;s:14:"rss/editor.css";i:435;s:18:"rss/editor.min.css";i:436;s:17:"rss/style-rtl.css";i:437;s:21:"rss/style-rtl.min.css";i:438;s:13:"rss/style.css";i:439;s:17:"rss/style.min.css";i:440;s:21:"search/editor-rtl.css";i:441;s:25:"search/editor-rtl.min.css";i:442;s:17:"search/editor.css";i:443;s:21:"search/editor.min.css";i:444;s:20:"search/style-rtl.css";i:445;s:24:"search/style-rtl.min.css";i:446;s:16:"search/style.css";i:447;s:20:"search/style.min.css";i:448;s:20:"search/theme-rtl.css";i:449;s:24:"search/theme-rtl.min.css";i:450;s:16:"search/theme.css";i:451;s:20:"search/theme.min.css";i:452;s:24:"separator/editor-rtl.css";i:453;s:28:"separator/editor-rtl.min.css";i:454;s:20:"separator/editor.css";i:455;s:24:"separator/editor.min.css";i:456;s:23:"separator/style-rtl.css";i:457;s:27:"separator/style-rtl.min.css";i:458;s:19:"separator/style.css";i:459;s:23:"separator/style.min.css";i:460;s:23:"separator/theme-rtl.css";i:461;s:27:"separator/theme-rtl.min.css";i:462;s:19:"separator/theme.css";i:463;s:23:"separator/theme.min.css";i:464;s:24:"shortcode/editor-rtl.css";i:465;s:28:"shortcode/editor-rtl.min.css";i:466;s:20:"shortcode/editor.css";i:467;s:24:"shortcode/editor.min.css";i:468;s:24:"site-logo/editor-rtl.css";i:469;s:28:"site-logo/editor-rtl.min.css";i:470;s:20:"site-logo/editor.css";i:471;s:24:"site-logo/editor.min.css";i:472;s:23:"site-logo/style-rtl.css";i:473;s:27:"site-logo/style-rtl.min.css";i:474;s:19:"site-logo/style.css";i:475;s:23:"site-logo/style.min.css";i:476;s:27:"site-tagline/editor-rtl.css";i:477;s:31:"site-tagline/editor-rtl.min.css";i:478;s:23:"site-tagline/editor.css";i:479;s:27:"site-tagline/editor.min.css";i:480;s:26:"site-tagline/style-rtl.css";i:481;s:30:"site-tagline/style-rtl.min.css";i:482;s:22:"site-tagline/style.css";i:483;s:26:"site-tagline/style.min.css";i:484;s:25:"site-title/editor-rtl.css";i:485;s:29:"site-title/editor-rtl.min.css";i:486;s:21:"site-title/editor.css";i:487;s:25:"site-title/editor.min.css";i:488;s:24:"site-title/style-rtl.css";i:489;s:28:"site-title/style-rtl.min.css";i:490;s:20:"site-title/style.css";i:491;s:24:"site-title/style.min.css";i:492;s:26:"social-link/editor-rtl.css";i:493;s:30:"social-link/editor-rtl.min.css";i:494;s:22:"social-link/editor.css";i:495;s:26:"social-link/editor.min.css";i:496;s:27:"social-links/editor-rtl.css";i:497;s:31:"social-links/editor-rtl.min.css";i:498;s:23:"social-links/editor.css";i:499;s:27:"social-links/editor.min.css";i:500;s:26:"social-links/style-rtl.css";i:501;s:30:"social-links/style-rtl.min.css";i:502;s:22:"social-links/style.css";i:503;s:26:"social-links/style.min.css";i:504;s:21:"spacer/editor-rtl.css";i:505;s:25:"spacer/editor-rtl.min.css";i:506;s:17:"spacer/editor.css";i:507;s:21:"spacer/editor.min.css";i:508;s:20:"spacer/style-rtl.css";i:509;s:24:"spacer/style-rtl.min.css";i:510;s:16:"spacer/style.css";i:511;s:20:"spacer/style.min.css";i:512;s:20:"table/editor-rtl.css";i:513;s:24:"table/editor-rtl.min.css";i:514;s:16:"table/editor.css";i:515;s:20:"table/editor.min.css";i:516;s:19:"table/style-rtl.css";i:517;s:23:"table/style-rtl.min.css";i:518;s:15:"table/style.css";i:519;s:19:"table/style.min.css";i:520;s:19:"table/theme-rtl.css";i:521;s:23:"table/theme-rtl.min.css";i:522;s:15:"table/theme.css";i:523;s:19:"table/theme.min.css";i:524;s:24:"tag-cloud/editor-rtl.css";i:525;s:28:"tag-cloud/editor-rtl.min.css";i:526;s:20:"tag-cloud/editor.css";i:527;s:24:"tag-cloud/editor.min.css";i:528;s:23:"tag-cloud/style-rtl.css";i:529;s:27:"tag-cloud/style-rtl.min.css";i:530;s:19:"tag-cloud/style.css";i:531;s:23:"tag-cloud/style.min.css";i:532;s:28:"template-part/editor-rtl.css";i:533;s:32:"template-part/editor-rtl.min.css";i:534;s:24:"template-part/editor.css";i:535;s:28:"template-part/editor.min.css";i:536;s:27:"template-part/theme-rtl.css";i:537;s:31:"template-part/theme-rtl.min.css";i:538;s:23:"template-part/theme.css";i:539;s:27:"template-part/theme.min.css";i:540;s:24:"term-count/style-rtl.css";i:541;s:28:"term-count/style-rtl.min.css";i:542;s:20:"term-count/style.css";i:543;s:24:"term-count/style.min.css";i:544;s:30:"term-description/style-rtl.css";i:545;s:34:"term-description/style-rtl.min.css";i:546;s:26:"term-description/style.css";i:547;s:30:"term-description/style.min.css";i:548;s:23:"term-name/style-rtl.css";i:549;s:27:"term-name/style-rtl.min.css";i:550;s:19:"term-name/style.css";i:551;s:23:"term-name/style.min.css";i:552;s:28:"term-template/editor-rtl.css";i:553;s:32:"term-template/editor-rtl.min.css";i:554;s:24:"term-template/editor.css";i:555;s:28:"term-template/editor.min.css";i:556;s:27:"term-template/style-rtl.css";i:557;s:31:"term-template/style-rtl.min.css";i:558;s:23:"term-template/style.css";i:559;s:27:"term-template/style.min.css";i:560;s:27:"text-columns/editor-rtl.css";i:561;s:31:"text-columns/editor-rtl.min.css";i:562;s:23:"text-columns/editor.css";i:563;s:27:"text-columns/editor.min.css";i:564;s:26:"text-columns/style-rtl.css";i:565;s:30:"text-columns/style-rtl.min.css";i:566;s:22:"text-columns/style.css";i:567;s:26:"text-columns/style.min.css";i:568;s:19:"verse/style-rtl.css";i:569;s:23:"verse/style-rtl.min.css";i:570;s:15:"verse/style.css";i:571;s:19:"verse/style.min.css";i:572;s:20:"video/editor-rtl.css";i:573;s:24:"video/editor-rtl.min.css";i:574;s:16:"video/editor.css";i:575;s:20:"video/editor.min.css";i:576;s:19:"video/style-rtl.css";i:577;s:23:"video/style-rtl.min.css";i:578;s:15:"video/style.css";i:579;s:19:"video/style.min.css";i:580;s:19:"video/theme-rtl.css";i:581;s:23:"video/theme-rtl.min.css";i:582;s:15:"video/theme.css";i:583;s:19:"video/theme.min.css";}}', 'on'),
(61947, '_transient_wp_styles_for_blocks', 'a:2:{s:4:"hash";s:32:"2754162164df30e02f6523a6cf8c1300";s:6:"blocks";a:53:{s:11:"core/button";s:0:"";s:14:"core/site-logo";s:0:"";s:18:"core/post-template";s:0:"";s:18:"core/term-template";s:0:"";s:12:"core/columns";s:0:"";s:14:"core/pullquote";s:272:":root :where(.wp-block-pullquote){border-width: 1px 0;border-style: solid;font-size: clamp(0.984em, 0.984rem + ((1vw - 0.2em) * 0.938), 1.5em);line-height: 1.3;margin-top: var(--wp--preset--spacing--40) !important;margin-bottom: var(--wp--preset--spacing--40) !important;}";s:32:"c48738dcb285a3f6ab83acff204fc486";s:127:":root :where(.wp-block-pullquote cite){font-size: var(--wp--preset--font-size--small);font-style: normal;text-transform: none;}";s:15:"core/navigation";s:83:":root :where(.wp-block-navigation){font-size: var(--wp--preset--font-size--small);}";s:32:"25289a01850f5a0264ddb79a9a3baf3d";s:92:":root :where(.wp-block-navigation a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"026c04da08398d655a95047f1f235d97";s:103:":root :where(.wp-block-navigation a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:32:"d29336949e8ff45ab25278f69ae48aa5";s:110:":root :where(.wp-block-navigation a:where(:not(.wp-element-button)):focus){text-decoration: underline dashed;}";s:32:"351cbe3371c430e0059260af4561e940";s:99:":root :where(.wp-block-navigation a:where(:not(.wp-element-button)):active){text-decoration: none;}";s:16:"core/post-author";s:84:":root :where(.wp-block-post-author){font-size: var(--wp--preset--font-size--small);}";s:17:"core/post-content";s:0:"";s:32:"d81df30b68b32ad91c8a25bce2427ff0";s:115:":root :where(.wp-block-post-content a:where(:not(.wp-element-button))){color: var(--wp--preset--color--secondary);}";s:17:"core/post-excerpt";s:86:":root :where(.wp-block-post-excerpt){font-size: var(--wp--preset--font-size--medium);}";s:14:"core/post-date";s:99:":root :where(.wp-block-post-date){font-size: var(--wp--preset--font-size--small);font-weight: 400;}";s:32:"ac0d4e00f5ec22d14451759983e5bd43";s:91:":root :where(.wp-block-post-date a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"0ae6ffd1b886044c2da62d75d05ab13d";s:102:":root :where(.wp-block-post-date a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:15:"core/post-terms";s:83:":root :where(.wp-block-post-terms){font-size: var(--wp--preset--font-size--small);}";s:15:"core/post-title";s:96:":root :where(.wp-block-post-title){font-weight: 400;margin-top: 1.25rem;margin-bottom: 1.25rem;}";s:32:"bb496d3fcd9be3502ce57ff8281e5687";s:92:":root :where(.wp-block-post-title a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"12380ab98fdc81351bb32a39bbfc9249";s:103:":root :where(.wp-block-post-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:32:"db7080b413e40eaaccb138491d6550ee";s:110:":root :where(.wp-block-post-title a:where(:not(.wp-element-button)):focus){text-decoration: underline dashed;}";s:32:"6449d53deb0a7a970244f284c6743423";s:142:":root :where(.wp-block-post-title a:where(:not(.wp-element-button)):active){color: var(--wp--preset--color--secondary);text-decoration: none;}";s:19:"core/comments-title";s:133:":root :where(.wp-block-comments-title){font-size: var(--wp--preset--font-size--large);margin-bottom: var(--wp--preset--spacing--40);}";s:24:"core/comment-author-name";s:0:"";s:32:"c0002c260f8238c4212f3e4c369fc4f7";s:101:":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"1e7c38b45537b325dbbbaec17a301676";s:112:":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:32:"f8e1a3f238d0ab1fccaff3b4fd131f24";s:119:":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button)):focus){text-decoration: underline dashed;}";s:32:"d0552d8fd858236f51abd8249b8438b7";s:151:":root :where(.wp-block-comment-author-name a:where(:not(.wp-element-button)):active){color: var(--wp--preset--color--secondary);text-decoration: none;}";s:17:"core/comment-date";s:85:":root :where(.wp-block-comment-date){font-size: var(--wp--preset--font-size--small);}";s:32:"c83ca7b3e52884c70f7830c54f99b318";s:94:":root :where(.wp-block-comment-date a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"7a05169cd0e6c7a5390492b955f8fd3d";s:105:":root :where(.wp-block-comment-date a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:32:"349941f9bf2b82371084c5557167f361";s:112:":root :where(.wp-block-comment-date a:where(:not(.wp-element-button)):focus){text-decoration: underline dashed;}";s:32:"a8e8be38e88349efcca0e5621507a56e";s:144:":root :where(.wp-block-comment-date a:where(:not(.wp-element-button)):active){color: var(--wp--preset--color--secondary);text-decoration: none;}";s:22:"core/comment-edit-link";s:90:":root :where(.wp-block-comment-edit-link){font-size: var(--wp--preset--font-size--small);}";s:23:"core/comment-reply-link";s:91:":root :where(.wp-block-comment-reply-link){font-size: var(--wp--preset--font-size--small);}";s:24:"core/comments-pagination";s:88:":root :where(.wp-block-comments-pagination){margin-top: var(--wp--preset--spacing--40);}";s:32:"fede273dd696ea58b55b0ff2bcb53c08";s:101:":root :where(.wp-block-comments-pagination a:where(:not(.wp-element-button))){text-decoration: none;}";s:10:"core/query";s:0:"";s:32:"8c83951e484ccedf2bb7797ef5c4135f";s:83:":root :where(.wp-block-query h2){font-size: var(--wp--preset--font-size--x-large);}";s:21:"core/query-pagination";s:106:":root :where(.wp-block-query-pagination){font-size: var(--wp--preset--font-size--small);font-weight: 400;}";s:32:"13846eb06306dcbaa7c8e94667a2c0eb";s:98:":root :where(.wp-block-query-pagination a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"97117f9959d427c62680a83361e38d34";s:109:":root :where(.wp-block-query-pagination a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:10:"core/quote";s:197:":root :where(.wp-block-quote){border-left-color: inherit;border-left-width: 1px;border-left-style: solid;padding-right: var(--wp--preset--spacing--30);padding-left: var(--wp--preset--spacing--30);}";s:32:"1de7a22e22013106efc5be82788cb6c0";s:102:":root :where(.wp-block-quote cite){font-size: var(--wp--preset--font-size--small);font-style: normal;}";s:15:"core/site-title";s:121:":root :where(.wp-block-site-title){font-size: var(--wp--preset--font-size--medium);font-weight: normal;line-height: 1.4;}";s:32:"f513d889cf971b13995cc3fffed2f39b";s:92:":root :where(.wp-block-site-title a:where(:not(.wp-element-button))){text-decoration: none;}";s:32:"22c37a317cc0ebd50155b5ad78564f37";s:103:":root :where(.wp-block-site-title a:where(:not(.wp-element-button)):hover){text-decoration: underline;}";s:32:"7f820b72d910bcef4934213eb41c9295";s:110:":root :where(.wp-block-site-title a:where(:not(.wp-element-button)):focus){text-decoration: underline dashed;}";s:32:"3e354d1ec2923ae3c9aef1b41e1c823d";s:142:":root :where(.wp-block-site-title a:where(:not(.wp-element-button)):active){color: var(--wp--preset--color--secondary);text-decoration: none;}";s:14:"core/separator";s:154:":root :where(.wp-block-separator){}:root :where(.wp-block-separator:not(.is-style-wide):not(.is-style-dots):not(.alignwide):not(.alignfull)){width: 100px}";}}', 'on');
INSERT INTO `wpiq_options` VALUES
(61951, '_site_transient_ai1wm_last_check_for_updates', '1771457895', 'off'),
(61959, 'ooohboi_dismissed_notice', '1', 'auto'),
(61967, 'litespeed.crawler.bypass_list', '[]', 'auto'),
(61968, 'litespeed.preset._summary', '{"preset":"advanced","preset_timestamp":1742441566}', 'auto'),
(61970, 'litespeed.img_optm._summary', '{"next_post_id":"10","is_running":0,"last_requested":1742440642,"reduced":4511,"last_pulled":1742974856,"last_pulled_by_cron":true,"last_pull":1742974856}', 'auto'),
(61974, 'litespeed.img_optm.need_pull', '6', 'auto'),
(61978, 'litespeed.css._summary', '[]', 'auto'),
(61979, 'litespeed.ucss._summary', '{"curr_request":1742973236,"last_spent":3,"last_request":1742956139}', 'auto'),
(61982, '_site_transient_wp_plugin_dependencies_plugin_data', 'a:0:{}', 'off'),
(61995, 'litespeed.vpi._summary', '{"curr_request_vpi":0,"last_spent_vpi":7,"last_request_vpi":1742441039}', 'auto'),
(62008, 'litespeed.placeholder._summary', '{"last_spent":1742442607,"last_request":0,"curr_request":0}', 'auto'),
(62041, 'litespeed.avatar._summary', '{"curr_request":0,"last_spent":0,"last_request":1742521571}', 'auto'),
(62062, '_transient_health-check-site-status-result', '{"good":18,"recommended":4,"critical":2}', 'on'),
(63547, 'litespeed.conf._version', '7.0', 'auto'),
(63548, 'litespeed.conf.qc-cname', '', 'auto'),
(63554, 'elementor_controls_usage', 'a:4:{s:4:"page";a:17:{s:6:"column";a:2:{s:5:"count";i:29;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:29;s:16:"content_position";i:15;s:5:"align";i:15;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:6:"margin";i:8;s:7:"padding";i:9;}s:15:"section_effects";a:3:{s:34:"motion_fx_translateY_affectedRange";i:3;s:34:"motion_fx_translateX_affectedRange";i:3;s:29:"motion_fx_motion_fx_scrolling";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}}}s:7:"section";a:2:{s:5:"count";i:19;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:7:{s:6:"layout";i:9;s:16:"content_position";i:10;s:15:"stretch_section";i:9;s:6:"height";i:3;s:13:"custom_height";i:4;s:3:"gap";i:4;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:7;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:3:{s:6:"margin";i:11;s:7:"padding";i:13;s:7:"z_index";i:1;}s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}s:5:"style";a:3:{s:18:"section_background";a:14:{s:21:"background_background";i:8;s:16:"background_image";i:5;s:19:"background_position";i:6;s:21:"background_attachment";i:4;s:17:"background_repeat";i:6;s:15:"background_size";i:6;s:16:"background_color";i:3;s:21:"background_color_stop";i:1;s:18:"background_color_b";i:1;s:23:"background_color_b_stop";i:1;s:40:"background_motion_fx_motion_fx_scrolling";i:2;s:38:"background_motion_fx_mouseTrack_effect";i:2;s:37:"background_motion_fx_mouseTrack_speed";i:2;s:19:"background_bg_width";i:2;}s:26:"section_background_overlay";a:3:{s:29:"background_overlay_background";i:2;s:26:"background_overlay_opacity";i:2;s:24:"background_overlay_color";i:1;}s:21:"section_shape_divider";a:6:{s:17:"shape_divider_top";i:2;s:23:"shape_divider_top_width";i:2;s:24:"shape_divider_top_height";i:2;s:26:"shape_divider_bottom_width";i:1;s:27:"shape_divider_bottom_height";i:1;s:23:"shape_divider_top_color";i:1;}}}}s:6:"slides";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:2:{s:6:"slides";i:2;s:13:"slides_height";i:2;}s:22:"section_slider_options";a:1:{s:14:"autoplay_speed";i:1;}}s:5:"style";a:3:{s:20:"section_style_slides";a:2:{s:17:"content_max_width";i:1;s:26:"slides_horizontal_position";i:1;}s:19:"section_style_title";a:4:{s:29:"heading_typography_typography";i:1;s:30:"heading_typography_font_family";i:1;s:30:"heading_typography_font_weight";i:1;s:33:"heading_typography_text_transform";i:1;}s:20:"section_style_button";a:8:{s:11:"button_size";i:1;s:28:"button_typography_typography";i:1;s:29:"button_typography_font_family";i:1;s:29:"button_typography_font_weight";i:1;s:32:"button_typography_text_transform";i:1;s:20:"button_border_radius";i:1;s:23:"button_hover_text_color";i:1;s:25:"button_hover_border_color";i:1;}}}}s:11:"text-editor";a:2:{s:5:"count";i:9;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:9;}}s:5:"style";a:1:{s:13:"section_style";a:8:{s:5:"align";i:9;s:21:"typography_typography";i:9;s:22:"typography_font_family";i:8;s:22:"typography_font_weight";i:9;s:10:"text_color";i:5;s:22:"typography_line_height";i:1;s:20:"typography_font_size";i:2;s:25:"typography_text_transform";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:8:"_padding";i:2;}}}}s:7:"heading";a:2:{s:5:"count";i:8;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:8;s:11:"header_size";i:4;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:5:"align";i:8;s:11:"title_color";i:8;s:21:"typography_typography";i:8;s:22:"typography_font_family";i:8;s:20:"typography_font_size";i:8;s:22:"typography_font_weight";i:8;s:25:"typography_text_transform";i:6;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:3:{s:7:"_margin";i:7;s:14:"_element_width";i:7;s:8:"_padding";i:1;}s:15:"section_effects";a:1:{s:29:"motion_fx_motion_fx_scrolling";i:1;}}}}s:23:"elementskit-dual-button";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"content";a:3:{s:18:"dualbutton_content";a:1:{s:24:"ekit_double_button_align";i:1;}s:23:"ekit_button_one_content";a:3:{s:20:"ekit_button_one_text";i:1;s:20:"ekit_button_one_link";i:1;s:29:"ekit_button_one_icons__switch";i:1;}s:23:"ekit_button_two_content";a:2:{s:20:"ekit_button_two_text";i:1;s:20:"ekit_button_two_link";i:1;}}s:5:"style";a:2:{s:36:"ekit_double_button_one_style_section";a:10:{s:28:"ekit_double_button_one_color";i:1;s:44:"ekit_double_button_one_typography_typography";i:1;s:45:"ekit_double_button_one_typography_font_family";i:1;s:43:"ekit_double_button_one_typography_font_size";i:1;s:45:"ekit_double_button_one_typography_font_weight";i:1;s:44:"ekit_double_button_one_background_background";i:1;s:39:"ekit_double_button_one_background_color";i:1;s:50:"ekit_double_button_one_hover_background_background";i:1;s:45:"ekit_double_button_one_hover_background_color";i:1;s:47:"ekit_double_button_one_hover_background_color_b";i:1;}s:36:"ekit_double_button_two_style_section";a:9:{s:44:"ekit_double_button_two_typography_typography";i:1;s:45:"ekit_double_button_two_typography_font_family";i:1;s:43:"ekit_double_button_two_typography_font_size";i:1;s:45:"ekit_double_button_two_typography_font_weight";i:1;s:44:"ekit_double_button_two_background_background";i:1;s:39:"ekit_double_button_two_background_color";i:1;s:50:"ekit_double_button_two_hover_background_background";i:1;s:45:"ekit_double_button_two_hover_background_color";i:1;s:47:"ekit_double_button_two_hover_background_color_b";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"menu-anchor";a:2:{s:5:"count";i:2;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_anchor";a:1:{s:6:"anchor";i:2;}}}}s:5:"image";a:2:{s:5:"count";i:20;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:20;s:7:"link_to";i:12;s:4:"link";i:12;s:10:"image_size";i:18;}}s:8:"advanced";a:2:{s:15:"section_effects";a:15:{s:29:"motion_fx_motion_fx_scrolling";i:17;s:17:"_animation_mobile";i:3;s:34:"motion_fx_translateY_affectedRange";i:17;s:26:"motion_fx_mouseTrack_speed";i:3;s:27:"motion_fx_translateY_effect";i:17;s:27:"motion_fx_translateX_effect";i:15;s:34:"motion_fx_translateX_affectedRange";i:16;s:31:"motion_fx_rotateZ_affectedRange";i:7;s:30:"motion_fx_translateX_direction";i:7;s:30:"motion_fx_translateY_direction";i:4;s:24:"motion_fx_rotateZ_effect";i:2;s:24:"motion_fx_tilt_direction";i:3;s:27:"motion_fx_rotateZ_direction";i:3;s:26:"motion_fx_translateY_speed";i:1;s:23:"motion_fx_rotateZ_speed";i:1;}s:14:"_section_style";a:1:{s:21:"_element_width_mobile";i:3;}}}}s:6:"spacer";a:2:{s:5:"count";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_spacer";a:2:{s:5:"space";i:1;s:16:"_ob_spacerat_use";i:1;}}}}s:9:"container";a:2:{s:5:"count";i:10;s:8:"controls";a:3:{s:6:"layout";a:2:{s:24:"section_layout_container";a:8:{s:5:"width";i:6;s:13:"content_width";i:6;s:14:"flex_direction";i:2;s:16:"flex_align_items";i:2;s:8:"flex_gap";i:2;s:11:"boxed_width";i:2;s:10:"min_height";i:2;s:20:"flex_justify_content";i:2;}s:33:"section_layout_additional_options";a:1:{s:8:"overflow";i:2;}}s:5:"style";a:1:{s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:2;s:29:"background_overlay_color_stop";i:2;s:26:"background_overlay_color_b";i:2;s:31:"background_overlay_color_b_stop";i:2;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}}}s:4:"icon";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:13:"selected_icon";i:1;}}s:5:"style";a:1:{s:18:"section_style_icon";a:2:{s:5:"align";i:1;s:13:"primary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_element_width";i:1;}}}}s:6:"button";a:2:{s:5:"count";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:5:{s:4:"text";i:1;s:13:"selected_icon";i:1;s:10:"icon_align";i:1;s:11:"icon_indent";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:9:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:16:"background_color";i:1;s:13:"border_radius";i:1;s:29:"button_background_hover_color";i:1;s:12:"align_mobile";i:1;}}}}s:14:"image-carousel";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:2:{s:22:"section_image_carousel";a:6:{s:8:"carousel";i:2;s:14:"thumbnail_size";i:2;s:14:"slides_to_show";i:2;s:7:"link_to";i:1;s:4:"link";i:1;s:26:"thumbnail_custom_dimension";i:1;}s:26:"section_additional_options";a:1:{s:14:"autoplay_speed";i:1;}}s:5:"style";a:1:{s:24:"section_style_navigation";a:9:{s:12:"arrows_color";i:1;s:10:"dots_color";i:1;s:23:"_ob_kontrolz_nav_styles";i:1;s:25:"_ob_kontrolz_nav_color_bg";i:1;s:31:"_ob_kontrolz_nav_color_bg_hover";i:1;s:30:"_ob_kontrolz_pagination_styles";i:1;s:29:"_ob_kontrolz_pagination_color";i:1;s:36:"_ob_kontrolz_pagination_color_active";i:1;s:32:"_ob_kontrolz_pagination_bord_rad";i:1;}}}}s:7:"divider";a:2:{s:5:"count";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:1;s:6:"weight";i:1;s:3:"gap";i:1;}}s:7:"content";a:1:{s:15:"section_divider";a:1:{s:5:"align";i:1;}}}}s:9:"icon-list";a:2:{s:5:"count";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:3:{s:13:"space_between";i:2;s:10:"icon_align";i:2;s:7:"divider";i:1;}s:18:"section_icon_style";a:4:{s:9:"icon_size";i:2;s:11:"text_indent";i:2;s:10:"icon_color";i:2;s:15:"icon_self_align";i:2;}s:18:"section_text_style";a:6:{s:10:"text_color";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;s:27:"icon_typography_font_weight";i:2;s:27:"icon_typography_font_family";i:1;s:16:"text_color_hover";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"counter";a:2:{s:5:"count";i:4;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_counter";a:2:{s:13:"ending_number";i:4;s:5:"title";i:4;}}s:5:"style";a:2:{s:14:"section_number";a:4:{s:12:"number_color";i:4;s:28:"typography_number_typography";i:4;s:29:"typography_number_font_family";i:4;s:29:"typography_number_font_weight";i:4;}s:13:"section_title";a:5:{s:11:"title_color";i:4;s:27:"typography_title_typography";i:4;s:28:"typography_title_font_family";i:4;s:26:"typography_title_font_size";i:4;s:28:"typography_title_font_weight";i:4;}}}}s:20:"testimonial-carousel";a:2:{s:5:"count";i:1;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:5:{s:6:"slides";i:1;s:4:"skin";i:1;s:15:"slides_per_view";i:1;s:16:"slides_to_scroll";i:1;s:6:"layout";i:1;}s:26:"section_additional_options";a:1:{s:11:"show_arrows";i:1;}}s:5:"style";a:2:{s:21:"section_content_style";a:13:{s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:30:"content_typography_font_family";i:1;s:28:"content_typography_font_size";i:1;s:30:"content_typography_font_weight";i:1;s:10:"name_color";i:1;s:26:"name_typography_typography";i:1;s:27:"name_typography_font_family";i:1;s:27:"name_typography_font_weight";i:1;s:11:"title_color";i:1;s:27:"title_typography_typography";i:1;s:28:"title_typography_font_family";i:1;s:28:"title_typography_font_weight";i:1;}s:18:"section_skin_style";a:1:{s:16:"background_color";i:1;}}}}}s:6:"header";a:9:{s:9:"icon-list";a:2:{s:5:"count";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:2;s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:2;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:2;s:11:"text_indent";i:2;}s:18:"section_text_style";a:3:{s:10:"text_color";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:2;}}}}s:6:"column";a:2:{s:5:"count";i:11;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:11;s:16:"content_position";i:6;s:5:"align";i:1;s:21:"space_between_widgets";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:2;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:12:"social-icons";a:2:{s:5:"count";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:2;s:5:"align";i:2;s:12:"align_mobile";i:2;}}s:5:"style";a:1:{s:20:"section_social_style";a:4:{s:10:"icon_color";i:2;s:18:"icon_primary_color";i:2;s:20:"icon_secondary_color";i:2;s:9:"icon_size";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;}}}}s:7:"section";a:2:{s:5:"count";i:6;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:1:{s:13:"content_width";i:4;}s:17:"section_structure";a:1:{s:9:"structure";i:3;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:4;s:16:"background_color";i:2;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:2;s:21:"box_shadow_box_shadow";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:2;s:6:"margin";i:4;s:7:"z_index";i:2;}}}}s:8:"icon-box";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:4:{s:13:"selected_icon";i:2;s:10:"title_text";i:2;s:16:"description_text";i:2;s:4:"link";i:2;}}s:5:"style";a:3:{s:17:"section_style_box";a:4:{s:8:"position";i:2;s:10:"icon_space";i:2;s:10:"text_align";i:2;s:18:"title_bottom_space";i:2;}s:18:"section_style_icon";a:2:{s:13:"primary_color";i:2;s:9:"icon_size";i:2;}s:21:"section_style_content";a:10:{s:11:"title_color";i:2;s:27:"title_typography_typography";i:2;s:28:"title_typography_font_family";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;s:17:"description_color";i:2;s:33:"description_typography_typography";i:2;s:34:"description_typography_font_family";i:2;s:32:"description_typography_font_size";i:2;s:34:"description_typography_font_weight";i:2;}}}}s:5:"image";a:2:{s:5:"count";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:8:"nav-menu";a:2:{s:5:"count";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_layout";a:3:{s:11:"align_items";i:2;s:7:"pointer";i:2;s:12:"submenu_icon";i:2;}}s:5:"style";a:2:{s:23:"section_style_main-menu";a:11:{s:26:"menu_typography_typography";i:2;s:27:"menu_typography_font_family";i:2;s:25:"menu_typography_font_size";i:2;s:27:"menu_typography_font_weight";i:2;s:30:"menu_typography_text_transform";i:2;s:28:"padding_horizontal_menu_item";i:2;s:26:"padding_vertical_menu_item";i:2;s:18:"menu_space_between";i:2;s:15:"color_menu_item";i:2;s:21:"color_menu_item_hover";i:2;s:22:"color_menu_item_active";i:2;}s:12:"style_toggle";a:1:{s:12:"toggle_color";i:2;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:28:"_background_hover_background";i:2;}s:14:"_section_style";a:1:{s:8:"_padding";i:2;}}}}s:23:"elementskit-header-info";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:16:"ekit_header_info";a:1:{s:21:"ekit_headerinfo_group";i:1;}}s:5:"style";a:1:{s:22:"ekit_header_icon_style";a:4:{s:20:"ekit_info_text_color";i:1;s:41:"elementskit_content_typography_typography";i:1;s:40:"elementskit_content_typography_font_size";i:1;s:42:"elementskit_content_typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:15:"theme-site-logo";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"general";a:1:{s:11:"__dynamic__";a:1:{s:5:"count";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:4:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;s:21:"_element_width_mobile";i:1;}}s:7:"content";a:1:{s:13:"section_image";a:1:{s:5:"image";i:1;}}}}}s:7:"wp-page";a:26:{s:6:"column";a:2:{s:5:"count";i:99;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:91;s:16:"content_position";i:38;s:5:"align";i:24;s:21:"space_between_widgets";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:6:"margin";i:11;s:7:"padding";i:47;}s:15:"section_effects";a:3:{s:34:"motion_fx_translateY_affectedRange";i:6;s:34:"motion_fx_translateX_affectedRange";i:6;s:29:"motion_fx_motion_fx_scrolling";i:10;}}s:5:"style";a:2:{s:13:"section_style";a:7:{s:21:"background_background";i:5;s:16:"background_image";i:6;s:19:"background_position";i:6;s:17:"background_repeat";i:6;s:15:"background_size";i:6;s:16:"background_color";i:1;s:27:"background_hover_transition";i:1;}s:26:"section_background_overlay";a:2:{s:29:"background_overlay_background";i:5;s:26:"background_overlay_opacity";i:5;}}}}s:7:"section";a:2:{s:5:"count";i:63;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:10:{s:6:"layout";i:35;s:16:"content_position";i:35;s:15:"stretch_section";i:25;s:6:"height";i:23;s:13:"custom_height";i:25;s:3:"gap";i:24;s:13:"content_width";i:2;s:15:"column_position";i:16;s:8:"overflow";i:17;s:6:"_title";i:5;}s:17:"section_structure";a:1:{s:9:"structure";i:30;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:4:{s:6:"margin";i:38;s:7:"padding";i:40;s:7:"z_index";i:2;s:11:"_element_id";i:5;}s:19:"_section_responsive";a:5:{s:11:"hide_mobile";i:4;s:12:"hide_desktop";i:4;s:11:"hide_tablet";i:4;s:20:"reverse_order_mobile";i:7;s:20:"reverse_order_tablet";i:3;}}s:5:"style";a:3:{s:18:"section_background";a:16:{s:21:"background_background";i:36;s:16:"background_image";i:21;s:19:"background_position";i:22;s:21:"background_attachment";i:18;s:17:"background_repeat";i:22;s:15:"background_size";i:22;s:16:"background_color";i:19;s:21:"background_color_stop";i:2;s:18:"background_color_b";i:3;s:23:"background_color_b_stop";i:1;s:40:"background_motion_fx_motion_fx_scrolling";i:4;s:38:"background_motion_fx_mouseTrack_effect";i:4;s:37:"background_motion_fx_mouseTrack_speed";i:4;s:19:"background_bg_width";i:4;s:27:"background_hover_transition";i:1;s:24:"background_gradient_type";i:1;}s:26:"section_background_overlay";a:3:{s:29:"background_overlay_background";i:4;s:26:"background_overlay_opacity";i:4;s:24:"background_overlay_color";i:2;}s:21:"section_shape_divider";a:6:{s:17:"shape_divider_top";i:4;s:23:"shape_divider_top_width";i:4;s:24:"shape_divider_top_height";i:4;s:26:"shape_divider_bottom_width";i:2;s:27:"shape_divider_bottom_height";i:2;s:23:"shape_divider_top_color";i:2;}}}}s:6:"slides";a:2:{s:5:"count";i:3;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:2:{s:6:"slides";i:3;s:13:"slides_height";i:3;}s:22:"section_slider_options";a:2:{s:14:"autoplay_speed";i:2;s:10:"navigation";i:1;}}s:5:"style";a:4:{s:20:"section_style_slides";a:2:{s:17:"content_max_width";i:1;s:26:"slides_horizontal_position";i:1;}s:19:"section_style_title";a:4:{s:29:"heading_typography_typography";i:1;s:30:"heading_typography_font_family";i:1;s:30:"heading_typography_font_weight";i:1;s:33:"heading_typography_text_transform";i:1;}s:20:"section_style_button";a:8:{s:11:"button_size";i:1;s:28:"button_typography_typography";i:1;s:29:"button_typography_font_family";i:1;s:29:"button_typography_font_weight";i:1;s:32:"button_typography_text_transform";i:1;s:20:"button_border_radius";i:1;s:23:"button_hover_text_color";i:1;s:25:"button_hover_border_color";i:1;}s:24:"section_style_navigation";a:1:{s:9:"dots_size";i:1;}}}}s:11:"text-editor";a:2:{s:5:"count";i:42;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:42;}}s:5:"style";a:1:{s:13:"section_style";a:8:{s:5:"align";i:19;s:21:"typography_typography";i:37;s:22:"typography_font_family";i:35;s:22:"typography_font_weight";i:37;s:10:"text_color";i:34;s:22:"typography_line_height";i:12;s:20:"typography_font_size";i:13;s:25:"typography_text_transform";i:4;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:6;s:8:"_padding";i:14;s:9:"_position";i:1;}}}}s:7:"heading";a:2:{s:5:"count";i:32;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:32;s:11:"header_size";i:9;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:11:{s:5:"align";i:24;s:11:"title_color";i:32;s:21:"typography_typography";i:29;s:22:"typography_font_family";i:27;s:20:"typography_font_size";i:24;s:22:"typography_font_weight";i:27;s:25:"typography_text_transform";i:11;s:22:"typography_line_height";i:6;s:28:"text_shadow_text_shadow_type";i:4;s:23:"text_shadow_text_shadow";i:1;s:16:"_ob_use_harakiri";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:3:{s:7:"_margin";i:13;s:14:"_element_width";i:13;s:8:"_padding";i:2;}s:15:"section_effects";a:1:{s:29:"motion_fx_motion_fx_scrolling";i:2;}}}}s:23:"elementskit-dual-button";a:2:{s:5:"count";i:2;s:8:"controls";a:3:{s:7:"content";a:3:{s:18:"dualbutton_content";a:1:{s:24:"ekit_double_button_align";i:2;}s:23:"ekit_button_one_content";a:3:{s:20:"ekit_button_one_text";i:2;s:20:"ekit_button_one_link";i:2;s:29:"ekit_button_one_icons__switch";i:2;}s:23:"ekit_button_two_content";a:2:{s:20:"ekit_button_two_text";i:2;s:20:"ekit_button_two_link";i:2;}}s:5:"style";a:2:{s:36:"ekit_double_button_one_style_section";a:10:{s:28:"ekit_double_button_one_color";i:2;s:44:"ekit_double_button_one_typography_typography";i:2;s:45:"ekit_double_button_one_typography_font_family";i:2;s:43:"ekit_double_button_one_typography_font_size";i:2;s:45:"ekit_double_button_one_typography_font_weight";i:2;s:44:"ekit_double_button_one_background_background";i:2;s:39:"ekit_double_button_one_background_color";i:2;s:50:"ekit_double_button_one_hover_background_background";i:2;s:45:"ekit_double_button_one_hover_background_color";i:2;s:47:"ekit_double_button_one_hover_background_color_b";i:2;}s:36:"ekit_double_button_two_style_section";a:9:{s:44:"ekit_double_button_two_typography_typography";i:2;s:45:"ekit_double_button_two_typography_font_family";i:2;s:43:"ekit_double_button_two_typography_font_size";i:2;s:45:"ekit_double_button_two_typography_font_weight";i:2;s:44:"ekit_double_button_two_background_background";i:2;s:39:"ekit_double_button_two_background_color";i:2;s:50:"ekit_double_button_two_hover_background_background";i:2;s:45:"ekit_double_button_two_hover_background_color";i:2;s:47:"ekit_double_button_two_hover_background_color_b";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:11:"menu-anchor";a:2:{s:5:"count";i:4;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_anchor";a:1:{s:6:"anchor";i:4;}}}}s:5:"image";a:2:{s:5:"count";i:50;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:50;s:7:"link_to";i:24;s:4:"link";i:24;s:10:"image_size";i:37;}}s:8:"advanced";a:2:{s:15:"section_effects";a:15:{s:29:"motion_fx_motion_fx_scrolling";i:34;s:17:"_animation_mobile";i:6;s:34:"motion_fx_translateY_affectedRange";i:34;s:26:"motion_fx_mouseTrack_speed";i:6;s:27:"motion_fx_translateY_effect";i:34;s:27:"motion_fx_translateX_effect";i:30;s:34:"motion_fx_translateX_affectedRange";i:32;s:31:"motion_fx_rotateZ_affectedRange";i:14;s:30:"motion_fx_translateX_direction";i:14;s:30:"motion_fx_translateY_direction";i:8;s:24:"motion_fx_rotateZ_effect";i:4;s:24:"motion_fx_tilt_direction";i:6;s:27:"motion_fx_rotateZ_direction";i:6;s:26:"motion_fx_translateY_speed";i:2;s:23:"motion_fx_rotateZ_speed";i:2;}s:14:"_section_style";a:1:{s:21:"_element_width_mobile";i:6;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:5:"align";i:1;s:5:"width";i:1;s:5:"space";i:1;}}}}s:6:"spacer";a:2:{s:5:"count";i:6;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_spacer";a:2:{s:5:"space";i:2;s:16:"_ob_spacerat_use";i:2;}}}}s:9:"container";a:2:{s:5:"count";i:28;s:8:"controls";a:3:{s:6:"layout";a:2:{s:24:"section_layout_container";a:11:{s:5:"width";i:16;s:13:"content_width";i:16;s:14:"flex_direction";i:9;s:16:"flex_align_items";i:4;s:8:"flex_gap";i:5;s:11:"boxed_width";i:4;s:10:"min_height";i:4;s:20:"flex_justify_content";i:4;s:14:"container_type";i:1;s:17:"grid_columns_grid";i:1;s:14:"grid_rows_grid";i:1;}s:33:"section_layout_additional_options";a:1:{s:8:"overflow";i:4;}}s:5:"style";a:3:{s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:4;s:29:"background_overlay_color_stop";i:4;s:26:"background_overlay_color_b";i:4;s:31:"background_overlay_color_b_stop";i:4;}s:18:"section_background";a:4:{s:21:"background_background";i:2;s:16:"background_color";i:1;s:18:"background_color_b";i:1;s:16:"background_image";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:2:{s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:2;s:12:"hide_desktop";i:2;s:11:"hide_tablet";i:2;}s:14:"section_layout";a:1:{s:6:"margin";i:1;}}}}s:4:"icon";a:2:{s:5:"count";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:13:"selected_icon";i:2;}}s:5:"style";a:1:{s:18:"section_style_icon";a:2:{s:5:"align";i:2;s:13:"primary_color";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_element_width";i:2;}}}}s:6:"button";a:2:{s:5:"count";i:8;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:6:{s:4:"text";i:8;s:13:"selected_icon";i:7;s:10:"icon_align";i:2;s:11:"icon_indent";i:2;s:4:"link";i:8;s:4:"size";i:5;}}s:5:"style";a:2:{s:13:"section_style";a:13:{s:5:"align";i:7;s:21:"typography_typography";i:3;s:22:"typography_font_family";i:3;s:22:"typography_font_weight";i:3;s:25:"typography_text_transform";i:2;s:16:"background_color";i:8;s:13:"border_radius";i:2;s:29:"button_background_hover_color";i:2;s:12:"align_mobile";i:2;s:17:"button_text_color";i:1;s:13:"border_border";i:1;s:33:"button_box_shadow_box_shadow_type";i:1;s:28:"button_box_shadow_box_shadow";i:1;}s:16:"_ob_butterbutton";a:1:{s:23:"_ob_butterbutton_use_it";i:1;}}}}s:14:"image-carousel";a:2:{s:5:"count";i:4;s:8:"controls";a:2:{s:7:"content";a:2:{s:22:"section_image_carousel";a:8:{s:8:"carousel";i:4;s:14:"thumbnail_size";i:4;s:14:"slides_to_show";i:4;s:7:"link_to";i:3;s:4:"link";i:3;s:26:"thumbnail_custom_dimension";i:1;s:21:"slides_to_show_mobile";i:2;s:10:"navigation";i:1;}s:26:"section_additional_options";a:1:{s:14:"autoplay_speed";i:3;}}s:5:"style";a:1:{s:24:"section_style_navigation";a:9:{s:12:"arrows_color";i:1;s:10:"dots_color";i:1;s:23:"_ob_kontrolz_nav_styles";i:1;s:25:"_ob_kontrolz_nav_color_bg";i:1;s:31:"_ob_kontrolz_nav_color_bg_hover";i:1;s:30:"_ob_kontrolz_pagination_styles";i:1;s:29:"_ob_kontrolz_pagination_color";i:1;s:36:"_ob_kontrolz_pagination_color_active";i:1;s:32:"_ob_kontrolz_pagination_bord_rad";i:1;}}}}s:7:"divider";a:2:{s:5:"count";i:5;s:8:"controls";a:3:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:5;s:6:"weight";i:1;s:3:"gap";i:1;}}s:7:"content";a:1:{s:15:"section_divider";a:1:{s:5:"align";i:1;}}s:8:"advanced";a:1:{s:18:"section_custom_css";a:1:{s:10:"custom_css";i:1;}}}}s:9:"icon-list";a:2:{s:5:"count";i:4;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:9:"icon_list";i:4;s:4:"view";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:3:{s:13:"space_between";i:4;s:10:"icon_align";i:3;s:7:"divider";i:1;}s:18:"section_icon_style";a:4:{s:9:"icon_size";i:3;s:11:"text_indent";i:4;s:10:"icon_color";i:4;s:15:"icon_self_align";i:3;}s:18:"section_text_style";a:6:{s:10:"text_color";i:4;s:26:"icon_typography_typography";i:4;s:25:"icon_typography_font_size";i:4;s:27:"icon_typography_font_weight";i:3;s:27:"icon_typography_font_family";i:1;s:16:"text_color_hover";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:7:"counter";a:2:{s:5:"count";i:7;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_counter";a:2:{s:13:"ending_number";i:7;s:5:"title";i:7;}}s:5:"style";a:2:{s:14:"section_number";a:4:{s:12:"number_color";i:7;s:28:"typography_number_typography";i:7;s:29:"typography_number_font_family";i:7;s:29:"typography_number_font_weight";i:7;}s:13:"section_title";a:5:{s:11:"title_color";i:7;s:27:"typography_title_typography";i:7;s:28:"typography_title_font_family";i:7;s:26:"typography_title_font_size";i:7;s:28:"typography_title_font_weight";i:7;}}}}s:20:"testimonial-carousel";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:5:{s:6:"slides";i:2;s:4:"skin";i:2;s:15:"slides_per_view";i:2;s:16:"slides_to_scroll";i:2;s:6:"layout";i:2;}s:26:"section_additional_options";a:1:{s:11:"show_arrows";i:2;}}s:5:"style";a:2:{s:21:"section_content_style";a:13:{s:13:"content_color";i:2;s:29:"content_typography_typography";i:2;s:30:"content_typography_font_family";i:2;s:28:"content_typography_font_size";i:2;s:30:"content_typography_font_weight";i:2;s:10:"name_color";i:2;s:26:"name_typography_typography";i:2;s:27:"name_typography_font_family";i:2;s:27:"name_typography_font_weight";i:2;s:11:"title_color";i:2;s:27:"title_typography_typography";i:2;s:28:"title_typography_font_family";i:2;s:28:"title_typography_font_weight";i:2;}s:18:"section_skin_style";a:1:{s:16:"background_color";i:2;}}}}s:4:"form";a:2:{s:5:"count";i:1;s:8:"controls";a:1:{s:7:"content";a:6:{s:19:"section_form_fields";a:3:{s:9:"form_name";i:1;s:11:"form_fields";i:1;s:10:"input_size";i:1;}s:15:"section_buttons";a:1:{s:11:"button_size";i:1;}s:19:"section_integration";a:1:{s:14:"submit_actions";i:1;}s:13:"section_email";a:4:{s:8:"email_to";i:1;s:13:"email_subject";i:1;s:10:"email_from";i:1;s:15:"email_from_name";i:1;}s:15:"section_email_2";a:1:{s:12:"email_from_2";i:1;}s:16:"section_redirect";a:1:{s:11:"redirect_to";i:1;}}}}s:11:"google_maps";a:2:{s:5:"count";i:1;s:8:"controls";a:1:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}}}s:11:"testimonial";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_testimonial";a:4:{s:19:"testimonial_content";i:2;s:16:"testimonial_name";i:2;s:15:"testimonial_job";i:2;s:17:"testimonial_image";i:2;}}s:5:"style";a:3:{s:33:"section_style_testimonial_content";a:4:{s:21:"content_content_color";i:1;s:29:"content_typography_typography";i:2;s:30:"content_typography_font_family";i:2;s:30:"content_typography_font_weight";i:2;}s:30:"section_style_testimonial_name";a:1:{s:15:"name_text_color";i:2;}s:29:"section_style_testimonial_job";a:1:{s:14:"job_text_color";i:2;}}}}s:20:"elementskit-icon-box";a:2:{s:5:"count";i:4;s:8:"controls";a:2:{s:7:"content";a:3:{s:13:"ekit_icon_box";a:4:{s:24:"ekit_icon_box_title_text";i:4;s:30:"ekit_icon_box_description_text";i:4;s:26:"ekit_icon_box_header_image";i:4;s:26:"ekit_icon_box_header_icons";i:4;}s:28:"ekit_icon_box_section_button";a:2:{s:24:"ekit_icon_box_enable_btn";i:4;s:24:"ekit_icon_box_icon_align";i:4;}s:30:"ekit_icon_box_section_settings";a:1:{s:27:"ekit_icon_box_icon_position";i:4;}}s:5:"style";a:4:{s:38:"ekit_icon_box_section_background_style";a:7:{s:32:"ekit_icon_box_infobox_bg_padding";i:4;s:41:"ekit_icon_box_infobox_bg_group_background";i:4;s:36:"ekit_icon_box_infobox_bg_group_color";i:4;s:40:"ekit_icon_box_iocnbox_border_group_width";i:4;s:40:"ekit_icon_box_iocnbox_border_group_color";i:4;s:47:"ekit_icon_box_infobox_bg_hover_group_background";i:4;s:42:"ekit_icon_box_infobox_bg_hover_group_color";i:4;}s:32:"ekit_icon_box_section_style_icon";a:10:{s:32:"ekit_icon_box_icon_primary_color";i:4;s:24:"ekit_icon_box_icon_space";i:4;s:26:"ekit_icon_box_border_width";i:4;s:26:"ekit_icon_box_border_color";i:4;s:32:"ekit_icon_box_icon_border_radius";i:4;s:33:"ekit_icon_box_hover_primary_color";i:4;s:37:"ekit_icon_box_border_icon_group_width";i:4;s:37:"ekit_icon_box_border_icon_group_color";i:4;s:30:"ekit_icon_box_icon_line_height";i:4;s:33:"ekit_icon_box_icon_vertical_align";i:4;}s:31:"ekit_icon_section_style_content";a:8:{s:28:"ekit_icon_title_bottom_space";i:4;s:43:"ekit_icon_title_typography_group_typography";i:4;s:42:"ekit_icon_title_typography_group_font_size";i:4;s:20:"ekit_icon_box_margin";i:4;s:21:"ekit_icon_title_color";i:4;s:27:"ekit_icon_title_color_hover";i:4;s:27:"ekit_icon_description_color";i:4;s:33:"ekit_icon_description_color_hover";i:4;}s:37:"ekit_icon_box_section_bg_ovelry_style";a:1:{s:24:"ekit_icon_box_show_image";i:4;}}}}s:19:"elementskit-heading";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"content";a:3:{s:26:"ekit_heading_section_title";a:1:{s:18:"ekit_heading_title";i:1;}s:32:"ekit_heading_section_extra_title";a:2:{s:37:"ekit_heading_section_extra_title_show";i:1;s:24:"ekit_heading_extra_title";i:1;}s:30:"ekit_heading_section_seperator";a:1:{s:28:"ekit_heading_seperator_image";i:1;}}s:5:"style";a:3:{s:28:"ekit_heading_section_general";a:1:{s:24:"ekit_heading_title_align";i:1;}s:32:"ekit_heading_section_title_style";a:4:{s:25:"ekit_heading_title_margin";i:1;s:40:"ekit_heading_title_typography_typography";i:1;s:41:"ekit_heading_title_typography_font_family";i:1;s:39:"ekit_heading_title_typography_font_size";i:1;}s:36:"ekit_heading_section_seperator_style";a:1:{s:28:"ekit_heading_seperator_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:13:"image-gallery";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_gallery";a:5:{s:10:"wp_gallery";i:2;s:14:"thumbnail_size";i:2;s:15:"gallery_columns";i:2;s:23:"gallery_display_caption";i:2;s:12:"gallery_link";i:2;}}s:5:"style";a:1:{s:22:"section_gallery_images";a:1:{s:13:"image_spacing";i:2;}}}}s:21:"elementskit-image-box";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:3:{s:39:"ekit_image_box_section_infoboxwithimage";a:1:{s:20:"ekit_image_box_image";i:2;}s:38:"ekit_image_box_section_for_image_title";a:3:{s:25:"ekit_image_box_title_text";i:2;s:25:"ekit_image_box_title_size";i:2;s:31:"ekit_image_box_description_text";i:2;}s:29:"ekit_image_box_section_button";a:4:{s:23:"ekit_image_box_btn_text";i:2;s:28:"ekit_image_box_icons__switch";i:2;s:22:"ekit_image_box_btn_url";i:2;s:25:"ekit_image_box_icon_align";i:1;}}s:5:"style";a:2:{s:33:"ekit_image_box_style_body_section";a:9:{s:42:"ekit_image_box_title_typography_typography";i:2;s:41:"ekit_image_box_title_typography_font_size";i:2;s:28:"ekit_image_box_heading_color";i:2;s:54:"ekit_image_box_title_typography_description_typography";i:2;s:55:"ekit_image_box_title_typography_description_font_family";i:2;s:55:"ekit_image_box_title_typography_description_font_weight";i:2;s:40:"ekit_image_box_heading_color_description";i:2;s:34:"ekit_image_box_heading_color_hover";i:2;s:45:"ekit_image_box_title_bottom_space_description";i:1;}s:28:"ekit_image_box_section_style";a:3:{s:46:"ekit_image_box_btn_background_group_background";i:2;s:41:"ekit_image_box_btn_background_group_color";i:2;s:42:"ekit_image_box_typography_group_typography";i:1;}}}}s:12:"social-icons";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"align";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:4:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;}}}}s:9:"shortcode";a:2:{s:5:"count";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:17:"section_shortcode";a:1:{s:9:"shortcode";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:8:"_padding";i:1;}}}}}s:6:"footer";a:9:{s:5:"image";a:2:{s:5:"count";i:1;s:8:"controls";a:4:{s:7:"general";a:1:{s:11:"__dynamic__";a:1:{s:5:"count";i:1;}}s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:5:"width";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:11:"text-editor";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:2;s:5:"align";i:2;}}}}s:6:"column";a:2:{s:5:"count";i:6;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:7:"heading";a:2:{s:5:"count";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;s:22:"typography_font_family";i:3;}}}}s:7:"divider";a:2:{s:5:"count";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_divider";a:1:{s:5:"width";i:2;}}s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:6:"weight";i:2;s:3:"gap";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:9:"icon-list";a:2:{s:5:"count";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:3:{s:13:"space_between";i:2;s:10:"icon_align";i:2;s:17:"icon_align_mobile";i:1;}s:18:"section_icon_style";a:4:{s:9:"icon_size";i:2;s:11:"text_indent";i:2;s:10:"icon_color";i:2;s:15:"icon_self_align";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;s:27:"icon_typography_font_weight";i:2;s:27:"icon_typography_font_family";i:1;}}}}s:4:"form";a:2:{s:5:"count";i:1;s:8:"controls";a:2:{s:7:"content";a:5:{s:19:"section_form_fields";a:4:{s:9:"form_name";i:1;s:11:"form_fields";i:1;s:11:"show_labels";i:1;s:10:"input_size";i:1;}s:15:"section_buttons";a:4:{s:11:"button_text";i:1;s:12:"button_width";i:1;s:11:"button_size";i:1;s:20:"selected_button_icon";i:1;}s:20:"section_form_options";a:4:{s:15:"success_message";i:1;s:13:"error_message";i:1;s:22:"required_field_message";i:1;s:15:"invalid_message";i:1;}s:13:"section_email";a:3:{s:8:"email_to";i:1;s:13:"email_subject";i:1;s:10:"email_from";i:1;}s:15:"section_email_2";a:2:{s:15:"email_subject_2";i:1;s:12:"email_from_2";i:1;}}s:5:"style";a:3:{s:18:"section_form_style";a:5:{s:10:"column_gap";i:1;s:7:"row_gap";i:1;s:11:"label_color";i:1;s:27:"label_typography_typography";i:1;s:26:"label_typography_font_size";i:1;}s:19:"section_field_style";a:8:{s:16:"field_text_color";i:1;s:27:"field_typography_typography";i:1;s:26:"field_typography_font_size";i:1;s:28:"field_typography_font_weight";i:1;s:18:"field_border_width";i:1;s:19:"field_border_radius";i:1;s:22:"field_background_color";i:1;s:18:"field_border_color";i:1;}s:20:"section_button_style";a:7:{s:23:"button_background_color";i:1;s:28:"button_typography_typography";i:1;s:27:"button_typography_font_size";i:1;s:29:"button_typography_font_weight";i:1;s:32:"button_typography_text_transform";i:1;s:20:"button_border_radius";i:1;s:29:"button_background_hover_color";i:1;}}}}s:7:"section";a:2:{s:5:"count";i:3;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:14:"section_layout";a:4:{s:16:"content_position";i:1;s:8:"html_tag";i:1;s:6:"layout";i:1;s:15:"stretch_section";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:2;s:7:"padding";i:3;}}s:5:"style";a:3:{s:18:"section_background";a:9:{s:21:"background_background";i:2;s:16:"background_color";i:2;s:18:"background_color_b";i:1;s:25:"background_gradient_angle";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:21:"background_attachment";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:1;s:24:"background_overlay_color";i:1;s:26:"background_overlay_color_b";i:1;s:26:"background_overlay_opacity";i:1;}}}}s:12:"social-icons";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"align";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:4:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;}}}}}}', 'off'),
(63560, '_elementor_assets_data', 'a:1:{s:3:"svg";a:1:{s:9:"font-icon";a:9:{s:9:"far-clock";a:2:{s:7:"content";a:4:{s:5:"width";i:512;s:6:"height";i:512;s:4:"path";s:324:"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z";s:3:"key";s:9:"far-clock";}s:7:"version";s:6:"5.15.3";}s:12:"fab-whatsapp";a:2:{s:7:"content";a:4:{s:5:"width";i:448;s:6:"height";i:512;s:4:"path";s:886:"M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z";s:3:"key";s:12:"fab-whatsapp";}s:7:"version";s:6:"5.15.3";}s:18:"fas-map-marker-alt";a:2:{s:7:"content";a:4:{s:5:"width";i:384;s:6:"height";i:512;s:4:"path";s:244:"M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z";s:3:"key";s:18:"fas-map-marker-alt";}s:7:"version";s:6:"5.15.3";}s:14:"eicon-menu-bar";a:2:{s:7:"content";a:4:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"path";s:279:"M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z";s:3:"key";s:14:"eicon-menu-bar";}s:7:"version";s:6:"5.13.0";}s:11:"eicon-close";a:2:{s:7:"content";a:4:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"path";s:361:"M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z";s:3:"key";s:11:"eicon-close";}s:7:"version";s:6:"5.13.0";}s:18:"eicon-chevron-left";a:2:{s:7:"content";a:4:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"path";s:281:"M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z";s:3:"key";s:18:"eicon-chevron-left";}s:7:"version";s:6:"5.13.0";}s:19:"eicon-chevron-right";a:2:{s:7:"content";a:4:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"path";s:281:"M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z";s:3:"key";s:19:"eicon-chevron-right";}s:7:"version";s:6:"5.13.0";}s:18:"fab-telegram-plane";a:2:{s:7:"content";a:4:{s:5:"width";i:448;s:6:"height";i:512;s:4:"path";s:240:"M446.7 98.6l-67.6 318.8c-5.1 22.5-18.4 28.1-37.3 17.5l-103-75.9-49.7 47.8c-5.5 5.5-10.1 10.1-20.7 10.1l7.4-104.9 190.9-172.5c8.3-7.4-1.8-11.5-12.9-4.1L117.8 284 16.2 252.2c-22.1-6.9-22.5-22.1 4.6-32.7L418.2 66.4c18.4-6.9 34.5 4.1 28.5 32.2z";s:3:"key";s:18:"fab-telegram-plane";}s:7:"version";s:6:"5.15.3";}s:12:"far-comments";a:2:{s:7:"content";a:4:{s:5:"width";i:576;s:6:"height";i:512;s:4:"path";s:891:"M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z";s:3:"key";s:12:"far-comments";}s:7:"version";s:6:"5.15.3";}}}}', 'auto'),
(63562, 'litespeed.task.async_call-hash', '{"hash":"CtnJxwp251O4XU9VsvfTXboS6ziAgoJ8","ts":1742974986}', 'auto'),
(63569, 'wp-optimize-installed-for', '1742975016', 'auto'),
(63570, 'wp-optimize-newly-activated', '1', 'auto'),
(63571, 'wp-optimize-schedule', 'false', 'auto'),
(63572, 'wp-optimize-last-optimized', 'Never', 'auto'),
(63573, 'wp-optimize-schedule-type', 'wpo_weekly', 'auto'),
(63574, 'wp-optimize-retention-enabled', 'false', 'auto'),
(63575, 'wp-optimize-retention-period', '2', 'auto'),
(63576, 'wp-optimize-enable-admin-menu', 'false', 'auto'),
(63577, 'wp-optimize-total-cleaned', '0', 'auto'),
(63578, 'wp-optimize-auto', 'a:8:{s:6:"drafts";s:4:"true";s:8:"optimize";s:5:"false";s:9:"revisions";s:4:"true";s:5:"spams";s:4:"true";s:9:"transient";s:5:"false";s:5:"trash";s:4:"true";s:10:"unapproved";s:5:"false";s:8:"usermeta";s:5:"false";}', 'auto'),
(63579, 'wp-optimize-settings', 'a:17:{s:16:"user-attachments";s:5:"false";s:11:"user-drafts";s:4:"true";s:16:"user-commentmeta";s:5:"false";s:13:"user-optimize";s:4:"true";s:15:"user-orphandata";s:5:"false";s:19:"user-orphanedtables";s:4:"true";s:14:"user-pingbacks";s:5:"false";s:13:"user-postmeta";s:5:"false";s:17:"user-repairtables";s:4:"true";s:14:"user-revisions";s:4:"true";s:10:"user-spams";s:4:"true";s:15:"user-trackbacks";s:5:"false";s:14:"user-transient";s:5:"false";s:10:"user-trash";s:4:"true";s:15:"user-unapproved";s:4:"true";s:13:"user-usermeta";s:5:"false";s:13:"last_saved_in";s:5:"4.1.1";}', 'auto'),
(63580, 'wpo_minify_config', 'a:59:{s:5:"debug";b:0;s:19:"enabled_css_preload";b:0;s:18:"enabled_js_preload";b:0;s:11:"hpreconnect";s:0:"";s:8:"hpreload";s:0:"";s:7:"loadcss";b:0;s:10:"remove_css";b:0;s:17:"critical_path_css";s:0:"";s:31:"critical_path_css_is_front_page";s:0:"";s:30:"preserve_settings_on_uninstall";b:1;s:22:"disable_when_logged_in";b:0;s:16:"default_protocol";s:7:"dynamic";s:17:"html_minification";b:1;s:16:"clean_header_one";b:0;s:13:"emoji_removal";b:1;s:18:"merge_google_fonts";b:1;s:19:"enable_display_swap";b:1;s:18:"remove_googlefonts";b:0;s:31:"disable_google_fonts_processing";b:0;s:13:"gfonts_method";s:7:"inherit";s:15:"fawesome_method";s:7:"inherit";s:10:"enable_css";b:1;s:23:"enable_css_minification";b:1;s:21:"enable_merging_of_css";b:1;s:23:"remove_print_mediatypes";b:0;s:10:"inline_css";b:0;s:9:"enable_js";b:1;s:22:"enable_js_minification";b:1;s:20:"enable_merging_of_js";b:1;s:15:"enable_defer_js";s:10:"individual";s:13:"defer_js_type";s:5:"defer";s:12:"defer_jquery";b:1;s:18:"enable_js_trycatch";b:0;s:19:"exclude_defer_login";b:1;s:7:"cdn_url";s:0:"";s:9:"cdn_force";b:0;s:15:"enable_delay_js";b:0;s:17:"enable_preload_js";b:0;s:16:"exclude_delay_js";s:0:"";s:9:"async_css";s:0:"";s:8:"async_js";s:0:"";s:24:"disable_css_inline_merge";b:1;s:6:"ualist";a:5:{i:0;s:9:"Googlebot";i:1;s:17:"Chrome-Lighthouse";i:2;s:8:"GTmetrix";i:3;s:14:"HeadlessChrome";i:4;s:7:"Pingdom";}s:32:"exclude_js_from_page_speed_tools";b:0;s:33:"exclude_css_from_page_speed_tools";b:0;s:9:"blacklist";a:0:{}s:11:"ignore_list";a:0:{}s:10:"exclude_js";s:0:"";s:11:"exclude_css";s:0:"";s:23:"edit_default_exclutions";b:0;s:18:"merge_allowed_urls";s:0:"";s:7:"enabled";b:0;s:17:"last-cache-update";i:1742975016;s:14:"plugin_version";s:5:"0.0.0";s:14:"cache_lifespan";i:30;s:25:"merge_inline_extra_css_js";b:1;s:16:"enable_analytics";b:0;s:16:"analytics_method";s:6:"gtagv4";s:11:"tracking_id";s:0:"";}', 'auto');
INSERT INTO `wpiq_options` VALUES
(63581, 'updraft_task_manager_plugins', 'a:1:{i:0;s:27:"wp-optimize/wp-optimize.php";}', 'auto'),
(63582, 'updraft_task_manager_dbversion', '1.1', 'auto'),
(63583, 'wp-optimize-compression_server', 'resmushit', 'auto'),
(63584, 'wp-optimize-image_quality', '92', 'auto'),
(63585, 'wp-optimize-back_up_original', '1', 'auto'),
(63586, 'wp-optimize-back_up_delete_after', '1', 'auto'),
(63587, 'wp-optimize-back_up_delete_after_days', '50', 'auto'),
(63588, 'wpo_update_version', '4.1.1', 'auto'),
(63590, 'wp-optimize-install-or-update-notice-show-time', '1742975033', 'auto'),
(63593, 'updraft_lock_wpo_page_cache_preloader_creating_tasks', '0', 'no'),
(63594, 'wp-optimize-is_gzip_compression_enabled', 'brotli', 'auto'),
(63595, 'updraft_lock_wpo_minify_preloader_creating_tasks', '0', 'no'),
(63598, 'wp-optimize-corrupted-tables-count', '0', 'auto'),
(63601, 'wpo_cache_config', 'a:29:{s:19:"enable_page_caching";b:1;s:23:"page_cache_length_value";i:24;s:22:"page_cache_length_unit";s:5:"hours";s:17:"page_cache_length";i:86400;s:32:"cache_exception_conditional_tags";a:1:{i:0;s:0:"";}s:20:"cache_exception_urls";a:1:{i:0;s:0:"";}s:23:"cache_exception_cookies";a:1:{i:0;s:0:"";}s:30:"cache_exception_browser_agents";a:1:{i:0;s:0:"";}s:22:"enable_sitemap_preload";b:0;s:23:"enable_schedule_preload";s:1:"1";s:21:"preload_schedule_type";s:9:"wpo_daily";s:21:"enable_mobile_caching";s:1:"1";s:19:"enable_user_caching";s:1:"1";s:8:"site_url";s:20:"https://omsrislb.my/";s:24:"enable_cache_per_country";b:0;s:27:"enable_cache_aelia_currency";b:0;s:19:"permalink_structure";s:12:"/%postname%/";s:7:"uploads";s:45:"/home/binawebp/omsrislb.my/wp-content/uploads";s:10:"gmt_offset";s:1:"0";s:15:"timezone_string";s:0:"";s:11:"date_format";s:6:"F j, Y";s:11:"time_format";s:5:"g:i a";s:15:"use_webp_images";b:0;s:12:"show_avatars";i:0;s:22:"host_gravatars_locally";i:0;s:28:"auto_preload_purged_contents";s:1:"1";s:22:"purge_cloudflare_cache";s:1:"0";s:17:"wpo_cache_cookies";a:0:{}s:25:"wpo_cache_query_variables";a:0:{}}', 'auto'),
(63602, 'wp-optimize-page_cache_schedule_preload_nighttime', '1', 'auto'),
(63608, 'wp-optimize-wpo_last_page_cache_preload_type', 'sitemap', 'auto'),
(63609, 'wp-optimize-completed_task_count', '1811', 'auto'),
(63610, 'wp-optimize-total_bytes_saved', '0', 'auto'),
(63611, 'wp-optimize-total_percent_saved', '0', 'auto'),
(63612, 'wp-optimize-wpo_last_page_cache_preload', '1769560566', 'auto'),
(75225, '_transient_ekit_element_manager_compatibity', '1', 'on'),
(78951, 'wp_notes_notify', '1', 'on'),
(78954, 'can_compress_scripts', '0', 'auto'),
(81184, '_site_transient_timeout_php_check_7b9fb72b3bf6b27c046e3a9832dfe8e2', '1769790834', 'off'),
(81185, '_site_transient_php_check_7b9fb72b3bf6b27c046e3a9832dfe8e2', 'a:5:{s:19:"recommended_version";s:3:"8.3";s:15:"minimum_version";s:6:"7.2.24";s:12:"is_supported";b:0;s:9:"is_secure";b:1;s:13:"is_acceptable";b:1;}', 'off'),
(81380, '_transient_timeout_elementor_rollback_versions_3.28.1', '1770165372', 'off'),
(81381, '_transient_elementor_rollback_versions_3.28.1', 'a:30:{i:0;s:6:"3.28.0";i:1;s:6:"3.27.7";i:2;s:6:"3.27.6";i:3;s:6:"3.27.5";i:4;s:6:"3.27.4";i:5;s:6:"3.27.3";i:6;s:6:"3.27.2";i:7;s:6:"3.27.1";i:8;s:6:"3.27.0";i:9;s:6:"3.26.5";i:10;s:6:"3.26.4";i:11;s:6:"3.26.3";i:12;s:6:"3.26.2";i:13;s:6:"3.26.1";i:14;s:6:"3.26.0";i:15;s:7:"3.25.11";i:16;s:7:"3.25.10";i:17;s:6:"3.25.9";i:18;s:6:"3.25.8";i:19;s:6:"3.25.7";i:20;s:6:"3.25.6";i:21;s:6:"3.25.5";i:22;s:6:"3.25.4";i:23;s:6:"3.25.3";i:24;s:6:"3.25.2";i:25;s:6:"3.25.1";i:26;s:6:"3.25.0";i:27;s:6:"3.24.8";i:28;s:6:"3.24.7";i:29;s:6:"3.24.6";}', 'off'),
(81384, '_transient_doing_cron', '1771470377.4537570476531982421875', 'on'),
(81657, '_transient_timeout_code_snippets_welcome_data', '1770237206', 'off'),
(81658, '_transient_code_snippets_welcome_data', 'a:5:{s:6:"banner";a:9:{s:3:"key";s:6:"bf2025";s:14:"start_datetime";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-11-18 00:00:00.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:12:"end_datetime";O:17:"DateTimeImmutable":3:{s:4:"date";s:26:"2025-12-03 00:00:00.000000";s:13:"timezone_type";i:3;s:8:"timezone";s:3:"UTC";}s:9:"text_free";s:63:"Save up to 50% on Code Snippets Pro with our Black Friday Sale!";s:15:"action_url_free";s:45:"https://codesnippets.pro/pricing/?cs_user=new";s:17:"action_label_free";s:8:"Get Deal";s:8:"text_pro";s:58:"Save up to 50% on your upgrade with our Black Friday Sale!";s:14:"action_url_pro";s:50:"https://codesnippets.pro/pricing/?cs_user=existing";s:16:"action_label_pro";s:8:"Get Deal";}s:9:"hero-item";a:3:{s:4:"name";s:24:"Meet Snippet Conditions!";s:10:"follow_url";s:78:"https://codesnippets.pro/blog/version-3-7-snippet-conditions-official-release/";s:9:"image_url";s:78:"https://codesnippets.pro/wp-content/uploads/2025/09/conditions_screenshot.webp";}s:8:"features";a:4:{i:0;a:5:{s:5:"title";s:28:"Pssss... Get Secret Discount";s:10:"follow_url";s:22:"https://snipco.de/TFIG";s:9:"image_url";s:81:"https://codesnippets.pro/wp-content/uploads/2024/09/Promotions_Hero_All_Plans.png";s:8:"category";s:5:"offer";s:11:"description";s:100:"Get secret discount on all Code Snippets Pro plans. Just use coupon code ''General5'' at the checkout!";}i:1;a:5:{s:5:"title";s:25:"Add Unsplash to WordPress";s:10:"follow_url";s:22:"https://snipco.de/Mind";s:9:"image_url";s:53:"https://i3.ytimg.com/vi/kRSwWDanX0A/maxresdefault.jpg";s:8:"category";s:3:"tip";s:11:"description";s:70:"Code Snippet to Add Unsplash to WordPress - Find and Download Images..";}i:2;a:5:{s:5:"title";s:30:"Code Snippet Cloud Setup Guide";s:10:"follow_url";s:22:"https://snipco.de/Mine";s:9:"image_url";s:149:"https://cdn.getgist.com/attachment_images/76ca6cef08ca8e69ac1e7fbc15004bebbd08ad595ee67e0d7b55d1a9555354bfScreenshot%202023-11-23%20at%2000.50.02.png";s:8:"category";s:5:"guide";s:11:"description";s:143:"We have done our best to make the cloud set up as smooth and easy as possible. This guide below will walk you through the process step by step.";}i:3;a:5:{s:5:"title";s:14:"Cloud and AI +";s:10:"follow_url";s:22:"https://snipco.de/Minf";s:9:"image_url";s:53:"https://i3.ytimg.com/vi/rEOC2bIwY-w/maxresdefault.jpg";s:8:"category";s:11:"new feature";s:11:"description";s:68:"Code Snippets 3.6 Announcement - AI CodeSnippets - Generate AI Code!";}}s:8:"partners";a:4:{i:0;a:3:{s:5:"title";s:9:"Elementor";s:10:"follow_url";s:22:"https://snipco.de/KK3d";s:9:"image_url";s:76:"https://codesnippets.pro/wp-content/uploads/2024/05/Elementor-logo-green.png";}i:1;a:3:{s:5:"title";s:7:"InstaWP";s:10:"follow_url";s:22:"https://snipco.de/KK3n";s:9:"image_url";s:68:"https://codesnippets.pro/wp-content/uploads/2024/05/instawp-logo.png";}i:2;a:3:{s:5:"title";s:11:"Dynamic.ooo";s:10:"follow_url";s:28:"https://snipco.de/dynamicooo";s:9:"image_url";s:71:"https://codesnippets.pro/wp-content/uploads/2025/09/Dynamicooo-Logo.png";}i:3;a:3:{s:5:"title";s:10:"Crocoblock";s:10:"follow_url";s:22:"https://snipco.de/KK3l";s:9:"image_url";s:71:"https://codesnippets.pro/wp-content/uploads/2024/05/crocoblock-logo.png";}}s:9:"changelog";a:4:{s:5:"3.6.8";a:4:{s:5:"Added";a:1:{s:4:"core";a:1:{i:0;s:87:"`code_snippets/hide_welcome_banner` filter hook for hiding welcome banner in dashboard.";}}s:7:"Changed";a:1:{s:3:"pro";a:1:{i:0;s:43:"Updated Freemius SDK to the latest version.";}}s:7:"Removed";a:1:{s:4:"core";a:1:{i:0;s:122:"Functionality allowing `[code_snippet]` shortcodes to be embedded recursively – it will be re-added in a future version.";}}s:5:"Fixed";a:2:{s:4:"core";a:4:{i:0;s:80:"Shortcodes embedded within `[code_snippet]` shortcodes not evaluating correctly.";i:1;s:92:"Translation functions being called too early in some instances when loading plugin settings.";i:2;s:71:"Incorrect arrow entity used in cloud list table (props to [brandonjp]).";i:3;s:69:"Removed reference to missing plugins.css file in core plugin version.";}s:3:"pro";a:1:{i:0;s:46:"''Generate'' button not appearing on some sites.";}}}s:5:"3.6.7";a:3:{s:5:"Added";a:1:{s:4:"core";a:2:{i:0;s:90:"Generated snippet shortcode tags will include the snippet name, for easier identification.";i:1;s:130:"Admin notices will dismiss automatically after five seconds. ([#208](https://github.com/codesnippetspro/code-snippets/issues/208))";}}s:7:"Changed";a:1:{s:4:"core";a:3:{i:0;s:40:"Updated CSS to use latest Sass features.";i:1;s:161:"Moved theme selector to just above editor preview on settings page (thanks to [brandonjp]). ([#206](https://github.com/codesnippetspro/code-snippets/issues/206))";i:2;s:134:"`[code_snippet]` shortcodes can now be nested within each other. ([#198](https://github.com/codesnippetspro/code-snippets/issues/198))";}}s:5:"Fixed";a:2:{s:3:"pro";a:2:{i:0;s:144:"Save buttons above editor did not follow usual validation process in Pro.  ([#197](https://github.com/codesnippetspro/code-snippets/issues/197))";i:1;s:111:"Issue with Elementor source code widget.  ([#205](https://github.com/codesnippetspro/code-snippets/issues/205))";}s:4:"core";a:5:{i:0;s:69:"Minor inconsistencies in consistent UI elements between Core and Pro.";i:1;s:100:"Tags input not allowing input. ([#211](https://github.com/codesnippetspro/code-snippets/issues/211))";i:2;s:67:"Snippet descriptions not visible when viewing cloud search results.";i:3;s:76:"Snippet import page not displaying number of successfully imported snippets.";i:4;s:60:"Use UTC time when deciding when to display campaign notices.";}}}s:7:"3.6.6.1";a:1:{s:5:"Fixed";a:2:{s:4:"core";a:1:{i:0;s:79:"Redeployment of [v3.6.6](#366-2024-11-27) to overcome issue with initial build.";}s:3:"pro";a:1:{i:0;s:36:"Type issue when caching cloud links.";}}}s:5:"3.6.6";a:2:{s:7:"Changed";a:1:{s:4:"core";a:4:{i:0;s:51:"Improved compatability with modern versions of PHP.";i:1;s:46:"Extended welcome API to include admin notices.";i:2;s:111:"Action hook `code_snippets/update_snippet` now only includes the snippet ID instead of the full snippet object.";i:3;s:80:"Action hook `code_snippets/admin/manage` now includes the currently viewed type.";}}s:5:"Fixed";a:1:{s:4:"core";a:5:{i:0;s:86:"Memory issue from checking aggregate posts while loading front-end syntax highlighter.";i:1;s:98:"Translation functions being called too early on upgrade, resulting in localisation loading errors.";i:2;s:89:"Bug preventing the ''share on network'' status of network snippets from correctly updating.";i:3;s:98:"Incorrect logic controlling when to display ''Save Changes'' or ''Save Changes and Activate'' buttons.";i:4;s:76:"Old notices persisting when switching between editing and creating snippets.";}}}}}', 'off'),
(81728, '_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.9.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-6.9.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-6.9.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-6.9.1-new-bundled.zip";s:7:"partial";s:0:"";s:8:"rollback";s:0:"";}s:7:"current";s:5:"6.9.1";s:7:"version";s:5:"6.9.1";s:11:"php_version";s:6:"7.2.24";s:13:"mysql_version";s:5:"5.5.5";s:11:"new_bundled";s:3:"6.7";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1771457880;s:15:"version_checked";s:5:"6.9.1";s:12:"translations";a:0:{}}', 'off'),
(81743, 'elementor_pro_remote_info_api_data_3.15.1', 'a:2:{s:7:"timeout";i:1770292506;s:5:"value";s:251712:"{"stable_version":"3.35.0","last_updated":"2026-02-02 09:47:18","sections":"a:2:{s:11:\\"description\\";s:161:\\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\\";s:9:\\"changelog\\";s:235700:\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\n<h4>3.35.0 - 2026-02-02<\\/h4>\\n<ul>\\n<li>Tweak: Extended the color picker to support ACF fields - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables with custom units across relevant controls - Editor V4<\\/li>\\n<li>Tweak: Enabled size variables in border radius controls - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.34.4 - 2026-01-29<\\/h4>\\n<ul>\\n<li>Fix: Shortcodes overflow the screen on Saved Templates screen in WordPress Admin<\\/li>\\n<li>Fix: Avoid Multiple Popups control does not work in Popups<\\/li>\\n<\\/ul>\\n<h4>3.34.3 - 2026-01-26<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder WordPress view does not work as expected<\\/li>\\n<li>Fix: Submissions menu appears even when the setting is disabled<\\/li>\\n<\\/ul>\\n<h4>3.34.2 - 2026-01-22<\\/h4>\\n<ul>\\n<li>Tweak: Updated notification behavior in Elementor menu in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.1 - 2026-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Unified the Elementor interface into a single place to manage, optimize, and configure Elementor capabilities in WordPress admin<\\/li>\\n<\\/ul>\\n<h4>3.34.0 - 2025-12-22<\\/h4>\\n<ul>\\n<li>New: Added support for Display Conditions for Atomic Elements - Editor V4<\\/li>\\n<li>Tweak: Enabled media queries for the Desktop breakpoint only in Custom CSS - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Added support for Google Calendar in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Tel link in Contact URL Dynamic Tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF Image field in Dynamic Tags - Editor V4<\\/li>\\n<li>Tweak: Removed icon from the accessibility tree in Flip Box widget<\\/li>\\n<li>Tweak: Applied CSS logical properties in text-align controls and improved RTL rendering in the Editor<\\/li>\\n<li>Fix: Website Template library displayed in English instead of the translated language<\\/li>\\n<li>Fix: Custom CSS field breaks when using certain characters - Editor V4<\\/li>\\n<\\/ul>\\n<h4>3.33.2 - 2025-12-03<\\/h4>\\n<ul>\\n<li>Fix: Incorrect status shown for Custom Code, Fonts, and Icons after importing a Website Template<\\/li>\\n<li>Fix: Display Conditions window appears empty in the editor<\\/li>\\n<\\/ul>\\n<h4>3.33.1 - 2025-11-11<\\/h4>\\n<ul>\\n<li>Fix: Styles not loading correctly in Custom Fonts and Custom Icons admin screens (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/33396\\">#33396<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.33.0 - 2025-11-10<\\/h4>\\n<ul>\\n<li>New: Introducing Custom CSS for element-level styling with full isolation and responsive control - Editor V4<\\/li>\\n<li>New: Introducing media save to cloud in Website Templates, enabling users to store media assets directly in the cloud for easier access and management.<\\/li>\\n<li>Tweak: Added support for Post Excerpt dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Internal URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Post Terms dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Shortcode dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Popup dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Off-Canvas dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Lightbox dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Add To Cart dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for ACF URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for Archive Title dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for the Email Contact URL dynamic tag - Editor V4<\\/li>\\n<li>Tweak: Added support for reduced-motion preferences in Flip Box widget<\\/li>\\n<li>Tweak: Updated minimum supported versions for Chrome, Firefox, and Safari<\\/li>\\n<li>Tweak: Updated Notes button location in the Editor Top Bar<\\/li>\\n<\\/ul>\\n<h4>3.32.3 - 2025-10-21<\\/h4>\\n<ul>\\n<li>Fix: Website Template fails to apply when Custom Code or Custom Icons are included<\\/li>\\n<\\/ul>\\n<h4>3.32.2 - 2025-09-29<\\/h4>\\n<ul>\\n<li>Fix: Exported taxonomies are not displayed correctly on the summary page in Website Templates export<\\/li>\\n<li>Fix: Certain taxonomies are not exported as expected in Website Templates export<\\/li>\\n<\\/ul>\\n<h4>3.32.1 - 2025-09-16<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder fails to load when containers are disabled<\\/li>\\n<li>Fix: Popup and single product templates not imported or exported as expected<\\/li>\\n<\\/ul>\\n<h4>3.32.0 - 2025-09-15<\\/h4>\\n<ul>\\n<li>New: Introducing Size Variables to store and reuse numeric values across spacing, typography, layout, and borders - Editor V4<\\/li>\\n<li>New: Introducing granular Transitions with property-level control for advanced micro-animations - Editor V4<\\/li>\\n<li>New: Added granular content selection for Website Templates import and export, including pages, menus, post types, and taxonomies<\\/li>\\n<li>Tweak: Enhanced accessibility of background images in Slides widget with proper aria attributes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23543\\">#23543<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/31063\\">#31063<\\/a>)<\\/li>\\n<li>Tweak: Added REST API support for the Custom Code feature<\\/li>\\n<li>Tweak: Moved Background control from Content tab to Style tab in Flip Box widget<\\/li>\\n<li>Tweak: Removed SVG icons from the accessibility tree in Share Buttons widget<\\/li>\\n<li>Tweak: Removed dropdown indicator icons from the accessibility tree in WordPress Menu widget<\\/li>\\n<li>Fix: PHP 8.4 deprecation notices when running with <code>WP_DEBUG<\\/code> enabled<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied to Animated Headline widget<\\/li>\\n<li>Fix: Reduced-motion preferences are not applied in Motion Effects<\\/li>\\n<li>Fix: Added required PHP and WordPress versions to the plugin header<\\/li>\\n<\\/ul>\\n<h4>3.31.3 - 2025-09-08<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in WordPress Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.31.2 - 2025-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Improved release version functionality<\\/li>\\n<\\/ul>\\n<h4>3.31.1 - 2025-08-06<\\/h4>\\n<ul>\\n<li>Tweak: Updated <code>form-data<\\/code> package version<\\/li>\\n<\\/ul>\\n<h4>3.31.0 - 2025-08-05<\\/h4>\\n<ul>\\n<li>New: Introducing Attributes - add custom HTML attributes to elements for advanced control - Editor V4<\\/li>\\n<li>Tweak: Optimized Custom Code styles by removing redundant RTL file<\\/li>\\n<li>Tweak: Improved performance by loading ribbon styles only when used in Call to Action and Price Table widgets<\\/li>\\n<li>Tweak: Improved semantic markup structure for header and footer documents<\\/li>\\n<li>Tweak: Reorganized design controls in Animated Headline widget<\\/li>\\n<li>Tweak: Reorganized design controls in Blockquote widget<\\/li>\\n<li>Tweak: Reorganized design controls in Countdown widget<\\/li>\\n<li>Tweak: Replaced SASS mixins and functions with native CSS logical properties<\\/li>\\n<li>Fix: Empty headers are rendered in Table of Contents widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28167\\">#28167<\\/a>)<\\/li>\\n<li>Fix: <code>TypeError<\\/code> bug in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.30.1 - 2025-07-22<\\/h4>\\n<ul>\\n<li>Security Fix: Improved content sanitization in multiple widgets<\\/li>\\n<li>Fix: UI issue in Hotspot widget when Optimized Markup experiment is enabled<\\/li>\\n<li>Fix: Taxonomy filter not working in the Editor when Optimized Markup experiment is enabled<\\/li>\\n<\\/ul>\\n<h4>3.30.0 - 2025-07-01<\\/h4>\\n<ul>\\n<li>New: Introduced Full Website Templates in the Cloud - export, manage, and reuse full site kits across all your websites from one place<\\/li>\\n<li>Tweak: Activated &quot;Optimized Markup&quot; feature on new sites<\\/li>\\n<li>Tweak: Activated &quot;Menu&quot; feature on new sites<\\/li>\\n<li>Tweak: Improved error handling for Theme Builder display conditions<\\/li>\\n<li>Tweak: Added styling controls to Post Excerpt widget<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> and <code>aria-label<\\/code> attributes Post Navigation widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Form widget<\\/li>\\n<li>Tweak: Added <code>aria-label<\\/code> in Login widget<\\/li>\\n<li>Tweak: Arranged content as lists in Portfolio and Posts widgets<\\/li>\\n<li>Tweak: Added Box Shadow and Text Shadow controls in Countdown widget<\\/li>\\n<li>Tweak: Moved image resolution control to content tab in Price List widget<\\/li>\\n<li>Tweak: Renamed and reorganized style sections in Price List widget<\\/li>\\n<li>Tweak: Added conditional logic to controls in Price Table widget<\\/li>\\n<li>Tweak: Grouped layout controls under list section in Price List widget<\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.6<\\/li>\\n<li>Fix: Inline font icons support doesn''t work in Post Navigation widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24367\\">#24367<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18343\\">#18343<\\/a>)<\\/li>\\n<li>Fix: Page Title condition doesn''t work on child pages in Widget Display Conditions<\\/li>\\n<li>Fix: Editor users with &quot;Access to edit content only&quot; are able to delete elements<\\/li>\\n<li>Fix: Links are not crawlable in Video Playlist widget<\\/li>\\n<li>Fix: Uses hardcoded admin fonts in Video Playlist widget<\\/li>\\n<li>Fix: Editor freezes when the Form widget is used with a high PHP upload size limit<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled in Slides widget<\\/li>\\n<li>Fix: Plugin dependency not enforced in Elementor Pro<\\/li>\\n<li>Fix: Console shows deprecation warning in Global Widgets<\\/li>\\n<\\/ul>\\n<h4>3.29.2 - 2025-06-04<\\/h4>\\n<ul>\\n<li>Tweak: Added selectors to Menu widget for compatibility with Optimized Markup experiment<\\/li>\\n<\\/ul>\\n<h4>3.29.1 - 2025-05-28<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Price Table widget<\\/li>\\n<\\/ul>\\n<h4>3.29.0 - 2025-05-19<\\/h4>\\n<ul>\\n<li>New: Introduced Cloud Templates - save, manage, and reuse your templates across all your sites from a single cloud library<\\/li>\\n<li>Tweak: Improved accessibility with <code>role<\\/code> attributes in Share Buttons widget<\\/li>\\n<li>Tweak: Improved accessibility by grouping content with <code>role=region<\\/code> in the Video Playlist widget<\\/li>\\n<li>Fix: Focus color is not applied correctly for accessibility in WordPress Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24239\\">#24239<\\/a>)<\\/li>\\n<li>Fix: Common scripts loaded late when using the Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.28.4 - 2025-05-05<\\/h4>\\n<ul>\\n<li>Fix: Empty results appeared on the frontend when using the Taxonomy Filter with the ''Avoid Duplicates'' option in Loop Grid widget<\\/li>\\n<li>Fix: Errors occur when Debug mode is enabled and the Optimized Markup experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.28.3 - 2025-04-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved sidebar navigation flow on the Elementor Home screen<\\/li>\\n<\\/ul>\\n<h4>3.28.2 - 2025-03-30<\\/h4>\\n<ul>\\n<li>Fix: Default Elementor animation shown for logged-out users when using an &quot;External URL&quot; source in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.28.1 - 2025-03-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Animated Headline and Form widgets<\\/li>\\n<\\/ul>\\n<h4>3.28.0 - 2025-03-17<\\/h4>\\n<ul>\\n<li>Tweak: Ensured File Upload field styles are overridden by global styles in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11651\\">#11651<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17223\\">#17223<\\/a>)<\\/li>\\n<li>Tweak: Updated Scroll Snap description to clarify incompatibility with animations and motion effects<\\/li>\\n<li>Tweak: Prevented special characters from being encoded in the email subject field in Form widget<\\/li>\\n<li>Tweak: Loaded module styles within the module instead of registering them in <code>plugin.php<\\/code><\\/li>\\n<li>Tweak: Updated minimum required WordPress version to 6.5<\\/li>\\n<li>Tweak: Improved keyboard accessibility for menus in Editor Top Bar<\\/li>\\n<li>Tweak: Made the edit button accessible in the Template widget<\\/li>\\n<li>Tweak: Optimized Form widget performance by caching field assets <code>using get_style_depends()<\\/code> and <code>get_script_depends()<\\/code> methods<\\/li>\\n<li>Tweak: Added Text Shadow control in Testimonial Carousel, Call to Action and Animated Headline widgets<\\/li>\\n<li>Fix: Button icon alignment breaks when Inline Font Icons feature is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16077\\">#16077<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16511\\">#16511<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17692\\">#17692<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17922\\">#17922<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19253\\">#19253<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19370\\">#19370<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21236\\">#21236<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21844\\">#21844<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28080\\">#28080<\\/a>)<\\/li>\\n<li>Fix: Dropdown caret color did not follow menu item color when Inline Font Icons feature is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17500\\">#17500<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18466\\">#18466<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21664\\">#21664<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24929\\">#24929<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28064\\">#28064<\\/a>)<\\/li>\\n<li>Fix: Page doesn''t scroll up when a coupon error notice appears in Checkout widget<\\/li>\\n<\\/ul>\\n<h4>3.27.7 - 2025-03-13<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<\\/ul>\\n<h4>3.27.6 - 2025-03-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Template Condition<\\/li>\\n<\\/ul>\\n<h4>3.27.5 - 2025-03-03<\\/h4>\\n<ul>\\n<li>Fix: The <code>wp_trigger_error<\\/code> function causes the site to crash instead of triggering a warning when used with ACF text<\\/li>\\n<\\/ul>\\n<h4>3.27.4 - 2025-02-16<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Screenshots module<\\/li>\\n<li>Security Fix: Improved code security enforcement in Query control<\\/li>\\n<li>Fix: ACF <code>true_false<\\/code> field causing a fatal error when used as a dynamic tag with third-party plugins (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/30170\\">#30170<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.27.3 - 2025-02-06<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Stripe Button widget<\\/li>\\n<\\/ul>\\n<h4>3.27.2 - 2025-02-03<\\/h4>\\n<ul>\\n<li>Fix: Value type configuration issue causing errors when using ACF<\\/li>\\n<li>Fix: Hide content on responsive breakpoint option is not working on WordPress Menu widget when Optimized Markup experiment is activated<\\/li>\\n<\\/ul>\\n<h4>3.27.1 - 2025-01-27<\\/h4>\\n<ul>\\n<li>Tweak: Increased the number of items allowed in Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<li>Security Fix: Improved code security enforcement in Global widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Lottie widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Admin settings<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Empty custom fields are missing in the Dynamic Tags options in Display Conditions for Elements<\\/li>\\n<\\/ul>\\n<h4>3.27.0 - 2025-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Removed the <code>elementor-widget-container<\\/code> div from the Menu, Loop, Table of Contents, Form, and Hotspot widgets as part of the Optimized Markup experiment to improve HTML structure<\\/li>\\n<li>Tweak: Reduced DOM size by optimizing the submit button markup in Search widget<\\/li>\\n<li>Tweak: Moved style loading to the head instead of the footer to improve CLS<\\/li>\\n<li>Tweak: Enabled conditional loading of Swiper.js based on widget dependencies to reduce unnecessary assets and improve page load times<\\/li>\\n<li>Tweak: Standardized navigation elements like arrows and bullets across all carousel and slider widgets for improved accessibility<\\/li>\\n<li>Tweak: Improved accessibility when the submit button has only an icon and no text in Search widget<\\/li>\\n<li>Tweak: Removed <code>load_plugin_textdomain()<\\/code> function from Elementor Pro<\\/li>\\n<\\/ul>\\n<h4>3.26.3 - 2025-01-07<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Search widget<\\/li>\\n<li>Fix: Height issues cause slideshow thumbnails to display incorrectly in Media Carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29663\\">#29663<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.2 - 2024-12-22<\\/h4>\\n<ul>\\n<li>Fix: Menu items are not clickable in various scenarios in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29191\\">#29191<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.26.1 - 2024-12-17<\\/h4>\\n<ul>\\n<li>Fix: Restore deprecated <code>Plugin::enqueue_styles()<\\/code> function to avoid errors with 3rd party plugins<\\/li>\\n<\\/ul>\\n<h4>3.26.0 - 2024-12-16<\\/h4>\\n<ul>\\n<li>New: Introducing dynamic content support for Off-canvas in Loop Grid widget templates - enabling seamless display of additional content dynamically (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29049\\">#29049<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28935\\">#28935<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7106\\">#7106<\\/a>)<\\/li>\\n<li>New: AdBlock Detection trigger for Popups - display targeted popups for visitors using ad blockers<\\/li>\\n<li>New: Added Reload Page link action for Dynamic Tags<\\/li>\\n<li>Tweak: Added &quot;Space Between Dots&quot; control to Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2526\\">#2526<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3277\\">#3277<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21697\\">#21697<\\/a>)<\\/li>\\n<li>Tweak: Replaced hidden <code>elementor-screen-only<\\/code> div with <code>aria-label<\\/code> attributes<\\/li>\\n<li>Tweak: Removed <code>elementor-widget-container<\\/code> div from Elementor widgets as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Optimize popup styling by loading it only when necessary<\\/li>\\n<li>Tweak: Updated Gap between slides control to support only PX units in Carousel widget<\\/li>\\n<li>Tweak: Removed the dependency between the Tabs handler and the Menu handler<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> in Carousel widgets<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=carousel<\\/code> to carousel wrapper<\\/li>\\n<li>Tweak: Added <code>aria-roledescription=slide<\\/code> to slide wrapper<\\/li>\\n<li>Tweak: Optimized carousel widgets markup as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Updated minimum required Safari version to 15.5<\\/li>\\n<li>Tweak: Facebook widgets are no longer supported on mobile due to Facebook functionality changes<\\/li>\\n<li>Fix: Motion Effects sticky feature is not working when Scroll Snap is enabled<\\/li>\\n<li>Fix: Custom Image Resolution option is not working in Gallery widget<\\/li>\\n<li>Fix: ''Reading Settings'' unexpectedly reduces the number of posts displayed when using the Archive with Pagination setting<\\/li>\\n<li>Fix: Step Form does not scroll to the top when the first field is not an input field in Form widget<\\/li>\\n<li>Fix: Display Condition feature is available without an active Elementor license in Floating Elements<\\/li>\\n<li>Fix: Background options of Flip Box in Loop Grid widget are not working when images are added using ACF Dynamic Tags<\\/li>\\n<li>Fix: Dropdown icon in the Select field of the Form widget is cut off when the Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Incompatibility between Form widget and WPML when using Nested Elements<\\/li>\\n<li>Fix: Performance issues when changing the title name in the Menu widget<\\/li>\\n<li>Fix: Warnings appear when Element Caching is set to Inactive in Carousel widgets<\\/li>\\n<li>Fix: Swiper styling missing from Lightbox inside Gallery widgets<\\/li>\\n<\\/ul>\\n<h4>3.25.5 - 2024-12-10<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: Accessible navigation in popups caused unintended scrolling of the page when triggered (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29175\\">#29175<\\/a>)<\\/li>\\n<li>Fix: Popup overlay shown for non-logged users even when disabled<\\/li>\\n<\\/ul>\\n<h4>3.25.4 - 2024-11-20<\\/h4>\\n<ul>\\n<li>Tweak: Improved Global Widget loading method to enhance performance<\\/li>\\n<\\/ul>\\n<h4>3.25.3 - 2024-11-13<\\/h4>\\n<ul>\\n<li>Fix: Nested Elements are activated even when the Container experiment is inactive<\\/li>\\n<\\/ul>\\n<h4>3.25.2 - 2024-11-03<\\/h4>\\n<ul>\\n<li>Fix: Styling issues affecting popup layout when using a Dynamic Tag to open the popup<\\/li>\\n<li>Fix: Image captions are not displaying for non-logged-in users in Media Carousel widget<\\/li>\\n<li>Fix: Custom Add to Cart widget with Quantity enabled causes critical error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/29159\\">#29159<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.25.1 - 2024-10-31<\\/h4>\\n<ul>\\n<li>Fix: Multiple Custom Add to Cart widgets on the same page are adding the same product<\\/li>\\n<\\/ul>\\n<h4>3.25.0 - 2024-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added pagination functionality to the Live Results in Search widget<\\/li>\\n<li>Tweak: Added Anchor Offset control to allow precise positioning when scrolling to anchor links on the page<\\/li>\\n<li>Tweak: Load motion effects styles only when they are in use<\\/li>\\n<li>Tweak: Load sticky styles only when they are in use<\\/li>\\n<li>Tweak: Load popup styles only when they are in use<\\/li>\\n<li>Tweak: Load theme builder styles only when they are in use<\\/li>\\n<li>Tweak: Load transition styles for Call to Action and Gallery widgets only when they are in use<\\/li>\\n<li>Tweak: Load styles for Form widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for WooCommerce widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Theme Elements widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Carousel widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Pricing widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Floating Elements separately to enhance performance<\\/li>\\n<li>Tweak: Load styles for Link in Bio widgets separately to enhance performance<\\/li>\\n<li>Tweak: Load minified CSS in the Loop Builder''s Call to Action button in the Editor<\\/li>\\n<li>Tweak: Removed &quot;Payments&quot; module styles<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Payapl widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Removed <code>elementor-button-wrapper<\\/code> div from Stripe widget as part of the Optimized Markup experiment<\\/li>\\n<li>Tweak: Merged &quot;Form Submissions&quot; feature into the version and moved it to the Advanced tab<\\/li>\\n<li>Tweak: Merged &quot;Display Conditions&quot; into the version<\\/li>\\n<li>Fix: Missing translation string for the empty message in the Table of Contents widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27580\\">#27580<\\/a>)<\\/li>\\n<li>Fix: Local Storage and Session Storage were being used even when popups were not in use (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7151\\">#7151<\\/a>)<\\/li>\\n<li>Fix: Masonry layout is not working when pagination is set to &quot;Load More&quot; or &quot;Infinite Scroll&quot; in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23684\\">#23684<\\/a>)<\\/li>\\n<li>Fix: Extra gap between widgets on the frontend when using Off-canvas widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27706\\">#27706<\\/a>)<\\/li>\\n<li>Fix: Pagination and custom queries did not work when the Posts Widget was saved as a Global Widget or used via shortcode<\\/li>\\n<li>Fix: Lightbox videos are missing controls and displayed at the wrong size in Media Carousel widget<\\/li>\\n<li>Fix: Pagination options with Individual Pagination not working as expected in Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Justified or Masonry layouts for the Pro Gallery would not display images on the frontend when inserted via nested tabs<\\/li>\\n<li>Fix: Error issue in the Loop Grid widget when used in theme parts with the Taxonomy Filter<\\/li>\\n<li>Fix: Removed the focus ring after clicking to open the Off Canvas inside the Editor<\\/li>\\n<li>Fix: Background gradient colors from the dynamic color tag values are not rendering on the frontend<\\/li>\\n<li>Fix: Excessive database requests generated by the Loop Grid widget<\\/li>\\n<li>Fix: Colors from Dynamic Tags were not rendered on the frontend<\\/li>\\n<li>Fix: Display issue in the Menu widget caused by the ''Native Intersection Observer API<\\/li>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget<\\/li>\\n<li>Fix: Content Width control inside the Mega Menu is displaying an empty value<\\/li>\\n<\\/ul>\\n<h4>3.24.4 - 2024-10-09<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<\\/ul>\\n<h4>3.24.3 - 2024-10-01<\\/h4>\\n<ul>\\n<li>Fix: Floating Elements template not loading when Single Page template is set with All Singular condition<\\/li>\\n<li>Fix: Form field styles not loading properly in various scenarios<\\/li>\\n<\\/ul>\\n<h4>3.24.2 - 2024-09-18<\\/h4>\\n<ul>\\n<li>Fix: Icons not displaying when Inline SVG Icons experiment is active in Link In Bio widgets and Floating Elements<\\/li>\\n<\\/ul>\\n<h4>3.24.1 - 2024-09-12<\\/h4>\\n<ul>\\n<li>Fix: Widget styles not loading correctly on front causing alignment inconsistencies (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28676\\">#28676<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.24.0 - 2024-09-10<\\/h4>\\n<ul>\\n<li>New: Introducing support for Variable Fonts - allowing for more dynamic and flexible text styling (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6703\\">#6703<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11333\\">#11333<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19277\\">#19277<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25485\\">#25485<\\/a>)<\\/li>\\n<li>Tweak: Added ''Structure'' indication for widgets with Display Conditions applied (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28027\\">#28027<\\/a>)<\\/li>\\n<li>Tweak: Added a new option for setting the live search results width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28280\\">#28280<\\/a>)<\\/li>\\n<li>Tweak: Improved Honeypot field functionality in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28480\\">#28480<\\/a>)<\\/li>\\n<li>Tweak: Added options to ''Copy'', ''Paste'', and ''Clear'' Display Conditions in Context Menu<\\/li>\\n<li>Tweak: Improved performance of the Menu widget when using Dynamic Tags in the URL field<\\/li>\\n<li>Tweak: Improved performance when using Dynamic Tags in Nested Elements<\\/li>\\n<li>Tweak: Added the option for users to disable Akismet for specific Elementor forms<\\/li>\\n<li>Tweak: Adjusted URL structure when presenting the Search Archive page in Search widget<\\/li>\\n<li>Tweak: Added the ''Create Template'' button in Search widget<\\/li>\\n<li>Tweak: Added an option to enable the ''Loader'' animation while live results are loading in Search widget<\\/li>\\n<li>Tweak: Load share buttons compatibility styles only when they are in use<\\/li>\\n<li>Tweak: Load dialog styles only when they are in use<\\/li>\\n<li>Tweak: Load global widget styles only during Editor preview<\\/li>\\n<li>Tweak: Conditionally load widget styles only when the widgets are used<\\/li>\\n<li>Tweak: Load styles for CTA hover animations only when they are in use<\\/li>\\n<li>Tweak: Load notes styles only when the WordPress Toolbar is displayed<\\/li>\\n<li>Tweak: Split <code>animations.min.css<\\/code> into multiple CSS files and load them conditionally<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Stable status<\\/li>\\n<li>Tweak: Merged Taxonomy Filter feature into the version<\\/li>\\n<li>Tweak: Merged Search feature into the version<\\/li>\\n<li>Tweak: Added a note to ''Current Query'' explaining the impact of WordPress settings on pagination within Archives<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for the Off-Canvas widget<\\/li>\\n<li>Fix: Manual Selection option is not excluding sticky posts in Posts and Loop Grid widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18689\\">#18689<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23331\\">#23331<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28179\\">#28179<\\/a>)<\\/li>\\n<li>Fix: Template ID does not change according to the imported Loop Item (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21404\\">#21404<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22202\\">#22202<\\/a>)<\\/li>\\n<li>Fix: ''Editing Mode'' for the Off-canvas was not functioning correctly in certain scenarios<\\/li>\\n<li>Fix: Added definition to <code>clear_custom_image_sizes<\\/code> hook to prevent edge case issues<\\/li>\\n<li>Fix: Flickering issue with search result buttons when closing results using the keyboard escape key in Search widget<\\/li>\\n<li>Fix: Theme Style settings for buttons were overriding the text styling in Search widget<\\/li>\\n<li>Fix: Nesting menu inside another menu causes functionality issues in Menu widget<\\/li>\\n<li>Fix: Error when using array as custom fields value in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.23.3 - 2024-08-05<\\/h4>\\n<ul>\\n<li>Fix: Dropdown area not working in certain scenarios in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28194\\">#28194<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.23.2 - 2024-07-29<\\/h4>\\n<ul>\\n<li>Fix: Horizontal scroll bar appearing on the page when using Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/28087\\">#28087<\\/a>)<\\/li>\\n<li>Fix: Dropdown area disappearing in certain scenarios in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.23.1 - 2024-07-23<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in link URL<\\/li>\\n<\\/ul>\\n<h4>3.23.0 - 2024-07-15<\\/h4>\\n<ul>\\n<li>New: Search Widget with Live Results - Display live search results as visitors type into the search box, enhancing user experience and engagement (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27664\\">#27664<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24931\\">#24931<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21459\\">#21459<\\/a>)<\\/li>\\n<li>Tweak: Renamed <code>width<\\/code> to <code>Min width<\\/code> and added <code>Max width<\\/code> control to Hotspot tooltips (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18930\\">#18930<\\/a>)<\\/li>\\n<li>Tweak: Applied a logical DOM order to the Mega Menu widget to improve accessibility<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for WordPress Menu widget<\\/li>\\n<li>Tweak: Added the ability to set <code>aria-label<\\/code> for Menu widget<\\/li>\\n<li>Tweak: Added a bottom option to the Image Position control in Call to Action widget<\\/li>\\n<li>Fix: Missing version string in included CSS query string when Improved CSS Loading is enabled (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21879\\">#21879<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23821\\">#23821<\\/a>)<\\/li>\\n<li>Fix: Form submission icon message does not display correctly when Inline Font Icons feature is activated<\\/li>\\n<li>Fix: Save and Close button position issues in the conditions screen in Theme Builder.<\\/li>\\n<li>Fix: Focus appears on the first element when using the mouse to open Off-Canvas <\\/li>\\n<li>Fix: Links to Elementor Settings are broken in various locations<\\/li>\\n<li>Fix: Conditions field not showing all relevant conditions in Theme Builder<\\/li>\\n<li>Fix: Off-Canvas flickering in sticky containers with exit animations triggered by sticky effects<\\/li>\\n<\\/ul>\\n<h4>3.22.1 - 2024-06-24<\\/h4>\\n<ul>\\n<li>Fix: Styling of Global widgets not loading when Element Caching experiment is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27704\\">#27704<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.22.0 - 2024-06-16<\\/h4>\\n<ul>\\n<li>New: Introducing Off-Canvas widget - create engaging and creative layers triggered by a link (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6225\\">#6225<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21769\\">#21769<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25770\\">#25770<\\/a>)<\\/li>\\n<li>Tweak: Added option to remove ''User IP'' and ''User Agent'' from the form submissions metadata (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14285\\">#14285<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>waypoints.js<\\/code> library with the native Intersection Observer API<\\/li>\\n<li>Tweak: Extended Alignment and Position capabilities in Form widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Flip Box widget<\\/li>\\n<li>Tweak: Moved icon View control to style tab in Call to Action widget<\\/li>\\n<li>Tweak: Optimized Form widget to eliminate unnecessary markup when the button icon is empty<\\/li>\\n<li>Tweak: Optimized Posts widget to eliminate unnecessary markup when Load More button text is empty<\\/li>\\n<li>Tweak: Remove <code>placeholder<\\/code> arguments from URL controls<\\/li>\\n<li>Tweak: Implemented CSS logical properties to Icon Position in Form, Posts and Menu Cart widgets<\\/li>\\n<li>Tweak: Activated Display Conditions feature for existing sites<\\/li>\\n<li>Tweak: Activated Taxonomy Filter feature for existing sites<\\/li>\\n<li>Tweak: Added functionality to delay the running of the ready triggers on inner elements<\\/li>\\n<li>Fix: Icons are now part of the link in the Menu Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24298\\">#24298<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25112\\">#25112<\\/a>)<\\/li>\\n<li>Fix: <code>all: unset<\\/code> assigned to buttons cause focus issues (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24322\\">#24322<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25448\\">#25448<\\/a>)<\\/li>\\n<li>Fix: Menu cart SVG icon disappears on front when Optimized Control Loading experiment is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/27342\\">#27342<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro auto-updates are not working on multisite networks (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12615\\">#12615<\\/a>)<\\/li>\\n<li>Fix: PHP error appears in the editor when using Loop Grid in an archive template<\\/li>\\n<li>Fix: UI glitch on Icon Position control in Paypal and Stripe Buttons widgets<\\/li>\\n<li>Fix: Icon Position control RTL issue in Hotspot widget<\\/li>\\n<li>Fix: Manual Selection &quot;Include By&quot; Query doesn''t work with product categories<\\/li>\\n<\\/ul>\\n<h4>3.21.3 - 2024-05-20<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Loop Grid widget<\\/li>\\n<li>Fix: License expired affects the Display Conditions functionality in the front end<\\/li>\\n<\\/ul>\\n<h4>3.21.2 - 2024-04-30<\\/h4>\\n<ul>\\n<li>Fix: Special characters are not displayed correctly when using the Excerpt widget in Loop template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25860\\">#25860<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.21.1 - 2024-04-24<\\/h4>\\n<ul>\\n<li>Fix: Excerpt Length setting doesn''t function correctly for languages with non-English characters in Post Excerpt widget<\\/li>\\n<\\/ul>\\n<h4>3.21.0 - 2024-04-15<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Taxonomy Query - Enabling the display of post and product categories and tags within Loop Grid and Loop Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21372\\">#21372<\\/a>)<\\/li>\\n<li>Tweak: Optimized Hotspot widget to prevent rendering when no image is provided<\\/li>\\n<li>Tweak: Optimized Blockquote widget to eliminate unnecessary markup when devoid of content<\\/li>\\n<li>Tweak: Optimized Template widget to eliminate unnecessary markup when no template is selected<\\/li>\\n<li>Tweak: Optimized Code Highlight widget to eliminate unnecessary markup when there is no content<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Portfolio widget<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Author Avatar image alt text in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25440\\">#25440<\\/a>)<\\/li>\\n<li>Tweak: Notes feature merged to version<\\/li>\\n<li>Tweak: Implemented accessibility improvements of Profile Picture alt text in Author widget<\\/li>\\n<li>Fix: Display issue on hover state in WooCommerce Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.20.3 - 2024-04-10<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issue between the My Account widget and other third-party plugins (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20986\\">#20986<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.20.2 - 2024-03-26<\\/h4>\\n<ul>\\n<li>Security Fix: Improved code security enforcement in Media Carousel widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Post Navigation widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Gallery widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.20.1 - 2024-03-20<\\/h4>\\n<ul>\\n<li>Fix: Strengthened code integrity in deprecated Woo Single Element widget<\\/li>\\n<li>Fix: PHP error notice appears when using Loop Grid with the Taxonomy Filter widgets<\\/li>\\n<\\/ul>\\n<h4>3.20.0 - 2024-03-11<\\/h4>\\n<ul>\\n<li>Tweak: Implemented OR logic in the Display Conditions feature<\\/li>\\n<li>Tweak: Added X and Threads social networks to Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/25299\\">#25299<\\/a>)<\\/li>\\n<li>Tweak: Added Archive Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Title dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Alt dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image Caption dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Bio dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Email dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Author Website dynamic tag rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Page Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Post Title rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Featured Image rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Comments Number rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added Archive Author rule in Display Conditions feature<\\/li>\\n<li>Tweak: Added support for WordPress Custom Fields in Display Conditions feature<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23875\\">#23875<\\/a>)<\\/li>\\n<li>Tweak: Implemented accessibility improvements in Login widget<\\/li>\\n<li>Tweak: Added additional style controls in the Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration option in Blockquote widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21295\\">#21295<\\/a>)<\\/li>\\n<li>Tweak: Added Transition Duration to button in Flip Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Author Box widget<\\/li>\\n<li>Tweak: Added Transition Duration to List in Table of Contents widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Login widget<\\/li>\\n<li>Tweak: Added Transition Duration in Post Navigation widget<\\/li>\\n<li>Tweak: Added Transition Duration Show More in Video Playlist widget<\\/li>\\n<li>Tweak: Added Transition Duration to button in Form widget<\\/li>\\n<li>Tweak: Removed separator-none argument from all Editor controls<\\/li>\\n<li>Tweak: Add <code>&lt;time&gt;<\\/code> wrapper for Date and Time items in Post Info widget<\\/li>\\n<li>Tweak: Page Transitions feature merged to version<\\/li>\\n<li>Tweak: Scroll Snap feature merged to version<\\/li>\\n<li>Tweak: Promoted Display Conditions feature to Beta status and activated for new sites<\\/li>\\n<li>Tweak: Promoted Taxonomy Filter feature to beta status and activated for new sites<\\/li>\\n<li>Fix: Page Transitions feature and Load Font Awesome 4 Support cause a console error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18885\\">#18885<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19334\\">#19334<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21082\\">#21082<\\/a>)<\\/li>\\n<li>Fix: Added better output escaping in Taxonomy Filter widget<\\/li>\\n<\\/ul>\\n<h4>3.19.3 - 2024-02-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved Loop CSS loading structure in Loop Grid item<\\/li>\\n<li>Security Fix: Addressed security weaknesses in Dynamic Tags<\\/li>\\n<\\/ul>\\n<h4>3.19.2 - 2024-02-07<\\/h4>\\n<ul>\\n<li>Fix: Export data inconsistencies when using form actions in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.19.1 - 2024-02-05<\\/h4>\\n<ul>\\n<li>Fix: Enqueuing non-existing Loop Template CSS file in Loop Item template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24959\\">#24959<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>New: Introducing Display Conditions for Elements - allowing users to customize content visibility based on specified criteria (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4246\\">#4246<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21152\\">#21152<\\/a>)<\\/li>\\n<li>New: Implemented Akismet Integration for enhanced spam protection and security in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11401\\">#11401<\\/a>)<\\/li>\\n<li>New: Introducing Permissions functionality to Element Manager - providing users with enhanced control over access and management capabilities<\\/li>\\n<li>Tweak: Added styling option for dropdown indicator in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21907\\">#21907<\\/a>)<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Implemented CSS logical properties in WordPress Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Reviews widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Countdown widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Updated <code>jquery.smartmenus.js<\\/code> version from 1.1.1 to 1.2.0<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21489\\">#21489<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22368\\">#22368<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23085\\">#23085<\\/a>)<\\/li>\\n<li>Fix: History panel deprecation notices in console log<\\/li>\\n<li>Fix: Second Pro rollback installed the latest version instead of the specifically selected older version<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation in Menu Widget<\\/li>\\n<li>Fix: UX issues when using in-place editing in Menu widget<\\/li>\\n<li>Fix: Pagination with page reload is not working when used with the Taxonomy filter and Loop Grid widget in Archive template<\\/li>\\n<\\/ul>\\n<h4>3.18.2 - 2023-12-20<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Price List widget<\\/li>\\n<li>Fix: Error messages related to loop filter appear on front when using PHP 8.X and <code>WP_DEBUG<\\/code> is true<\\/li>\\n<\\/ul>\\n<h4>3.18.1 - 2023-12-06<\\/h4>\\n<ul>\\n<li>Fix: No results appeared when reloading the page with deep link and de-selecting terms in Taxonomy Filter widget<\\/li>\\n<li>Fix: No results appeared when filtering the Uncategorized category in Filter Taxonomy widget<\\/li>\\n<li>Fix: Notes still available when the Notes feature is deactivated<\\/li>\\n<\\/ul>\\n<h4>3.18.0 - 2023-12-04<\\/h4>\\n<ul>\\n<li>Tweak: Added the ability to upload files as attachments to emails in the File Upload field in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4868\\">#4868<\\/a>)<\\/li>\\n<li>Tweak: Introduced the capability to design and edit the empty state in the Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/24261\\">#24261<\\/a>)<\\/li>\\n<li>Tweak: Implemented the option to close the menu content area with a click anywhere on the screen in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22686\\">#22686<\\/a>)<\\/li>\\n<li>Tweak: Improve scrolling behavior inside the content area when there is not enough space in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22712\\">#22712<\\/a>)<\\/li>\\n<li>Tweak: Expanded breakpoint options in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22488\\">#22488<\\/a>)<\\/li>\\n<li>Tweak: Added Logical Combination control in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added additional units to Horizontal and Vertical padding for Dropdown in WordPress Menu widget<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in Loop Carousel and Carousel widgets<\\/li>\\n<li>Tweak: Added various HTML Tag controls in Video Playlist widget<\\/li>\\n<li>Tweak: Added responsive control to navigation size in Slides, Reviews, Media Carousel and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Search Form widget<\\/li>\\n<li>Tweak: Added semantic <code>&lt;search&gt;<\\/code> wrapper in Taxonomy Filter widget<\\/li>\\n<li>Tweak: Added Multiple Selection control in Taxonomy Filter widget<\\/li>\\n<li>Fix: Deprecated notice when using ${var} in strings instead of {$var} with PHP 8.2 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23927\\">#23927<\\/a>)<\\/li>\\n<li>Fix: Dropdown indicator position issue in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23947\\">#23947<\\/a>)<\\/li>\\n<li>Fix: Dynamic Tags are not available when choosing ''self-hosted'' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Fix: Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\">#17523<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\">#17768<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\">#23430<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\">#23607<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\">#22554<\\/a>)<\\/li>\\n<li>Fix: ''Fallback: Recent Posts'' option malfunctions in the Query control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\">#21436<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &quot;Offset Sides&quot; functionality in Carousel and Loop Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21114\\">#21114<\\/a>)<\\/li>\\n<li>Tweak: Modified the size of the Publish button in the Editor Top Bar feature (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22472\\">#22472<\\/a>)<\\/li>\\n<li>Tweak: Improved Ajax permissions functionality for better security enforcement<\\/li>\\n<li>Tweak: Added option for pagination custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added option for navigation custom position in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added additional styling options for navigation in Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Added labels to shortcode column in WordPress admin<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in Menu widget<\\/li>\\n<li>Tweak: Unified the appearance of <code>stretch<\\/code> and <code>center<\\/code> buttons in My Account widget<\\/li>\\n<li>Tweak: Improved panel UI in Video Playlist widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Elementor Editor<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Price List widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Slides widget<\\/li>\\n<li>Tweak: Added &quot;Title HTML Tag&quot; and &quot;Description HTML Tag&quot; in Flip Box widget<\\/li>\\n<li>Tweak: Added &quot;Description HTML Tag&quot; in Call To Action widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Share Buttons widget<\\/li>\\n<li>Security Fix: Improved code security enforcement in Form widget<\\/li>\\n<li>Fix: WooCommerce Status page failed to recognize Elementor WooCommerce widgets<\\/li>\\n<li>Fix: Pagination does not work inside single templates when using Posts and Loop Grid widgets<\\/li>\\n<li>Fix: Incorrect saving of WooCommerce page settings in Elementor site settings under certain scenarios<\\/li>\\n<\\/ul>\\n<h4>3.14.1 - 2023-06-26<\\/h4>\\n<ul>\\n<li>Tweak: Improved navigation on touch devices in Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22827\\">#22827<\\/a>)<\\/li>\\n<li>Fix: Missing navigation arrows on lightbox in Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22870\\">#22870<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.14.0 - 2023-06-19<\\/h4>\\n<ul>\\n<li>New: Introducing Carousel widget - Infinite design possibilities, and nesting capabilities (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2587\\">#2587<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\">#219<\\/a>)<\\/li>\\n<li>Tweak: Added Static Item Position functionality to Alternate template in Loop Grid widget<\\/li>\\n<li>Tweak: Added visual indication of Page Parts<\\/li>\\n<li>Tweak: Added dividers option between menu items in Menu widget<\\/li>\\n<li>Tweak: Changed the HTML structure of Pagination and Navigation in Loop Carousel and Nested Carousel widgets<\\/li>\\n<li>Tweak: Added shop page in WooCommerce Pages section in Site Settings<\\/li>\\n<li>Tweak: Added Text Shadow, Box Shadow and Padding control to button in Call to Action widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Video Playlist widget<\\/li>\\n<li>Tweak: Added <code>alt<\\/code> attribute to images in Video Playlist widget<\\/li>\\n<li>Tweak: Replaced select control with choose control for Flip Direction control in Flip Box widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Carousel and Loop Carousel widgets<\\/li>\\n<li>Tweak: Use <code>media_types<\\/code> array in Media controls<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11193\\">#11193<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19871\\">#19871<\\/a>)<\\/li>\\n<li>Fix: Responsive settings for templates don''t work as expected when Additional Custom Breakpoints feature is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\">#16819<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn''t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\">#20256<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\">#21675<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added ''Active item state'' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget''s width when Content Width is set to Fit to Content in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\">#13678<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\">#17941<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the ''Gap between slides'' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &quot;Form Validation&quot; control to Form widget<\\/li>\\n<li>Tweak: Updated custom messages in the Form widget<\\/li>\\n<li>Tweak: Improved accessibility in various elements in Gallery widget<\\/li>\\n<li>Tweak: Form Submissions feature merged to version<\\/li>\\n<li>Tweak: Loop feature promoted to Stable status<\\/li>\\n<li>Tweak: Page Transitions feature promoted to Stable status<\\/li>\\n<li>Tweak: Improved accessibility in filter bar in Gallery widget<\\/li>\\n<li>Tweak: Remove unused <code>aspect-ratio-*<\\/code> CSS classes<\\/li>\\n<li>Fix: Not all active breakpoints appear under &quot;Advanced Rules&quot; in popup publish settings (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17020\\">#17020<\\/a>)<\\/li>\\n<li>Fix: Dynamic background image and video is not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.11.7 - 2023-03-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in WooCommerce components<\\/li>\\n<\\/ul>\\n<h4>3.11.6 - 2023-03-14<\\/h4>\\n<ul>\\n<li>Tweak: Improved code security enforcement in Author Box and Countdown widgets<\\/li>\\n<\\/ul>\\n<h4>3.11.5 - 2023-03-12<\\/h4>\\n<ul>\\n<li>Fix: Hamburger Menu Toggle not showing if breakpoint is set to Tablet Extra in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21003\\">#21003<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.4 - 2023-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Prevented SVG file upload for better security enforcement in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.11.3 - 2023-02-26<\\/h4>\\n<ul>\\n<li>Fix: Error message appears when submitting a form placed below Loop Grid and Loop Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21432\\">#21432<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x compatibility issues in various places<\\/li>\\n<\\/ul>\\n<h4>3.11.2 - 2023-02-22<\\/h4>\\n<ul>\\n<li>Fix: Save &amp; Back handle becomes inaccessible in various scenarios cases in Loop Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\">#21316<\\/a>)<\\/li>\\n<li>Fix: Can''t edit page when using ''Content Tabs'' and ''Section'' options in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.11.1 - 2023-02-15<\\/h4>\\n<ul>\\n<li>Fix: Featured Image dynamic tag is not working in Background images (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21313\\">#21313<\\/a>)<\\/li>\\n<li>Fix: Time zone is not correct in Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17485\\">#17485<\\/a>)<\\/li>\\n<li>Fix: File upload field is not working in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21341\\">#21341<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working in various widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21314\\">#21314<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.11.0 - 2023-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Carousel widget - Create powerful &amp; repeating loop templates and populate each one with dynamic content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/219\\">#219<\\/a>)<\\/li>\\n<li>New: Added Date and Time Range option to Advanced Rules in Popup<\\/li>\\n<li>Tweak: Improved accessibility when opening and closing a popup (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9788\\">#9788<\\/a>)<\\/li>\\n<li>Tweak: Improved accessibility of full-screen mode in Search Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19907\\">#19907<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility support to Flip Box widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5861\\">#5861<\\/a>)<\\/li>\\n<li>Tweak: Add <code>aria-label<\\/code> to read more link in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13784\\">#13784<\\/a>)<\\/li>\\n<li>Tweak: Use <code>aspect-ratio<\\/code> property instead of CSS trick in Media Carousel widget<\\/li>\\n<li>Tweak: Updated translation string in Stripe widget<\\/li>\\n<li>Fix: Masonry and Columns controls are not working as expected with responsive in Posts and Loop Grid widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20670\\">#20670<\\/a>)<\\/li>\\n<li>Fix: Invalid attributes names in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17400\\">#17400<\\/a>)<\\/li>\\n<li>Fix: Post Image Attachments dynamic tag is not working as expected in various widgets<\\/li>\\n<li>Fix: Form fields order is not presented correctly when exported to CSV in Form Submissions<\\/li>\\n<li>Fix: Dynamic background image and video are not working with ACF in Loop Grid widget<\\/li>\\n<\\/ul>\\n<h4>3.10.3 - 2023-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Added introduction video to loop item information modal in Theme Builder<\\/li>\\n<li>Fix: PHP 8.x throws errors and notices in some cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21087\\">#21087<\\/a>)<\\/li>\\n<li>Fix: Infinite Scroll and Load on click pagination are not working as expected in Archive template<\\/li>\\n<li>Fix: Show row even when values do not exist in Form Submissions<\\/li>\\n<\\/ul>\\n<h4>3.10.2 - 2023-01-17<\\/h4>\\n<ul>\\n<li>Fix: Updated compatibility tag for Elementor v3.10<\\/li>\\n<\\/ul>\\n<h4>3.10.1 - 2023-01-09<\\/h4>\\n<p>Fix: Preview Could not be loaded error message appears on pages containing the Loop Grid in a header or footer templates<\\/p>\\n<h4>3.10.0 - 2023-01-09<\\/h4>\\n<ul>\\n<li>New: Added new dynamic tag for due date in Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7737\\">#7737<\\/a>)<\\/li>\\n<li>Tweak: Added <code>modified<\\/code> and <code>comment_count<\\/code> to Order By in posts query control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11159\\">#11159<\\/a>)<\\/li>\\n<li>Tweak: Replaced <code>footer<\\/code> tag in Blockquote and Comments widgets for better semantics<\\/li>\\n<li>Fix: Compatibility issue in Imagify Media Library filters due to <code>_elementor_is_screenshot<\\/code> meta filter (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19988\\">#19988<\\/a>)<\\/li>\\n<li>Fix: Hotspot Widget label icon height issues when Inline Font Icons experiment is active<\\/li>\\n<li>Fix: Editing glitch when using two loop grid widgets on the same page with the same loop item template<\\/li>\\n<li>Fix: Equal height is not working when using sections in Loop Grid widget<\\/li>\\n<li>Fix: Large amount of menu items are not appearing correctly on a mobile device in Nav Menu widget<\\/li>\\n<li>Fix: Featured Image does not change dynamically when using infinite\\/click pagination in Loop Grid widget<\\/li>\\n<li>Fix: Removed action call of non-existent <code>display_empty_cart_template()<\\/code> method in Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.9.2 - 2022-12-21<\\/h4>\\n<ul>\\n<li>Fix: JS events do not trigger in Popups (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20708\\">#20708<\\/a>)<\\/li>\\n<li>Fix: PHP Errors appear when not using the toggle menu in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18636\\">#18636<\\/a>)<\\/li>\\n<li>Fix: Popups'' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn''t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to ''Show up to X times'' advanced rule in Popups (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added ''Equal height'' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-20<\\/h4>\\n<ul>\\n<li>Fix: Z-index issues when applying sticky to Container<\\/li>\\n<li>Fix: Error message appears on front with Editor and Shop Manager roles when using the Loop Builder widget<\\/li>\\n<\\/ul>\\n<h4>3.8.1 - 2022-11-06<\\/h4>\\n<ul>\\n<li>Fix: Sticky inner section is not staying in the column when applying sticky option in Sections (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20203\\">#20203<\\/a>)<\\/li>\\n<li>Fix: Post Title widget located in a loop item template disappears when enabling the hide title option inside page settings (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20207\\">#20207<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20255\\">#20255<\\/a>)<\\/li>\\n<li>Fix: ACF Dynamic data not rendering correctly in various scenarios (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20235\\">#20235<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20258\\">#20258<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20277\\">#20277<\\/a>)<\\/li>\\n<li>Fix: Z-index issues when applying sticky to Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20227\\">#20227<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.8.0 - 2022-10-30<\\/h4>\\n<ul>\\n<li>New: Introducing Loop Builder as a beta status experiment - Create powerful &amp; repeating loop templates and populate each one with dynamic content and design flexibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4440\\">#4440<\\/a>)<\\/li>\\n<li>Tweak: Add <code>wp_body_open()<\\/code> to header in Header template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11562\\">#11562<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15828\\">#15828<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13089\\">#13089<\\/a>)<\\/li>\\n<li>Tweak: Added support border-radius option to the Code Highlight widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14316\\">#14316<\\/a>)<\\/li>\\n<li>Tweak: Import\\/Export CLI and UI mechanisms were merged into a unified service<\\/li>\\n<li>Tweak: User with no permission to Notes cannot be mentioned in a note<\\/li>\\n<li>Tweak: User with no permission to view a post cannot be mentioned in a note<\\/li>\\n<li>Tweak: Notes was added to the right click context-menu<\\/li>\\n<li>Tweak: Notes panel can be resizable<\\/li>\\n<li>Tweak: Notes panel can be dragged outside of the canvas in responsive mode in the editor<\\/li>\\n<li>Tweak: Updated form validation messages translation strings in Form widget<\\/li>\\n<li>Tweak: Updated translators comments<\\/li>\\n<li>Tweak: Theme Builder logo and Title should be clickable<\\/li>\\n<li>Tweak: Reduced API requests and DB calls on non-write setup<\\/li>\\n<li>Tweak: Added media queries to the Table of Contents widget<\\/li>\\n<li>Fix: Sticky option is not working as expected in various scenarios in Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\">#18357<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19540\\">#19540<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19618\\">#19618<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19777\\">#19777<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19827\\">#19827<\\/a>)<\\/li>\\n<li>Fix: Mixed Content errors on HTTPS in Video Playlist Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18895\\">#18895<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18945\\">#18945<\\/a>)<\\/li>\\n<li>Fix: Note''s timestamp is being updated according to the last activity in Notes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label''s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\">#19553<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.7.4 - 2022-08-29<\\/h4>\\n<ul>\\n<li>Tweak: PHP 5.6 Is deprecated<\\/li>\\n<li>Fix: Triangle icon is not being displayed in the Select field when Inline Font Icons Experiment is active in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18598\\">#18598<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19495\\">#19495<\\/a>)<\\/li>\\n<li>Fix: The page jumps or flickers to the video playlist on page reload in Video Playlist Widget<\\/li>\\n<\\/ul>\\n<h4>3.7.3 - 2022-07-31<\\/h4>\\n<ul>\\n<li>Tweak: Improved license mechanism for correct validation<\\/li>\\n<li>Fix: Sticky option causes unexpected results when using the Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18357\\">#18357<\\/a>)<\\/li>\\n<li>Fix: Price list, Portfolio, Flip Box and Gallery widgets disappear when the direction is set to column in Container (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18880\\">#18880<\\/a>)<\\/li>\\n<li>Fix: Quotes character is showing up as <code>&amp;quot;<\\/code> when editing a note in Notes<\\/li>\\n<\\/ul>\\n<h4>3.7.2 - 2022-06-15<\\/h4>\\n<ul>\\n<li>Tweak: Applied optimized file handling in various modules<\\/li>\\n<li>Fix: Related posts query options are missing in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18633\\">#18633<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18641\\">#18641<\\/a>)<\\/li>\\n<li>Fix: Menu Cart Icon is not being displayed on all browsers when Inline Font Icons Experiment is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17705\\">#17705<\\/a>)<\\/li>\\n<li>Fix: Gallery widget is not working as expected in Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18408\\">#18408<\\/a>)<\\/li>\\n<li>Fix: Flip box is not visible when the direction is set to Row in Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18413\\">#18413<\\/a>)<\\/li>\\n<li>Fix: Portfolio widget is not visible when dragged into &quot;Row&quot; direction Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17653\\">#17653<\\/a>)<\\/li>\\n<li>Fix: Menu cart is open automatically in Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18629\\">#18629<\\/a>)<\\/li>\\n<li>Fix: PHP error is being shown the license is expired in License screen<\\/li>\\n<\\/ul>\\n<h4>3.7.1 - 2022-05-16<\\/h4>\\n<ul>\\n<li>Fix: Notes icon appears as an empty square in admin top bar for users with permissions lower than Editor<\\/li>\\n<li>Fix: Notes experiment causes a PHP fatal error on some cases<\\/li>\\n<li>Fix: UI glitches in Notes feature<\\/li>\\n<\\/ul>\\n<h4>3.7.0 - 2022-05-10<\\/h4>\\n<ul>\\n<li>New: Introducing Notes - Work collaboratively directly within Elementor<\\/li>\\n<li>New: Stripe Button widget - Collect Stripe payments directly from your site (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14748\\">#14748<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Add to Cart dynamic tag - add products to cart from every widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10607\\">#10607<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11801\\">#11801<\\/a>)<\\/li>\\n<li>New: Added WooCommerce Product Content dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16367\\">#16367<\\/a>)<\\/li>\\n<li>Tweak: Added Related, Upsells and Cross-Sells query sources to Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8071\\">#8071<\\/a>)<\\/li>\\n<li>Tweak: Added custom icon control to Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18007\\">#18007<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14357\\">#14357<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13151\\">#13151<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11361\\">#11361<\\/a>)<\\/li>\\n<li>Tweak: Added an option to minimize on Desktop device in Table of Contents widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9933\\">#9933<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10729\\">#10729<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10314\\">#10314<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\">#6327<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6691\\">#6691<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11774\\">#11774<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9051\\">#9051<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6327\\">#6327<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag controls to Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5760\\">#5760<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9774\\">#9774<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom option in various Product widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10263\\">#10263<\\/a>)<\\/li>\\n<li>Tweak: Added align button to bottom control in Posts and Archive Posts widgets<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added the ability to hide and show the coupon section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Cart widget<\\/li>\\n<li>Tweak: Added alignment option to various buttons in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added percentage unit to padding control in Additional Information customize section in WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added quick link to create new theme parts directly from the Finder<\\/li>\\n<li>Tweak: Added the option to add a custom template to Dashboard screen in My Account widget<\\/li>\\n<li>Tweak: Added spacing control to view cart button in various product widgets<\\/li>\\n<li>Tweak: Added the option to add a custom template to empty cart state in Cart widget<\\/li>\\n<li>Tweak: Adjusted the layout of the Payment Methods screen in the My Account widget<\\/li>\\n<li>Tweak: Added lazy load option to Media Carousel, Reviews and Testimonial Carousel widgets<\\/li>\\n<li>Tweak: Added Site Identity quick link to Logo widget<\\/li>\\n<li>Tweak: Added Site Identity quick link to Site Title widget<\\/li>\\n<li>Tweak: Created an attribute that allows disabling page transition for specific links<\\/li>\\n<li>Tweak: Added dynamic tag controls to Gallery widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Countdown widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Portfolio widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Price Table widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Login widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Blockquote widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Facebook Comments widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post Navigation widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Search Form widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Author Box widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Post info widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Posts widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Product Meta widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Archive Products widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Sitemap widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Reviews widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to Code Highlight widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to PayPal Button widget<\\/li>\\n<li>Tweak: Added dynamic tag controls to WooCommerce Checkout widget<\\/li>\\n<li>Tweak: Added missing PHP documentation to hooks<\\/li>\\n<li>Fix: Scrolling glitches on mobile devices when Sticky Effect is enabled (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17767\\">#17767<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18330\\">#18330<\\/a>)<\\/li>\\n<li>Fix: Only 1st honypot field is validated when using multiple honeypot fields in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18136\\">#18136<\\/a>)<\\/li>\\n<li>Fix: Checkout button background color is not working as expected in Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18289\\">#18289<\\/a>)<\\/li>\\n<li>Fix: Button labels are not accessible for screen readers in Share buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\">#8615<\\/a>)<\\/li>\\n<li>Fix: Downloads titles controls are not working in responsive in WooCommerce Purchase Summary widget<\\/li>\\n<li>Fix: Excerpt length is not working as expected in Posts and Archive Posts widgets<\\/li>\\n<li>Fix: Titles &amp; Totals weight is not working in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Product image is not appearing on Single Product Page on template load<\\/li>\\n<li>Fix: Additional Information title not editable in some scenarios in WooCommerce Checkout widget<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in Cart widget<\\/li>\\n<li>Fix: UI Glitch in Masonry control in Portfolio widget<\\/li>\\n<li>Fix: Custom breakpoints experiment didn''t work on Single post and page templates<\\/li>\\n<li>Fix: Testimonial carousel &amp; Reviews widgets disregards the <code>alt<\\/code> attribute<\\/li>\\n<li>Fix: Playlist widget deeplink didn''t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\">#18090<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn''t work in Custom Add To Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\">#17821<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\">#17839<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn''t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\">#17865<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\">#17942<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn''t work when WooCommerce is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn''t work when Improved asset loading experiment is active Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn''t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\">#5756<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\">#14570<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &amp; Theme Elements widgets to Improved CSS Loading experiment to save up 126KB per page load (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17412\\">#17412<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17337\\">#17337<\\/a>)<\\/li>\\n<li>Tweak: Added new layout options in WooCommerce Add To Cart and WooCommerce Custom Add To Cart widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5437\\">#5437<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10617\\">#10617<\\/a>)<\\/li>\\n<li>Tweak: Added Stroke functionality for typography control in various widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11158\\">#11158<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor-section-wrap<\\/code> by adding it to the Optimized DOM Output experiment (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16950\\">#16950<\\/a>)<\\/li>\\n<li>Tweak: Added style controls for variations in WooCommerce Menu Cart widget<\\/li>\\n<li>Tweak: Added color control to navigation dots in Media Carousel, Reviews, and Slides widgets<\\/li>\\n<li>Tweak: Disabled Vimeo autoplay on edit mode when getting video data in Video Playlist widget<\\/li>\\n<li>Tweak: Added notice about Facebook''s new EU consent policy in Facebook Button, Facebook Comments, Facebook Embed, and Facebook Page widgets<\\/li>\\n<li>Tweak: Refactor string translation calls to use native WP translation methods<\\/li>\\n<li>Tweak: Convert <code>home_url<\\/code> license API call to <code>get_site_url<\\/code> for better compatibility<\\/li>\\n<li>Tweak: Promoted Default to New Theme Builder and Scroll Snap experiments to Stable status in Experiments screen<\\/li>\\n<li>Tweak: Scroll Snap experiment set to active by default for all websites in Experiments screen<\\/li>\\n<li>Tweak: Scrolling Effects in Header and Section backgrounds are not working as expected when effects are relative to the entire page<\\/li>\\n<li>Tweak: Added &quot;Auto Updates&quot; capability to Pro versions<\\/li>\\n<li>Tweak: Removed sequenced animation hover effect option from Classic skin in Call to Action widget<\\/li>\\n<li>Tweak: Added &quot;Excerpt Length&quot; control in Post Excerpt widget<\\/li>\\n<li>Tweak: Deleted deprecated methods from Query Control module<\\/li>\\n<li>Tweak: Adjusted Inline-CSS Experiment to work with Additional Custom Breakpoints experiment<\\/li>\\n<li>Fix: Automatically open cart functionality didn''t work in product page in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\">#5921<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\">#16276<\\/a>,<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\">#16221<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\">#17283<\\/a>,<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\">#16333<\\/a>,<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\">#15304<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn''t 100% clickable in Post Navigation widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn''t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn''t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn''t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &quot;Need Help&quot; link is not correct in WooCommerce section in Site Settings<\\/li>\\n<\\/ul>\\n<h4>3.5.0 - 2021-11-01<\\/h4>\\n<ul>\\n<li>New: WooCommerce Checkout widget - Fully customize the content and style of your checkout page (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\">#15282<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15990\\">#15990<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\">#11014<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\">#13218<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce Cart widget - Style your cart page the way you want with design flexibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15282\\">#15282<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\">#11014<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13218\\">#13218<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\">#5383<\\/a>)<\\/li>\\n<li>New: WooCommerce My Account widget - Create a custom design for your my account pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11014\\">#11014<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5383\\">#5383<\\/a>)<\\/li>\\n<li>New: Progress Tracker widget - Motivate your customers to keep reading your site content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16576\\">#16576<\\/a>)<\\/li>\\n<li>New: Meet WooCommerce Site Settings - Set your store pages within Elementor<\\/li>\\n<li>Experiment: Scroll Snap - Set the scene of every scroll (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10752\\">#10752<\\/a>)<\\/li>\\n<li>Tweak: Changed infrastructure to prevent rendering bugs in Global Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16354\\">#16354<\\/a>)<\\/li>\\n<li>Tweak: Added the option to open submission in a new tab in Form Submissions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14967\\">#14967<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive controls in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1851\\">#1851<\\/a>)<\\/li>\\n<li>Tweak: Split Title and Price styling controls in Price List widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7688\\">#7688<\\/a>)<\\/li>\\n<li>Tweak: Added various responsive capabilities to controls in Posts Archive widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Changed admin notice content when Pro installed without Core installed<\\/li>\\n<li>Tweak: Cleanup in <code>wp_options<\\/code> table<\\/li>\\n<li>Tweak: Changed Connect logic in Elementor top bar to simplify the connect process<\\/li>\\n<li>Tweak: Marked new Theme Builder as an Experiment and set to default for new sites<\\/li>\\n<li>Tweak: Enforced better security policies in various widgets and modules<\\/li>\\n<li>Tweak: Added load more button functionality to the Posts Archive widget<\\/li>\\n<li>Tweak: Renamed Elementor''s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn''t work for not logged in users in Custom Code (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\">#14515<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can''t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn''t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\">#9531<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\">#10875<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\">#12126<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\">#1284<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don''t appear on the cart while editing in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn''t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn''t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &quot;Change&quot; Button without changing the name in Theme Builder<\\/li>\\n<li>Fix: Redundant pagination queries in the Editor<\\/li>\\n<li>Deprecated: Remove all usages of <code>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section''s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can''t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn''t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\">#15632<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\">#15683<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn''t appear in Submissions screen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn''t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\">#11859<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\">#7282<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\">#13859<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\">#10329<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\">#7376<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code''s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget<\\/li>\\n<li>Fix: Video item does not play without adding an image in Media Carousel widget<\\/li>\\n<li>Fix: <code>search-plus<\\/code> icon missing from panel in Media Carousel widget<\\/li>\\n<li>Fix: UI hover state glitch in Media Carousel widget<\\/li>\\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow<\\/li>\\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment<\\/li>\\n<li>Fix: Non english values are not encoded properly on Submissions export<\\/li>\\n<li>Fix: Theme Builder import is not working properly<\\/li>\\n<li>Fix: UI glitch when no global widgets were found in Editor Panel<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-3-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.2.2 - 2021-05-05<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Expert tier templates in Templates Library<\\/li>\\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x<\\/li>\\n<li>Tweak: Added compatibility for future Library improvements<\\/li>\\n<li>Fix: Toolset image dynamic field is not working with Gallery widget<\\/li>\\n<\\/ul>\\n<h4>3.2.1 - 2021-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added strings context in PayPal button and Price Table widgets<\\/li>\\n<li>Tweak: Added support for future Import \\/ Export Kit feature<\\/li>\\n<li>Fix: Submissions with over than 191 characters weren''t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted ''Max Height'' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in ''Reply To'' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted ''Max Height'' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475]\\">#11475<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\">#10690<\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can''t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\">#8572<\\/a>, <a href=\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\">#4625<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\">#5403<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\">#9749<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\">#4242<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule<\\/li>\\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets<\\/li>\\n<li>Tweak: Import scroll utility from core and remove it from Pro<\\/li>\\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9757\\">#9757<\\/a>)<\\/li>\\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons<\\/li>\\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin<\\/li>\\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12569\\">#12569<\\/a>)<\\/li>\\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Redundant spacing is added to Share Buttons widget<\\/li>\\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget<\\/li>\\n<li>Fix: Overflow issue in certain animations in Animated Headline widget<\\/li>\\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown<\\/li>\\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form<\\/li>\\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme<\\/li>\\n<li>Fix: Duplicate button Text Color control in Slides widget<\\/li>\\n<li>Fix: JS error is thrown when editing and saving global widgets<\\/li>\\n<li>Fix: <code>get_version<\\/code> API function may fail with Redis \\/ DB cache<\\/li>\\n<li>Fix: Multiple license check requests are created in certain cases<\\/li>\\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-1-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.0.10 - 2021-01-20<\\/h4>\\n<ul>\\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor v3.1.0<\\/li>\\n<\\/ul>\\n<h4>3.0.9 - 2020-12-29<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility to support Elementor 3.1.0<\\/li>\\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder<\\/li>\\n<li>Fix: Border color glitch in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.8 - 2020-11-26<\\/h4>\\n<ul>\\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13172\\">#13172<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.0.7 - 2020-11-25<\\/h4>\\n<ul>\\n<li>Fix: Console Error when dragging  Testimonials Carousel widget<\\/li>\\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites<\\/li>\\n<li>Fix: Removed the conditional loading of Webpack<\\/li>\\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge<\\/li>\\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues<\\/li>\\n<li>Fix: Gallery not displayed in Theme Builder templates preview<\\/li>\\n<\\/ul>\\n<h4>3.0.6 - 2020-11-04<\\/h4>\\n<ul>\\n<li>Tweak: Updated the embedded post in Facebook Embed widget<\\/li>\\n<li>Fix: Minor UI glitches in Theme Builder''s conditions screen footer<\\/li>\\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder<\\/li>\\n<li>Fix: Redundant Custom Caption option in Site Logo widget<\\/li>\\n<li>Fix: Removed unused code in Drip integration<\\/li>\\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget<\\/li>\\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets<\\/li>\\n<\\/ul>\\n<h4>3.0.5 - 2020-09-23<\\/h4>\\n<ul>\\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited<\\/li>\\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set<\\/li>\\n<li>Fix: Missing Single document placeholder in Theme Builder<\\/li>\\n<li>Fix: Document editing handles inherit the <code>font-family<\\/code> from 3rd party source<\\/li>\\n<li>Fix: Can''t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of ''get_create_url'' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn''t interfere with 3rd party plugins (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\">#12126<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can''t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn''t work in WordPress 5.5 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\">#12126<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view<\\/li>\\n<\\/ul>\\n<h4>3.0.2 - 2020-08-31<\\/h4>\\n<ul>\\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12312\\">#12312<\\/a>)<\\/li>\\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder<\\/li>\\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12299\\">#12299<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12275\\">#12275<\\/a>)<\\/li>\\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11809\\">#11809<\\/a>)<\\/li>\\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder<\\/li>\\n<li>Fix: Mixed templates import glitch in Theme Builder<\\/li>\\n<li>Fix: Card icon sizes in Theme Builder<\\/li>\\n<li>Fix: Preview button leads to <code>render_mode<\\/code> instead of preview when importing a template from the new Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.1 - 2020-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support<\\/li>\\n<li>Tweak: Updated video tutorials in Theme Builder<\\/li>\\n<li>Tweak: Don''t show auto-screenshots in the Media Library (Props <a href=\\"https:\\/\\/github.com\\/black-eye\\">@black-eye<\\/a>)<\\/li>\\n<li>Fix: Repeater items throws <code>childView<\\/code> is undefined message in Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12239\\">#12239<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12221\\">#12221<\\/a>)<\\/li>\\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12137\\">#12137<\\/a>)<\\/li>\\n<li>Fix: Facebook comments not showing up (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12157\\">#12157<\\/a>)<\\/li>\\n<li>Fix: Check for conflicts in Theme Builder doesn''t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren''t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\">#7351<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\">#7817<\\/a>, <a href=\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can''t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn''t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &quot;Progress Bar&quot; and &quot;None&quot; view types in Multi Step Form (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11596\\">#11596<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11610\\">#11610<\\/a>)<\\/li>\\n<li>Fix: Missing &quot;for&quot; attribute in Password field label in Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8646\\">#8646<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.2 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Fix: Run step events only when in Multi Step Form mode (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11644\\">#11644<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.10.1 - 2020-06-16<\\/h4>\\n<ul>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Changed control labels and ordering in Price Table, Lottie and Form widgets<\\/li>\\n<li>Fix: Popup close button vertical position glitch (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10921\\">#10921<\\/a>)<\\/li>\\n<li>Fix: Radio field placement glitch when in Multi Step mode in Form widget<\\/li>\\n<li>Fix: Clicking <code>Enter<\\/code> key submits the form in Multi Step Form<\\/li>\\n<li>Fix: Hardened sanitization in Custom Attributes to avoid security issues<\\/li>\\n<\\/ul>\\n<h4>2.10.0 - 2020-06-07<\\/h4>\\n<ul>\\n<li>New: Introducing Multi-Step Forms - Breakdown long forms into simple steps (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5975\\">#5975<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3911\\">#3911<\\/a>)<\\/li>\\n<li>New: Introducing Lottie widget - easily add Lottie animations to your site, no coding needed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11026\\">#11026<\\/a>)<\\/li>\\n<li>Tweak: Added spacing option to Posts widget pagination (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5682\\">#5682<\\/a>)<\\/li>\\n<li>Tweak: Changed texts and logic for administrator plugin renewal notices<\\/li>\\n<li>Tweak: Added new Scroll Util for improved scrolling handling<\\/li>\\n<li>Tweak: Improved Motion Effects animation performance<\\/li>\\n<\\/ul>\\n<h4>2.9.5 - 2020-05-24<\\/h4>\\n<ul>\\n<li>Fix: Added sanitization to Custom Attributes control to avoid security issue<\\/li>\\n<\\/ul>\\n<h4>2.9.4 - 2020-05-07<\\/h4>\\n<ul>\\n<li>Fix: Hardened user role that is allowed to upload icon sets and unzip only allowed files in Custom Icons to prevent security vulnerability<\\/li>\\n<\\/ul>\\n<h4>2.9.3 - 2020-04-19<\\/h4>\\n<ul>\\n<li>Fix: Form shortcode IDs are not wrapped in double-quotes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11023\\">#11023<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10932\\">#10932<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10967\\">#10967<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11000\\">#11000<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11049\\">#11049<\\/a>)<\\/li>\\n<li>Fix: Escaped Form records metadata to prevent security vulnerability<\\/li>\\n<li>Fix: Closing &quot;Save Changes&quot; document confirmation modal causes Panel infinite loading<\\/li>\\n<li>Fix: Ken Burns effect not working when there is only one slide in Slides widget<\\/li>\\n<li>Fix: Document handles UI glitch<\\/li>\\n<\\/ul>\\n<h4>2.9.2 - 2020-03-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility with WordPress v5.4 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10745\\">#10745<\\/a>)<\\/li>\\n<li>Fix: Image ratio number is displayed under the Archive Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10874\\">#10874<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color setting overrides the Table of Content list style<\\/li>\\n<li>Fix: PHP notice when using dynamic user info <code>id<\\/code><\\/li>\\n<li>Fix: Navigation arrows direction is crossed on first drag in Slides Widget<\\/li>\\n<li>Fix: &quot;No headings were found on this page&quot; message was not displayed in the frontend in Table of Contents widget<\\/li>\\n<li>Fix: Container includes Popup tags by default in Table of Contents widget<\\/li>\\n<li>Fix: Twitter icon display issue when Font Awesome 4 support is disabled in Blockquote widget<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<\\/ul>\\n<h4>2.9.1 - 2020-03-16<\\/h4>\\n<ul>\\n<li>Fix: Can''t access Elementor Editor when there is Page Title widget in the page<\\/li>\\n<li>Fix: Applying styling to Post Content widget affects the Page and Post editing handles<\\/li>\\n<\\/ul>\\n<h4>2.9.0 - 2020-03-15<\\/h4>\\n<ul>\\n<li>New: Introducing Full Site Editing: Design header, footer, and content all in one place! (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4985\\">#4985<\\/a>)<\\/li>\\n<li>New: Added Global Custom CSS for Your Entire Site in Theme Style (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3345\\">#3345<\\/a>)<\\/li>\\n<li>New: Added Dynamic Colors tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6485\\">#6485<\\/a>)<\\/li>\\n<li>Tweak: Added option to set the Site Part HTML Wrapper Tags (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9293\\">#9293<\\/a>)<\\/li>\\n<li>Tweak: Added Link Attributes support to Pro widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5716\\">#5716<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3642\\">#3642<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9225\\">#9225<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9079\\">#9079<\\/a>)<\\/li>\\n<li>Tweak: Added Theme Style support in Theme Builder parts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10564\\">#10564<\\/a>)<\\/li>\\n<li>Tweak: Avoid creating empty Custom Font<\\/li>\\n<li>Tweak: Added <code>aria-expanded<\\/code> attribute to Menu Cart widget<\\/li>\\n<li>Tweak: Moved Link Actions module to Core plugin<\\/li>\\n<li>Tweak: Changed the name of \\u201cTypeKit Web Fonts by Adobe\\u201d to \\u201cAdobe Fonts\\u201d<\\/li>\\n<li>Tweak: Removed redundant display conditions from Blockquote, Flipbox, Price Table, and Search Form widgets<\\/li>\\n<li>Tweak: Pro widgets are not draggable unless Elementor license has been activated<\\/li>\\n<li>Tweak: Remove redundant <code>label_block<\\/code> parameters from several controls<\\/li>\\n<li>Tweak: Converted controls selectors to CSS variables in Gallery widget<\\/li>\\n<li>Tweak: Replaced Stumbleupon with Mix in Reviews widget recommended icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added Mix to the Share Buttons network list (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10099\\">#10099<\\/a>)<\\/li>\\n<li>Tweak: Added &quot;Open in new tab&quot; option to Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7924\\">#7924<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.12.0<\\/li>\\n<li>Tweak: Added new Lightbox compatibility for Gallery and Media Carousel widgets<\\/li>\\n<li>Tweak: Expose external API for Swiper instances<\\/li>\\n<li>Tweak: Added compatibility to JS API in Theme Builder, Popups, Form widget and Global widget<\\/li>\\n<li>Tweak: Replaced nerd icons with new Elementor emojis<\\/li>\\n<li>Tweak: Added specific <code>color<\\/code> attribute to header title in Table of Contents widget<\\/li>\\n<li>Fix: Line break issues in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10585\\">#10585<\\/a>)<\\/li>\\n<li>Fix: Theme Style Link color overrides the Table of Content list style<\\/li>\\n<li>Fix: Active state glitches when using Table of contents widget with Sticky mode<\\/li>\\n<li>Fix: &quot;Graphic Element&quot; section appears as empty in case of unmarked Graphic Element in Call to Action widget<\\/li>\\n<li>Fix: Page Title widget render glitches in the Editor<\\/li>\\n<li>Fix: Image ratio parameter visible in some edge cases in Posts widget<\\/li>\\n<li>Fix: Image missing when sharing to Pinterest using Share Buttons widget<\\/li>\\n<li>Fix: Theme Style Link color setting override the list style in Table of Contents widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\"https:\\/\\/developers.elementor.com\\/v2-9-0-planned-deprecations\\/\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.8.5 - 2020-03-08<\\/h4>\\n<ul>\\n<li>Tweak: Added new Swiper parameter to all Pro carousels to allow 3rd party integration<\\/li>\\n<li>Fix: Missing closing bracket in Animated Headline widget<\\/li>\\n<li>Fix: Share buttons widgets show Font Awesome 4 icons on first drag in Editor<\\/li>\\n<\\/ul>\\n<h4>2.8.4 - 2020-02-16<\\/h4>\\n<ul>\\n<li>Tweak: Added Lightbox Title &amp; Description support to Gallery widget<\\/li>\\n<li>Tweak: Added RTL support for Slides widget<\\/li>\\n<li>Tweak: Display Lightbox images in Full size in Gallery widget<\\/li>\\n<li>Fix: Template with Slides widget not working properly when placed inside Tabs, Accordion and Toggle widget<\\/li>\\n<li>Fix: Dropdown menu lost styling after Elementor Pro v2.8 upgrade in Nav Menu widget<\\/li>\\n<li>Fix: Indent doesn''t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don''t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &quot;Reply To&quot; option not working in Form widget &quot;Email 2&quot; Action<\\/li>\\n<li>Fix: ACF Dynamic tag not working in Form widget Redirect action<\\/li>\\n<li>Fix: Underline option not working in Table of Contents widget Normal state<\\/li>\\n<li>Fix: Query Control <code>Undefined index: autocomplete<\\/code> notice in some cases<\\/li>\\n<li>Fix: Missing display condition to Read More Spacing control in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.8.2 - 2019-12-19<\\/h4>\\n<ul>\\n<li>Tweak: Improved scroll-spy and collapsing functionality in Table of Contents widget<\\/li>\\n<li>Fix: &quot;No products were found&quot; message not being displayed in an empty Products Archive<\\/li>\\n<li>Fix: Redundant <code>&lt;br&gt;<\\/code> tags in Single theme template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9927\\">#9927<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9928\\">#9928<\\/a>)<\\/li>\\n<li>Fix: Draft Popup shows up in Dynamic tag dropdown<\\/li>\\n<\\/ul>\\n<h4>2.8.1 - 2019-12-18<\\/h4>\\n<ul>\\n<li>Fix: Share Buttons widget not working (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9920\\">#9920<\\/a>)<\\/li>\\n<li>Fix: Redundant <code>&lt;p&gt;<\\/code> tags added to Single Template posts<\\/li>\\n<\\/ul>\\n<h4>2.8.0 - 2019-12-18<\\/h4>\\n<ul>\\n<li>New: Table of Contents Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5171\\">#5171<\\/a>)<\\/li>\\n<li>New: Added Font Awesome Pro Duotone font family support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added Lazy Load option to Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9763\\">#9763<\\/a>)<\\/li>\\n<li>Tweak: Added Random order option to Gallery widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9269\\">#9269<\\/a>)<\\/li>\\n<li>Tweak: Updated Font Awesome Pro to v5.11.2 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9578\\">#9578<\\/a>)<\\/li>\\n<li>Tweak: Added preselect support for multiple default select values in Forms Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9324\\">#9324<\\/a>)<\\/li>\\n<li>Tweak: Avoid duplicate queries for Custom Icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9579\\">#9579<\\/a>)<\\/li>\\n<li>Tweak: Major performance improvements to Gallery widget<\\/li>\\n<li>Tweak: Avoid non-existing images in Gallery widget<\\/li>\\n<li>Tweak: Added <code>tabindex<\\/code>, <code>aria-expanded<\\/code>, <code>aria-hidden<\\/code> and <code>role=\\"navigation\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &quot;undefined Index&quot; notice (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7646\\">#7646<\\/a>)<\\/li>\\n<li>Fix: WooCommerce Mini-Cart widget causes fatal error in edge cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9304\\">#9304<\\/a>)<\\/li>\\n<li>Fix: <code>PHP Notice: Undefined index<\\/code> display for Author query (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9864\\">#9864<\\/a>)<\\/li>\\n<li>Fix: Added compatibility for Button widget placed inside Swiper carousel (<a href=\\"https:\\/\\/wordpress.org\\/support\\/topic\\/broken-buttons-since-elementor-2-8\\/\\">Topic<\\/a>)<\\/li>\\n<li>Fix: Avoid empty spaces in Post info widget<\\/li>\\n<li>Tweak: Always show &quot;Custom label&quot; control in Login widget<\\/li>\\n<li>Fix: Nav Menu item typography selector in Nav Menu widget<\\/li>\\n<li>Fix: Facebook Like Button widget causes flickering<\\/li>\\n<li>Fix: WooCommerce mini-cart behaviour when using <code>plain<\\/code> permalinks format<\\/li>\\n<li>Fix: Avoid running Popup triggers when set without conditions<\\/li>\\n<li>Fix: Removed &quot;Date&quot; query from Products widget<\\/li>\\n<li>Fix: Slides widget when used as a Shortcode and is hidden<\\/li>\\n<li>Fix: Custom URL being accessed on swipe in Media Carousel<\\/li>\\n<li>Fix: Media Carousel widget Cube effect glitch<\\/li>\\n<li>Fix: Lightbox shows images from multiple Gallery widgets in the same page<\\/li>\\n<li>Fix: Image <code>alt<\\/code> Text not displayed on overlay in Gallery widget<\\/li>\\n<li>Fix: Gallery widget not visible in Posts widget Full Content skin<\\/li>\\n<li>Fix: WooCommerce mini-cart remove unnecessary hooks registration when WooCommerce integration set to <code>Disable<\\/code><\\/li>\\n<li>Fix: Slides widget button wrapping breaks in mobile view<\\/li>\\n<li>Fix: Dynamic capabilities with the Reviews widget<\\/li>\\n<li>Fix: Disabling autoplay doesn''t work in Slides widget<\\/li>\\n<li>Fix: Posts widget Full Content skin not working on Single template<\\/li>\\n<li>Fix: Autocomplete not working for &quot;By Author&quot; condition in Display Conditions screen<\\/li>\\n<li>Fix: Posts widget alignment issue<\\/li>\\n<li>Fix: Product Variations Clear button not working in edge cases<\\/li>\\n<li>Fix: Styling issues in Form widget submit button<\\/li>\\n<\\/ul>\\n<h4>2.7.3 - 2019-10-28<\\/h4>\\n<ul>\\n<li>Tweak: Added RTL support to Galleries widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9213\\">#9213<\\/a>)<\\/li>\\n<li>Tweak: Added Custom Icons compatibility for WordPress 5.3<\\/li>\\n<li>Fix: Missing template function declaration causes fatal error in WC mini-cart widget<\\/li>\\n<li>Fix: Pause on hover doesn''t work in Carousel widgets<\\/li>\\n<li>Fix: Link-actions conflict with <code>?action=<\\/code> parameter in the URL<\\/li>\\n<li>Fix: Lightbox navigation not working in Gallery widget Single mode<\\/li>\\n<li>Fix: Ken burns effect not working on the 1st slide if Infinite Loop option is turned off in Carousel widgets<\\/li>\\n<li>Fix: Popup Advanced Rules detects internal links as external if current URL starts with <code>www<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.7.2 - 2019-10-06<\\/h4>\\n<ul>\\n<li>Fix: Slide Overlay not working when applying Ken burns effect in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9209\\">#9209<\\/a>)<\\/li>\\n<li>Fix: Content width glitch in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Horizontal Alignment not working when applying custom style per slide in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Missing semicolon in Custom Fonts <code>font-display<\\/code> CSS<\\/li>\\n<\\/ul>\\n<h4>2.7.1 - 2019-09-26<\\/h4>\\n<ul>\\n<li>Fix: Background Overlay layer is over the slide content in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9180\\">#9180<\\/a>)<\\/li>\\n<li>Fix: Duplicate images under &quot;All&quot; filter in Multiple Gallery<\\/li>\\n<\\/ul>\\n<h4>2.7.0 - 2019-09-24<\\/h4>\\n<ul>\\n<li>New: Enhanced Galleries widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1898\\">#1898<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3103\\">#3103<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4279\\">#4279<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7631\\">#7631<\\/a>)<\\/li>\\n<li>New: Dynamic Number (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5952\\">#5952<\\/a>)<\\/li>\\n<li>New: Full content skin for Posts and Archive-posts widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4617\\">#4617<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic number capability to Price List, Price Table, Counter, Star Rating, Progress Bar widgets<\\/li>\\n<li>Tweak: Added tags support to forms Mailchimp action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5418\\">#5418<\\/a>)<\\/li>\\n<li>Tweak: User Profile Picture Dynamic Tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7947\\">#7947<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8740\\">#8740<\\/a>)<\\/li>\\n<li>Tweak: Added <code>font-display<\\/code> support to custom fonts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5993\\">#5993<\\/a>, <a href=\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-custom-fonts-font-display-support\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Text Shadow control to Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8800\\">#8800<\\/a>)<\\/li>\\n<li>Tweak: Added Re-subscribe support to MailerLite (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8799\\">#8799<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Facebook Embed widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9030\\">#9030<\\/a>)<\\/li>\\n<li>Tweak: Use <code>swiper.js<\\/code> instead of <code>slick.js<\\/code> in Slides widget (<a href=\\"https:\\/\\/developers.elementor.com\\/elementor-2-7-moving-sliders-from-slick-to-swiper\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/before_input<\\/code> action hook to Search Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/search_form\\/after_input<\\/code> action hook to Search Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5598\\">#5598<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic support for Custom field key (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7789\\">#7789<\\/a>)<\\/li>\\n<li>Tweak: Increased expired license notice bar frequency<\\/li>\\n<li>Tweak: Changed the icon name of Slides widget<\\/li>\\n<li>Tweak: Added designated Finder''s Icons for Custom icons &amp; Custom fonts<\\/li>\\n<li>Tweak: Use Ken Burns Effect as an external module<\\/li>\\n<li>Tweak: Remove Fontello conflicting CSS on import to Custom Icons sets<\\/li>\\n<li>Tweak: Editor Panel UI tweaks<\\/li>\\n<li>Tweak: Added DOM events on Popup show\\/hide (<a href=\\"https:\\/\\/developers.elementor.com\\/elementor-pro-2-7-popup-events\\/\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added option to change the variations field width in Add to Cart widget<\\/li>\\n<li>Tweak: Use select control instead of select2 in Menu Cart widget<\\/li>\\n<li>Tweak: Added conditions to the tabs instead of to each control in Share Buttons widget<\\/li>\\n<li>Tweak: Added Typography controls to HTML field in Forms widget<\\/li>\\n<li>Tweak: Allow edit selected Font file in Custom Font<\\/li>\\n<li>Tweak: Changed reCAPTCHA v3 error message<\\/li>\\n<li>Tweak: Remove the &quot;Save as Global&quot; option on Global widget context menu<\\/li>\\n<li>Fix: Corrected selector for <code>removeControlSpinner()<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8790\\">#8790<\\/a>)<\\/li>\\n<li>Fix: Slides widget navigation icons misplacement (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8533\\">#8533<\\/a>)<\\/li>\\n<li>Fix: Horizontal Scrollbar when Slider widget is set to Full Width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8527\\">#8527<\\/a>)<\\/li>\\n<li>Fix: Inconsistent behavior when &quot;Infinite Loop&quot; enabled with &quot;Autoplay&quot; in Slides widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6726\\">#6726<\\/a>)<\\/li>\\n<li>Fix: Ken Burns effect on Chrome transition glitches (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1671\\">#1671<\\/a>)<\\/li>\\n<li>Fix: Nothing found message shows up inside the columns set in Posts Archive widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7347\\">#7347<\\/a>)<\\/li>\\n<li>Fix: Responsive UI glitch in Popup Conditions modal tabs<\\/li>\\n<li>Fix: Removed unnecessary divider in Call to Action widget<\\/li>\\n<li>Fix: Custom Add To Cart * button style (size, position and background color) when <code>quantity<\\/code> is enabled.<\\/li>\\n<li>Fix: Add support for Document\\/PageBase in Theme Builder (Core &gt;=2.7.0)<\\/li>\\n<li>Fix: Ampersand character breaks email link in Share Buttons widget<\\/li>\\n<li>Fix: Correct custom font attachment <code>mime-type<\\/code> to show uploaded Custom Fonts<\\/li>\\n<li>Fix: Mini-Cart not refreshing in Menu Cart widget<\\/li>\\n<li>Fix: Cart drawer not working when WC Subscriptions plugin is activated<\\/li>\\n<li>Fix:  Querying CPT with custom taxonomies does not show the taxonomies before saving<\\/li>\\n<li>Fix: Double rendering on change caused console error in Theme Builder''s conditions screen<\\/li>\\n<li>Fix: Translations and Strings in Share Buttons widget<\\/li>\\n<li>Fix: Avoid using offset if the source is Manual selection in Query Control<\\/li>\\n<li>Fix: Form being submitted although reCAPTCHA v3 validation failed in Forms widget<\\/li>\\n<\\/ul>\\n<h4>2.6.5 - 2019-08-26<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Button style not working when <code>quantity<\\/code> is enabled in Custom Add To Cart widget<\\/li>\\n<li>Fix: Updated minified JS file fixed WhatsApp base URL in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>2.6.4 - 2019-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.7<\\/li>\\n<li>Fix: Changed WhatsApp base URL in Share Buttons widget for cross-device compatibility<\\/li>\\n<li>Fix: Random slides order after several clicks on pagination in Testimonial Carousel widget<\\/li>\\n<\\/ul>\\n<h4>2.6.3 - 2019-08-18<\\/h4>\\n<ul>\\n<li>Fix: Core version rollback to <code>&gt;2.6.0<\\/code> causes a fatal error<\\/li>\\n<li>Fix: Duplicate images when slideshow skin is selected in Media Carousel lightbox<\\/li>\\n<li>Fix: Default bottom margin added to reCAPTCHA V3 badge<\\/li>\\n<li>Fix: Input glitch in reCAPTCHA V3 threshold settings<\\/li>\\n<\\/ul>\\n<h4>2.6.2 - 2019-07-30<\\/h4>\\n<ul>\\n<li>Tweak: Better accessibility support in Search Form widget<\\/li>\\n<li>Fix: UI glitched in Popup publish screen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8616\\">#8616<\\/a>)<\\/li>\\n<li>Fix: &quot;Child of Term&quot; and &quot;Any child of term&quot; conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8695\\">#8695<\\/a>)<\\/li>\\n<li>Fix: Restored <code>library_widget_templates<\\/code> action hook for 3rd party compatibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8687\\">#8687<\\/a>)<\\/li>\\n<li>Fix: Twitter Icon missing in Blockquote widget<\\/li>\\n<li>Fix: Form reCAPTCHA v3 badge position not working<\\/li>\\n<li>Fix: Renewal notice bar appears in wrong situations<\\/li>\\n<li>Fix: Draft Icon Set loads empty Icon Library<\\/li>\\n<\\/ul>\\n<h4>2.6.1 - 2019-07-24<\\/h4>\\n<ul>\\n<li>Fix: Query Control autocomplete not retrieving results (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8672\\">#8672<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8661\\">#8661<\\/a>)<\\/li>\\n<li>Fix: Price Table features section not working (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8660\\">#8660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.6.0 - 2019-07-23<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Icon sets - including Fontello, IcoMoon and Fontastic support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/110\\">#110<\\/a>)<\\/li>\\n<li>New: Added Font Awesome 5 Pro integration including 5,300+ icons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4430\\">#4430<\\/a>)<\\/li>\\n<li>New: Added reCAPTCHA v3 integration to Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8213\\">#8213<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6039\\">#6039<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7165\\">#7165<\\/a>)<\\/li>\\n<li>Tweak: Added Exit Animation for Popups (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7063\\">#7063<\\/a>)<\\/li>\\n<li>Tweak: Added ACF Dynamic tag support for archive pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5147\\">#5147<\\/a>)<\\/li>\\n<li>Tweak: Added Navigator Indicators for Custom CSS &amp; Motion Effects (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2180\\">#2180<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Form Redirect action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7552\\">#7552<\\/a>)<\\/li>\\n<li>Tweak: Added Logged In Message styling options for Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7928\\">#7928<\\/a>)<\\/li>\\n<li>Tweak: Added <code>none<\\/code> breakpoint option to Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7916\\">#7916<\\/a>)<\\/li>\\n<li>Tweak: Added option to place Post Terms dynamic tag without links (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8366\\">#8366<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor\\/query\\/query_results<\\/code> hook to Query Control to allow full control over results (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7912\\">#7912<\\/a>)<\\/li>\\n<li>Tweak: Allow choosing Heading HTML tag in Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8090\\">#8090<\\/a>)<\\/li>\\n<li>Tweak: Show popup on dynamic click even when <code>Avoid Multiple Popups<\\/code> option is selected (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8189\\">#8189<\\/a>)<\\/li>\\n<li>Tweak: Added condition option to all of archive child pages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8256\\">#8256<\\/a>)<\\/li>\\n<li>Tweak: Added <code>Effects Relative To<\\/code> control to Scrolling Effects<\\/li>\\n<li>Tweak: Allow shortcodes in HTML Form field<\\/li>\\n<li>Tweak: Removed donReach integration from Share Buttons widget due to service inconsistent stability<\\/li>\\n<li>Tweak: Changed MailChimp <code>List<\\/code> label to <code>Audience<\\/code><\\/li>\\n<li>Tweak: Improved Entrance and Exit animation behavior in Popup<\\/li>\\n<li>Tweak: Added <code>Deprecated Notice<\\/code> control to <code>Archive Products<\\/code> and <code>Woo Products<\\/code> widgets<\\/li>\\n<li>Tweak: Added default dynamic title for archives in Theme Builder<\\/li>\\n<li>Tweak: Added condition to show <code>Centered Slides<\\/code> control in Media Carousel widget<\\/li>\\n<li>Tweak: Added notice bar in the Editor when the license is expired or not activated<\\/li>\\n<li>Tweak: Replaced <code>select<\\/code> control with <code>choose<\\/code> control in Price List widget<\\/li>\\n<li>Tweak: Removed Font Awesome 4 dependencies from the Editor<\\/li>\\n<li>Tweak: Minor styling tweaks in the Popup publish modal<\\/li>\\n<li>Tweak: Hide ordering form in Products widget on front page<\\/li>\\n<li>Tweak: Removed page title markup when ''Hide Title'' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &amp; Columns values in Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8261\\">#8261<\\/a>)<\\/li>\\n<li>Fix: Do not unset <code>product<\\/code> CPT if it''s not from WooCommerce (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8160\\">#8160<\\/a>)<\\/li>\\n<li>Fix: Column Spacing not working in WooCommerce Archive Products widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8285\\">#8285<\\/a>)<\\/li>\\n<li>Fix: Title styling not working in Products Categories widget<\\/li>\\n<li>Fix: Empty value in Dynamic Pods Gallery dropdown using Safari browser<\\/li>\\n<li>Fix: WooCommerce archives included in &quot;All Archives&quot; condition<\\/li>\\n<\\/ul>\\n<h4>2.5.9 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>auto-confirm<\\/code> control from MailPoet to support new version of MailPoet<\\/li>\\n<li>Fix: Multiple Custom Fonts not rendered in the editor<\\/li>\\n<li>Fix: Products <code>sale<\\/code> query - handle exclude by manual selection.<\\/li>\\n<li>Fix: Product Categories grid row &amp; column style<\\/li>\\n<li>Fix: Form integration AJAX cache override<\\/li>\\n<li>Fix: Removed redundant CSS on Canvas &amp; Header-Footer page templates<\\/li>\\n<\\/ul>\\n<h4>2.5.8 - 2019-05-06<\\/h4>\\n<ul>\\n<li>Fix: Popup entrance animation not working in frontend<\\/li>\\n<li>Fix: Popup Exit Intent trigger activated multiple times<\\/li>\\n<\\/ul>\\n<h4>2.5.7 - 2019-05-05<\\/h4>\\n<ul>\\n<li>Fix: Embedded video keeps playing after a Popup is closed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7875\\">#7875<\\/a>)<\\/li>\\n<li>Fix: Maximum call stack size exceeded error in Safari (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7824\\">#7824<\\/a>)<\\/li>\\n<li>Fix: Entrance animations not appearing on Popup reopen (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7395\\">#7395<\\/a>)<\\/li>\\n<li>Fix: WC variations select style glitch in several themes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8008\\">#8008<\\/a>)<\\/li>\\n<li>Fix: Theme Builder taxonomy conditions not retrieving proper results in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.5.6 - 2019-04-29<\\/h4>\\n<ul>\\n<li>Tweak: Removed <code>Shortcode<\\/code> dynamic from Image, Gallery and Media control<\\/li>\\n<li>Fix: Popup not inheriting entrance animation in responsive mode (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7809\\">#7809<\\/a>)<\\/li>\\n<li>Fix: Terms autocomplete retrieves wrong results in Query Control<\\/li>\\n<li>Fix: Query Control Related by author glitches in edge cases<\\/li>\\n<li>Fix: Query Control using terms for Products widget<\\/li>\\n<li>Fix: Posts cards style glitch in small screens<\\/li>\\n<li>Fix: Display conditions delete icon missing in small screens<\\/li>\\n<li>Fix: Avoid rendering Menu Cart widget in WordPress native editor<\\/li>\\n<\\/ul>\\n<h4>2.5.5 - 2019-04-08<\\/h4>\\n<ul>\\n<li>Tweak: Allow text selection inside a Popup<\\/li>\\n<li>Fix: Added backwards compatibility for <code>tax_query<\\/code> in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7751\\">#7751<\\/a>)<\\/li>\\n<li>Fix: Missing arguments for <code>widget_title<\\/code> filter (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7745\\">#7745<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.4 - 2019-04-03<\\/h4>\\n<ul>\\n<li>Fix: Move Query from using <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\">#7653<\\/a>)<\\/li>\\n<li>Fix: Offset manipulation hook removal in Query control<\\/li>\\n<li>Fix: Missing form field <code>ID<\\/code> in some edge cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7711\\">#7711<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7660\\">#7660<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.3 - 2019-03-31<\\/h4>\\n<ul>\\n<li>Tweak: Updated Google Calendar dynamic tag URL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7673\\">#7673<\\/a>)<\\/li>\\n<li>Fix: Missing form field names (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7651\\">#7651<\\/a>)<\\/li>\\n<li>Fix: PHP 5.4 backward compatibility in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7633\\">#7633<\\/a>)<\\/li>\\n<li>Fix: <code>products_deprecated<\\/code> Query Control module compatibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7654\\">#7654<\\/a>)<\\/li>\\n<li>Fix: Changed query method from <code>term_id<\\/code> to <code>term_taxonomy_id<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7653\\">#7653<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.2 - 2019-03-27<\\/h4>\\n<ul>\\n<li>Fix: Overwrite parent widget type in Global Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7632\\">#7632<\\/a>)<\\/li>\\n<li>Fix: Avoid Duplicates option not working in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7635\\">#7635<\\/a>)<\\/li>\\n<li>Fix: Manual Selection option not working in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7634\\">#7634<\\/a>)<\\/li>\\n<li>Fix: Incorrect condition caused handlers issues inside popup<\\/li>\\n<\\/ul>\\n<h4>2.5.1 - 2019-03-26<\\/h4>\\n<ul>\\n<li>Fix: Query Control invalid call to deprecated action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7619\\">#7619<\\/a>)<\\/li>\\n<li>Tweak: Renamed action hook from <code>elementor_pro\\/{$widget_name}\\/query\\/{$query_id}<\\/code> to <code>elementor\\/query\\/{$query_id}<\\/code><\\/li>\\n<li>Tweak: Renamed filter hook from <code>elementor_pro\\/query_control\\/get_query_args\\/current_query<\\/code> to <code>elementor\\/query\\/get_query_args\\/current_query<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.5.0 - 2019-03-26<\\/h4>\\n<ul>\\n<li>New: Introducing Motion Effects including Scrolling &amp; Mouse effects (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/72\\">#72<\\/a>)<\\/li>\\n<li>New: Introducing Related Posts for Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7306\\">#7306<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7490\\">#7490<\\/a>)<\\/li>\\n<li>New: Introducing Date query for Query Control<\\/li>\\n<li>New: Introducing Sticky Posts support for Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2501\\">#2501<\\/a>)<\\/li>\\n<li>Tweak: Added option to open a Popup by a custom selector (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6871\\">#6871<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6876\\">#6876<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Option to count when Popup is closed in &quot;Show up to X times&quot; Advanced Rule<\\/li>\\n<li>Tweak: Added full border radius control options inside Popup<\\/li>\\n<li>Tweak: Changed exit intent icon in Popups<\\/li>\\n<li>Tweak: Show only one popup in its own preview<\\/li>\\n<li>Tweak: Added responsive support to Popup entrance animation control<\\/li>\\n<li>Tweak: Conditions - Singular <code>All Pages<\\/code> string changed to <code>Pages<\\/code><\\/li>\\n<li>Tweak: Added form field shortcode support for Drip tags (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7000\\">#7000<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Price List widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7258\\">#7258<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Custom Attributes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6779\\">#6779<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities to Flip Box widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6986\\">#6986<\\/a>)<\\/li>\\n<li>Tweak: Decrease <code>z-index<\\/code> for Nav Menu (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6869\\">#6869<\\/a>)<\\/li>\\n<li>Tweak: Changed &quot;Scrolling Effects&quot; section label to &quot;Motion Effects&quot;<\\/li>\\n<li>Tweak: Use filter <code>get_meta_viewport<\\/code> for header templates (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7043\\">#7043<\\/a>)<\\/li>\\n<li>Tweak: use filterable <code>Util::get_public_post_types()<\\/code> in Theme Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7172\\">#7172<\\/a>)<\\/li>\\n<li>Tweak: Added Cloudflare rocket-loader support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7443\\">#7443<\\/a>)<\\/li>\\n<li>Tweak: Added responsive support to WC Products Columns &amp; Rows Gap controls (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6913\\">#6913<\\/a>)<\\/li>\\n<li>Tweak: WC Menu cart &quot;View Cart&quot; &amp; &quot;Checkout&quot; buttons styling<\\/li>\\n<li>Fix: Custom ID reset to default when dragging repeater<\\/li>\\n<li>Fix: Conflict between archive-products widget and WC customizer<\\/li>\\n<li>Fix: Add to Cart widget <code>spacing<\\/code> and <code>space-between<\\/code><\\/li>\\n<li>Fix: Library view when creating a new Header or Footer<\\/li>\\n<li>Fix: Post types labels missing on Add New Template modal<\\/li>\\n<\\/ul>\\n<h4>2.4.8 - 2019-03-11<\\/h4>\\n<ul>\\n<li>Fix: Missing query section in Products widget<\\/li>\\n<li>Fix: Missing Taxonomy controls in Products widget in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.7 - 2019-03-06<\\/h4>\\n<ul>\\n<li>Fix: Compatibility Global Widget with Elementor v2.5.0+<\\/li>\\n<\\/ul>\\n<h4>2.4.6 - 2019-03-04<\\/h4>\\n<ul>\\n<li>Fix: Pods gallery dynamic when empty (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7127\\">#7127<\\/a>)<\\/li>\\n<li>Fix: Duplicate call for conditions screen issue<\\/li>\\n<li>Fix: Compatibility with Elementor v2.5.0<\\/li>\\n<\\/ul>\\n<h4>2.4.5 - 2019-02-18<\\/h4>\\n<ul>\\n<li>Fix: Image size issue in Testimonial Carousel (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7058\\">#7058<\\/a>)<\\/li>\\n<li>Fix: MailChimp groups not saved in a form integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7083\\">#7083<\\/a>)<\\/li>\\n<li>Fix: Show popup preview only on it''s own preview<\\/li>\\n<li>Fix: Elementor dashboard templates URL corrupted links in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.4.4 - 2019-02-11<\\/h4>\\n<ul>\\n<li>Tweak: Added ACF Date Time Picker field support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6690\\">#6690<\\/a>)<\\/li>\\n<li>Tweak: Changed the term of <code>All Posts<\\/code> condition to <code>Posts<\\/code><\\/li>\\n<li>Fix: Added <code>&lt;IfModule&gt;<\\/code> to avoid 500 error when <code>mod-headers<\\/code> is missing (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7034\\">#7034<\\/a>)<\\/li>\\n<li>Fix: Include post CSS deletion in Global Widget update (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6856\\">#6856<\\/a>)<\\/li>\\n<li>Fix: <code>Textarea<\\/code> default value in Forms Widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6934\\">#6934<\\/a>)<\\/li>\\n<li>Fix: MailPoet latest version caused fatal error (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6996\\">#6996<\\/a>)<\\/li>\\n<li>Fix: Fatal Error caused by calling MailPoet deleted method<\\/li>\\n<li>Notice: MailPoet <code>Auto Confirm<\\/code> option will now default to &quot;On&quot;<\\/li>\\n<\\/ul>\\n<h4>2.4.3 - 2019-01-30<\\/h4>\\n<ul>\\n<li>Fix: Custom Add to Cart widget responsive alignment settings<\\/li>\\n<li>Fix: Links in Post Info widget<\\/li>\\n<li>Fix: WooCommerce <code>View Cart<\\/code> string translate<\\/li>\\n<li>Fix: Wrapper classes for header\\/footer templates (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6884\\">#6884<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.4.2 - 2019-01-25<\\/h4>\\n<ul>\\n<li>Tweak: Added pixel units to Close Button position control in Popups<\\/li>\\n<li>Fix: Exclude error in WC Products widget<\\/li>\\n<\\/ul>\\n<h4>2.4.1 - 2019-01-24<\\/h4>\\n<ul>\\n<li>Tweak: Added CSS classes control to Popup (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6826\\">#6826<\\/a>)<\\/li>\\n<li>Tweak: Added responsive image size to Testimonial Carousel widget<\\/li>\\n<li>Fix: PHP warning when Toolset Date dynamic is empty (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6842\\">#6842<\\/a>)<\\/li>\\n<li>Fix: Support of exclude-ids in WC Products widget<\\/li>\\n<li>Fix: Popup close button not clickable<\\/li>\\n<li>Fix: Alignment justify issue of Add to Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6749\\">#6749<\\/a>)<\\/li>\\n<li>Fix: Bad anchors breaks the page JS<\\/li>\\n<li>Fix: Popup overlay shown when turned off<\\/li>\\n<\\/ul>\\n<h4>2.4.0 - 2019-01-21<\\/h4>\\n<ul>\\n<li>New: Introducing Popup Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/628\\">#628<\\/a>)<\\/li>\\n<li>New: Added <code>Popup<\\/code> Dynamic Tag<\\/li>\\n<li>New: Added <code>Popup<\\/code> forms action after submit<\\/li>\\n<li>New: Added User Info dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6322\\">#6322<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for &quot;Nothing Found&quot; message<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/theme_builder\\/archive\\/escape_nothing_found_message<\\/code> Filter to avoid HTML escaping in &quot;Nothing Found&quot; message (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6053\\">#6053<\\/a>)<\\/li>\\n<li>Tweak: Added <code>add_doc_to_location<\\/code> method to Allow insertion of a document to a location<\\/li>\\n<li>Fix: <code>z-index<\\/code> issue with CTA widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6486\\">#6486<\\/a>)<\\/li>\\n<li>Fix: Hide the Post Content widget and show it only in a Single document<\\/li>\\n<li>Fix: <code>selector<\\/code> replacement in Custom CSS<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> on the real content only<\\/li>\\n<li>Fix: CSS for WC products selector (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6559\\">#6559<\\/a>)<\\/li>\\n<li>Fix: Odnoklassniki share URL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6638\\">#6638<\\/a>)<\\/li>\\n<li>Fix: Custom link new tab in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5766\\">#5766<\\/a>)<\\/li>\\n<li>Fix: <code>nofollow<\\/code> link in Flip Box &amp; CTA widgets<\\/li>\\n<li>Fix: Post Terms in Post Info widget<\\/li>\\n<li>Fix: Added screen reader to some icons &amp; buttons for better accessibility (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5386\\">#5386<\\/a>)<\\/li>\\n<li>Fix: Accessibility labels in Reviews widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6630\\">#6630<\\/a>)<\\/li>\\n<li>Fix: Link to cart page not working when WooCommerce Subscriptions is active<\\/li>\\n<li>Fix: MailChimp Selected list not showing on reloading in Form widget<\\/li>\\n<li>Fix: Sub-menu arrow position in Nav Menu widget<\\/li>\\n<li>Fix: Conflict with WP Security Audit Log plugin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6648\\">#6648<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.3.1 - 2018-12-19<\\/h4>\\n<ul>\\n<li>Fix: Template widget search functionality (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6473\\">#6473<\\/a>)<\\/li>\\n<li>Fix: Apply <code>the_content<\\/code> filter to post content in theme builder<\\/li>\\n<\\/ul>\\n<h4>2.3.0 - 2018-12-17<\\/h4>\\n<ul>\\n<li>New: Introducing Discord Integration for Forms (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4218\\">#4218<\\/a>)<\\/li>\\n<li>New: Introducing Slack Integration for Forms<\\/li>\\n<li>New: Introducing MailerLite Integration for Forms (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4462\\">#4462<\\/a>)<\\/li>\\n<li>New: Activate Elementor Pro plugin by connecting to Elementor account<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/utils\\/get_public_post_types<\\/code> filter hook (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5900\\">#5900<\\/a>)<\\/li>\\n<li>Tweak: Added <code>loop_start<\\/code> &amp; <code>the_content<\\/code> hooks for Post Content (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6173\\">#6173<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from Page Settings<\\/li>\\n<li>Tweak: Always add the Custom CSS control to the Advanced tab<\\/li>\\n<li>Fix: In sub Term condition false positive in edge cases<\\/li>\\n<li>Fix: ToolSet Dynamic Image fallback<\\/li>\\n<li>Fix: Style glitch with the dropdown color in Nav Menu widget<\\/li>\\n<li>Fix: Style glitch in the Conditions screen in Safari browser<\\/li>\\n<li>Fix: Ribbon in the CTA widget obscures drop down menu (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6080\\">#6080<\\/a>)<\\/li>\\n<li>Fix: The color of label won''t change color in Widget login<\\/li>\\n<\\/ul>\\n<h4>2.2.5 - 2018-12-11<\\/h4>\\n<ul>\\n<li>New: Add Style Tab &amp; Custom CSS for Header &amp; Footer Templates.<\\/li>\\n<li>Tweak: Added a better identifier for subpages (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6362\\">#6362<\\/a>)<\\/li>\\n<li>Tweak: Removed Custom Attributes from page settings<\\/li>\\n<li>Fix: Yahoo event URL date issue (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Allow timezone settings in Google event URL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6354\\">#6354<\\/a>)<\\/li>\\n<li>Fix: Avoid <code>z-index<\\/code> changes by <code>nanocss<\\/code> in build process<\\/li>\\n<li>Fix: Added missing WC upsells products CSS<\\/li>\\n<li>Fix: Nav Menu dropdown losing color on hover<\\/li>\\n<li>Fix: WC Product Add-ons CSS compatibility<\\/li>\\n<\\/ul>\\n<h4>2.2.4 - 2018-12-04<\\/h4>\\n<ul>\\n<li>Fix: Global widget not saving changes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6340\\">#6340<\\/a>)<\\/li>\\n<li>Fix: Dynamic tags support in Blockquote widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6334\\">#6334<\\/a>)<\\/li>\\n<li>Fix: Forms Redirect URL action when using form field values with spaces<\\/li>\\n<\\/ul>\\n<h4>2.2.3 - 2018-11-29<\\/h4>\\n<ul>\\n<li>Fix: Missing &quot;Edit Template&quot; in Template widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Follow menu anchors with UTF8 characters in Nav Menu<\\/li>\\n<li>Fix: Show only supported templates in Template widget<\\/li>\\n<li>Fix: Revert conflicting fix for a default order for WC archive<\\/li>\\n<\\/ul>\\n<h4>2.2.2 - 2018-11-28<\\/h4>\\n<ul>\\n<li>Fix: Lightbox dynamic tag crashes the editor<\\/li>\\n<\\/ul>\\n<h4>2.2.1 - 2018-11-28<\\/h4>\\n<ul>\\n<li>New: Added <code>ACF File<\\/code> Dynamic tag to support text controls.<\\/li>\\n<li>Tweak: Added option to hide item count bubble when cart is empty in Menu Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6223\\">#6223<\\/a>)<\\/li>\\n<li>Tweak: Added Actions group for Lightbox and Contact URL tags<\\/li>\\n<li>Tweak: Added filter <code>elementor_pro\\/dynamic_tags\\/shortcode\\/should_escape<\\/code> to avoid escaping in Shortcode dynamic tag<\\/li>\\n<li>Tweak: MailPoet3 integration allow Subscriber to to subscribe to multiple lists<\\/li>\\n<li>Tweak: Added front-end max file size validation for upload fields<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> per Post-Type condition for theme builder<\\/li>\\n<li>Fix: Template widget panel not showing the selected template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6271\\">#6271<\\/a>)<\\/li>\\n<li>Fix: Conflict between ACF with Safari browser on Select option in Dynamic tag<\\/li>\\n<li>Fix: Add post classes only for the Single template<\\/li>\\n<li>Fix: Set document type as not editable for unsupported document like Global widget<\\/li>\\n<li>Fix: Avoid duplicate query for current WC product query<\\/li>\\n<li>Fix: Product Archive showing oldest products instead of latest<\\/li>\\n<li>Fix: CSS reset in Posts widget using cards skin<\\/li>\\n<\\/ul>\\n<h4>2.2.0 - 2018-11-19<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Attributes (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/290\\">#290<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3990\\">#3990<\\/a>)<\\/li>\\n<li>New: Added evergreen option for Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4459\\">#4459<\\/a>)<\\/li>\\n<li>New: Added expire actions option for Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5242\\">#5242<\\/a>)<\\/li>\\n<li>New: Introducing Reviews widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3854\\">#3854<\\/a>)<\\/li>\\n<li>New: Introducing Sitemap widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5594\\">#5594<\\/a>)<\\/li>\\n<li>New: Added Request Parameter dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4934\\">#4934<\\/a>)<\\/li>\\n<li>New: Added Shortcode dynamic tag<\\/li>\\n<li>New: Added Image and Video Lightbox dynamic tag<\\/li>\\n<li>New: Added Contact URL dynamic tag<\\/li>\\n<li>New: Added Featured Image Data dynamic tag<\\/li>\\n<li>New: Added default value to each field in the Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4268\\">#4268<\\/a>)<\\/li>\\n<li>New: Added &quot;Any Child Of&quot; condition to template conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5321\\">#5321<\\/a>)<\\/li>\\n<li>New: Added &quot;In Child&quot; condition to template conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5587\\">#5587<\\/a>)<\\/li>\\n<li>Tweak: Added Form Redirect URL with form values (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2564\\">#2564<\\/a>)<\\/li>\\n<li>Tweak: Added default post classes to template wrapper (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5959\\">#5959<\\/a>)<\\/li>\\n<li>Tweak: Better labels for terms in Query control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6092\\">#6092<\\/a>)<\\/li>\\n<li>Tweak: Renamed &quot;Child Of&quot; templates condition to &quot;Direct Child Of&quot;<\\/li>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/condition_sub_id<\\/code> filter hook to allow template condition translations<\\/li>\\n<li>Tweak: Load the Template Library widget via Ajax for better performance<\\/li>\\n<li>Tweak: Added 404 page title for Page Title dynamic tag<\\/li>\\n<li>Fix: Menu Cart Toggle has # URL link (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6141\\">#6141<\\/a>)<\\/li>\\n<li>Fix: Alignment issue in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5790\\">#5790<\\/a>)<\\/li>\\n<li>Fix: Avoid potential security risk in forms<\\/li>\\n<li>Fix: Template By Author condition conflicts with 404 page<\\/li>\\n<li>Fix: Restored WC Product Content widget in Single Product template<\\/li>\\n<li>Fix: Theme Builder Preview URLs for date archives and 404 pages<\\/li>\\n<li>Fix: Highlight active menu anchor items only when scrolled into view<\\/li>\\n<li>Fix: Carousel Pagination Progress style to support new Swiper version<\\/li>\\n<\\/ul>\\n<h4>2.1.13 - 2018-11-12<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for new brand Finder in v2.3.0<\\/li>\\n<li>Fix: Settings conflict when there are multiple carousels in the page<\\/li>\\n<\\/ul>\\n<h4>2.1.12 - 2018-11-05<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.3<\\/li>\\n<li>Tweak: Better performance for Template Library widget<\\/li>\\n<li>Fix: Fatal error if a taxonomy used in a dynamic field is removed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6029\\">#6029<\\/a>)<\\/li>\\n<li>Fix: Date Time dynamic tag now respect site language (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6001\\">#6001<\\/a>)<\\/li>\\n<li>Fix: Custom CSS printed twice in the front-end<\\/li>\\n<li>Fix: ACF Image field PHP warning (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/6051\\">#6051<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.1.11 - 2018-10-22<\\/h4>\\n<ul>\\n<li>New: Added ACF local fields compatibility<\\/li>\\n<li>Tweak: Re-brand TypeKit by Adobe Fonts integration<\\/li>\\n<li>Fix: Exclude <code>is_embed<\\/code> from Singular condition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5915\\">#5915<\\/a>)<\\/li>\\n<li>Fix: Avoid conflict with Ad Blockers and Share Buttons<\\/li>\\n<li>Fix: Current date time dynamic tag now shows local time<\\/li>\\n<li>Fix: Avoid conflict with 3rd party plugins that filter the permalink<\\/li>\\n<li>Fix: Avoid PHP warning when no groups are selected for MailChimp integration<\\/li>\\n<li>Fix: Avoid PHP warning if checkbox field is empty for ACF<\\/li>\\n<li>Fix: Respect password protected for a WC single product template<\\/li>\\n<li>Fix: Respect <code>order<\\/code> settings for WC archive also without pagination<\\/li>\\n<\\/ul>\\n<h4>2.1.10 - 2018-10-09<\\/h4>\\n<ul>\\n<li>Tweak: Added responsive alignment control for Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5821\\">#5821<\\/a>)<\\/li>\\n<li>Tweak: Added link control to Animated Headline widget<\\/li>\\n<li>Fix: Mobile nav menu jump on RTL (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5711\\">#5711<\\/a>)<\\/li>\\n<li>Fix: Responsive alignment control in Add to Cart widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5830\\">#5830<\\/a>)<\\/li>\\n<li>Fix: Added IE compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Post Content widget is now shown only on <code>Single<\\/code> templates<\\/li>\\n<li>Fix: Query Control Pagination with offset<\\/li>\\n<\\/ul>\\n<h4>2.1.9 - 2018-09-17<\\/h4>\\n<ul>\\n<li>Tweak: Added Centered Slides option for Slideshow carousel<\\/li>\\n<li>Fix: Allow only public CPT for Manual Selection in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5091\\">#5091<\\/a>)<\\/li>\\n<li>Fix: ACF Gallery option support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\">#5344<\\/a>)<\\/li>\\n<li>Fix: Page scrolling on resize when sticky is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5740\\">#5740<\\/a>)<\\/li>\\n<li>Fix: Edit custom name for Global Widget in the Navigator (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5689\\">#5689<\\/a>)<\\/li>\\n<li>Fix: Coverflow transition effect in Carousel<\\/li>\\n<li>Fix: Weird mobile behavior with Cube effect in Carousel<\\/li>\\n<li>Fix: Show the first thumbnail in the Slideshow carousel correctly<\\/li>\\n<\\/ul>\\n<h4>2.1.8 - 2018-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Added styling options for WC Additional Information widget<\\/li>\\n<li>Tweak: Added styling options for ''View Cart'' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added ''Current Subcategories'' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &amp; IE11 (Depended on Elementor v2.2)<\\/li>\\n<li>Fix: Posts widget CSS when using cards skin in masonry mode<\\/li>\\n<li>Fix: ACF Image &amp; ACF URL option support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5344\\">#5344<\\/a>)<\\/li>\\n<li>Fix: WC product gallery links in RTL<\\/li>\\n<li>Fix: Dynamic tags in Call To Action widget<\\/li>\\n<\\/ul>\\n<h4>2.1.5 - 2018-08-21<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Fix: Posts Widget layout theme compatibility<\\/li>\\n<li>Fix: Added compatibility for WooCommerce native style<\\/li>\\n<\\/ul>\\n<h4>2.1.4 - 2018-08-19<\\/h4>\\n<ul>\\n<li>Fix: Layout issue compatibility with themes caused by v2.1 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5442\\">#5442<\\/a>)<\\/li>\\n<li>Fix: Dynamic setting in Pricing Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5460\\">#5460<\\/a>)<\\/li>\\n<li>Fix: Hide Target URL control if is not necessary in Blockquote widget<\\/li>\\n<li>Fix: Selector specificity for WooCommerce Products widget<\\/li>\\n<li>Fix: WooCommerce conflicts in the editor in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.3 - 2018-08-15<\\/h4>\\n<ul>\\n<li>Fix: Thumbnails in the Posts widget jumping (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5350\\">#5350<\\/a>)<\\/li>\\n<li>Fix: Responsive grid in the Share Buttons widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5375\\">#5375<\\/a>)<\\/li>\\n<li>Fix: Added missing <code>setup_postdata<\\/code> for Product Data Tabs widget<\\/li>\\n<li>Fix: Rollback to older version of Flip Box widget to resolve 3D depth issue (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5399\\">#5399<\\/a>)<\\/li>\\n<li>Fix: Allowed types in the Upload File field are now case-insensitive (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5254\\">#5254<\\/a>)<\\/li>\\n<li>Fix: Carousel behavior when using a single slide<\\/li>\\n<\\/ul>\\n<h4>2.1.2 - 2018-08-12<\\/h4>\\n<ul>\\n<li>Fix: Error when ACF Pro is not installed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5367\\">#5367<\\/a>)<\\/li>\\n<li>Fix: Edge cases in Inspector where document is a boolean<\\/li>\\n<li>Fix: Edge cases for incorrect file fields in PODS<\\/li>\\n<\\/ul>\\n<h4>2.1.1 - 2018-08-09<\\/h4>\\n<ul>\\n<li>Fix: Highlighted text in Animated Headline widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5345\\">#5345<\\/a>)<\\/li>\\n<li>Fix: Flip Box effect issues<\\/li>\\n<li>Fix: ACF Options page fields support (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5329\\">#5329<\\/a>)<\\/li>\\n<li>Fix: Import Pro templates in edge cases<\\/li>\\n<\\/ul>\\n<h4>2.1.0 - 2018-08-07<\\/h4>\\n<ul>\\n<li>New: Introducing WooCommerce Builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1690\\">#1690<\\/a>)<\\/li>\\n<li>New: Introducing 12 new dynamic tags &amp; widgets for WooCommerce: Gallery, Image, Price, Rating, Description, Breadcrumbs, Data Tabs, Stock, Related, Upsell, Title &amp; Archive<\\/li>\\n<li>New: Introducing Cart Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4220\\">#4220<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4600\\">#4600<\\/a>)<\\/li>\\n<li>New: Added integration with Toolset (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\">#2949<\\/a>)<\\/li>\\n<li>New: Added integration with Pods (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4129\\">#4129<\\/a>)<\\/li>\\n<li>New: Added stick to bottom in scrolling effects (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4799\\">#4799<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect to Widgets under advanced tab<\\/li>\\n<li>New: Introducing Internal URL Dynamic Tag<\\/li>\\n<li>Tweak: Added a Last Updated Date in the Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4597\\">#4597<\\/a>)<\\/li>\\n<li>Tweak: Added Redirect after Logout option for Login widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4447\\">#4447<\\/a>)<\\/li>\\n<li>Tweak: Avoid repeating posts when using more than one in the Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1878\\">#1878<\\/a>)<\\/li>\\n<li>Tweak: Add Custom Query hook for Query control (<a href=\\"https:\\/\\/developers.elementor.com\\/custom-query-filter\\/\\">More Info<\\/a>) (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1748\\">#1748<\\/a>)<\\/li>\\n<li>Tweak: Added form-message style (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\">#1180<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for button on the Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\">#4242<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic tag for Call to action widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4767\\">#4767<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic Tags support for Google Map field (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4602\\">#4602<\\/a>)<\\/li>\\n<li>Tweak: Added an support for <code>label|value<\\/code> in options field (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4594\\">#4594<\\/a>)<\\/li>\\n<li>Tweak: Added <code>by-author<\\/code> condition for theme builder (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4681\\">#4681<\\/a>)<\\/li>\\n<li>Tweak: Added Activate\\/Deactivate license key via WP-CLI command (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4149\\">#4149<\\/a>)<\\/li>\\n<li>Tweak: Added <code>is_scroll<\\/code> trigger to scrolling effect (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4340\\">#4340<\\/a>)<\\/li>\\n<li>Tweak: Added In Same Term support for Post Navigation widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4177\\">#4177<\\/a>)<\\/li>\\n<li>Tweak: Added responsive control for Slides To Scroll control in all carousel widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3697\\">#3697<\\/a>)<\\/li>\\n<li>Tweak: Added style options for Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1335\\">#1335<\\/a>)<\\/li>\\n<li>Tweak: Added button CSS ID for Forms widget<\\/li>\\n<li>Tweak: Added pixel units to Post-Info divider height control<\\/li>\\n<li>Tweak: Rewrite sticky library to handle with stretch section, auto scroller &amp; more bugs<\\/li>\\n<li>Tweak: Re-organize the panel categories per document type<\\/li>\\n<li>Tweak: Added ACF support for <code>options-page<\\/code> fields<\\/li>\\n<li>Tweak: Added dynamic tag for Animated headlines<\\/li>\\n<li>Tweak: Added dynamic tag for BlockQuote widget<\\/li>\\n<li>Fix: Elementor Full Width template in GeneratePress theme (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4817\\">#4817<\\/a>)<\\/li>\\n<li>Fix: Checkbox fields can accidentally be set to required (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4324\\">#4324<\\/a>)<\\/li>\\n<li>Fix: Initial slide in Carousel widget<\\/li>\\n<li>Fix: Stay on current slide while editing in Carousel widget<\\/li>\\n<li>Fix: Default slides per device in Carousel widget<\\/li>\\n<li>Deprecated: Woo Products, Woo Elements &amp; Single elements widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.18 - 2018-07-27<\\/h4>\\n<ul>\\n<li>Fix: Global widget error on saving page<\\/li>\\n<\\/ul>\\n<h4>2.0.17 - 2018-07-26<\\/h4>\\n<ul>\\n<li>Fix: Sub menu indicator direction in Nav Menu widget<\\/li>\\n<li>Fix: Change the title and icon for Global Widget when is moving<\\/li>\\n<li>Fix: CSS wrapper selector for Page Document<\\/li>\\n<\\/ul>\\n<h4>2.0.16 - 2018-07-16<\\/h4>\\n<ul>\\n<li>Tweak: CSS Filter Control module is now included in Elementor<\\/li>\\n<li>Fix: Border gap in Portfolio widget when item gap set as <code>0<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5077\\">#5077<\\/a>)<\\/li>\\n<li>Fix: Restore current query after get Global Widget data<\\/li>\\n<li>Fix: Add action item in History on unlink Global widget<\\/li>\\n<\\/ul>\\n<h4>2.0.15 - 2018-07-10<\\/h4>\\n<ul>\\n<li>Fix: Dropdown menu items collapsing when activated (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4996\\">#4996<\\/a>)<\\/li>\\n<li>Fix: GMT offset in Countdown widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4997\\">#4997<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.0.14 - 2018-07-08<\\/h4>\\n<ul>\\n<li>Tweak: Added set method to form record for developers (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4983\\">#4983<\\/a>)<\\/li>\\n<li>Fix: Autoplay option for Carousels<\\/li>\\n<li>Fix: Close mobile menu on item click in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.13 - 2018-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for Elementor v2.1<\\/li>\\n<\\/ul>\\n<h4>2.0.12 - 2018-07-02<\\/h4>\\n<ul>\\n<li>Fix: Global widget PHP notices<\\/li>\\n<li>Fix: Slides widget active slide lost focus when clicking Editor tabs<\\/li>\\n<li>Fix: Form select field send all selected values on multiple selection<\\/li>\\n<li>Fix: Validate time field only if it''s not empty<\\/li>\\n<li>Fix: ConvertKit API not saving name field<\\/li>\\n<\\/ul>\\n<h4>2.0.11 - 2018-06-12<\\/h4>\\n<ul>\\n<li>Fix: Theme Builder <code>author<\\/code> archive condition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4593\\">#4593<\\/a>)<\\/li>\\n<li>Fix: Respect password protected posts in Post Content widget<\\/li>\\n<li>Fix: Custom Fonts redirect to post edit screen in edge cases.<\\/li>\\n<\\/ul>\\n<h4>2.0.10 - 2018-06-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> filter hook for multi-language plugins<\\/li>\\n<li>Fix: Dynamic Post Terms missing taxonomies if the taxonomy is registered to more then one post types (#4386)<\\/li>\\n<li>Fix: Fields shortcode missing after removing a field in Form widget<\\/li>\\n<li>Deprecated: <code>get_theme_templates_by_location<\\/code> is replaced by <code>get_location_templates<\\/code><\\/li>\\n<\\/ul>\\n<h4>2.0.9 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Fix: Compatibility for PHP version 5.4<\\/li>\\n<\\/ul>\\n<h4>2.0.8 - 2018-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added Active state for Nav Menu dropdown<\\/li>\\n<li>Tweak: Added style for &quot;Nothing Found&quot; Message for Archive Posts widget<\\/li>\\n<li>Tweak: Removed caption control in Site Logo widget<\\/li>\\n<li>Tweak: Added option to position currency symbol before\\/after In Price Table widget<\\/li>\\n<li>Fix: Query control manual selection does not show more than 10 items (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4479\\">#4479<\\/a>)<\\/li>\\n<li>Fix: Styling glitch with terms list in Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4342\\">#4342<\\/a>)<\\/li>\\n<li>Fix: Sub terms missing in Query control in edge cases (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4527\\">#4527<\\/a>)<\\/li>\\n<li>Fix: Avoid rendering a template if it''s not published<\\/li>\\n<li>Fix: 404 Page style not working<\\/li>\\n<li>Fix: Price Table button with hover animation not working in editor<\\/li>\\n<li>Fix: Styling conflict in Call to Action widget<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Adding parent wrapper class to Site Title widget<\\/li>\\n<\\/ul>\\n<h4>2.0.7 - 2018-05-16<\\/h4>\\n<ul>\\n<li>Fix: Content not found on section when single is set to &quot;All Singular&quot;<\\/li>\\n<li>Fix: Open 404 template library for 404 page<\\/li>\\n<li>Tweak: Added CSS prefix for dev files<\\/li>\\n<li>Tweak: Removed product post type from display conditions<\\/li>\\n<\\/ul>\\n<h4>2.0.6 - 2018-05-15<\\/h4>\\n<ul>\\n<li>Tweak: Set type on create new single template<\\/li>\\n<li>Tweak: Always show the conditions dialog in the Draft status<\\/li>\\n<li>Tweak: Added document type <code>widget<\\/code><\\/li>\\n<li>Tweak: Added Post Custom Field tag to URL category<\\/li>\\n<li>Fix: When ACF Field Groups are Empty (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4428\\">#4428<\\/a>)<\\/li>\\n<li>Fix: Links inside carousel in edge cases<\\/li>\\n<li>Fix: Responsive issue in My Templates area<\\/li>\\n<li>Fix: Image alignment for post content with text alignment<\\/li>\\n<li>Fix: Post Content widget when preview post is missing<\\/li>\\n<li>Fix: Global Widget tab translation<\\/li>\\n<li>Fix: Style settings for Post \\/ Archive Title widgets<\\/li>\\n<\\/ul>\\n<h4>2.0.5 - 2018-05-08<\\/h4>\\n<ul>\\n<li>Fix: Creating a CPT with name like document-type breaks the editor (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4203\\">#4203<\\/a>)<\\/li>\\n<li>Fix: Added support for new version of reCAPTCHA<\\/li>\\n<li>Fix: Added fallback for controls after <code>post_status<\\/code><\\/li>\\n<li>Fix: Required field in forms widget<\\/li>\\n<li>Fix: Media Carousel in the Coverflow skin<\\/li>\\n<li>Fix: 404 Page show wrong template in edge cases<\\/li>\\n<li>Fix: Save the default menu in the Nav Menu widget<\\/li>\\n<\\/ul>\\n<h4>2.0.4 - 2018-05-02<\\/h4>\\n<ul>\\n<li>Tweak: Added parent''s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it''s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it''s time to get the original select width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\">#4214<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\">#4216<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &amp; Display Conditions (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4127\\">#4127<\\/a>)<\\/li>\\n<li>Tweak: Added Divider control for Post Info widget<\\/li>\\n<li>Fix: Update admin links in Yoast Breadcrumbs widget<\\/li>\\n<li>Fix: Sticky element conflict with clearfix CSS<\\/li>\\n<li>Fix: Compatibility for PHP version 5.4.32 &amp; 5.5.16 and below<\\/li>\\n<li>Fix: Avoid running <code>wp_head<\\/code> hooks twice<\\/li>\\n<\\/ul>\\n<h4>2.0.0 - 2018-04-16<\\/h4>\\n<ul>\\n<li>New: Introducing Theme Builder - <a href=\\"https:\\/\\/elementor.com\\/introducing-theme-builder\\/\\">Release Post<\\/a> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/417\\">#417<\\/a>)<\\/li>\\n<li>New: Introducing Locations API to inject custom location templates<\\/li>\\n<li>New: Introducing Display Conditions for all dynamic templates<\\/li>\\n<li>New: Introducing Dynamic Tag feature - a new way to add dynamic content to your design<\\/li>\\n<li>New: Introducing Role manager to allow &quot;Content Only mode&quot; (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/483\\">#483<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/653\\">#653<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/885\\">#885<\\/a>)<\\/li>\\n<li>New: Introducing 9 new dynamic widgets: Archive Posts, Archive Title, Post Content, Post Info, Post Title, Post Excerpt, Featured Image, Site Logo &amp; Site Name (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\">#543<\\/a>)<\\/li>\\n<li>New: Introducing Developers area with guides and API documentation - <a href=\\"https:\\/\\/elementor.com\\/introducing-elementor-developer-api\\/\\">Release Post<\\/a> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/451\\">#451<\\/a>)<\\/li>\\n<li>New: Introducing <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor-hello-theme\\">Elementor Hello Theme<\\/a> - A demonstration theme for developers<\\/li>\\n<li>New: Added new type of templates: Header, Footer, Single and Archive (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2761\\">#2761<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2623\\">#2623<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2109\\">#2109<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2061\\">#2061<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2439\\">#2439<\\/a>)<\\/li>\\n<li>New: Design 404 page with Single template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1558\\">#1558<\\/a>)<\\/li>\\n<li>New: Design Search Results with Archive template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3196\\">#3196<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2590\\">#2590<\\/a>)<\\/li>\\n<li>New: Added Scrolling Effect for sections including <em>Sticky Element<\\/em> per device (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2412\\">#2412<\\/a>)<\\/li>\\n<li>New: Integration with Custom Fields (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2054\\">#2054<\\/a>)<\\/li>\\n<li>New: Partial support for Toolset integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2949\\">#2949<\\/a>)<\\/li>\\n<li>New: Partial support for Pods integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2169\\">#2169<\\/a>)<\\/li>\\n<li>New: Partial support for ACF integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2041\\">#2041<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2059\\">#2059<\\/a>)<\\/li>\\n<li>Tweak: Add custom fields support for ActiveCampaign (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3531\\">#3531<\\/a>)<\\/li>\\n<li>Tweak: Allow brackets in Forms Tel field<\\/li>\\n<li>Tweak: Added currency format control for Price Table widget<\\/li>\\n<li>Tweak: Reduced API request for some servers<\\/li>\\n<li>Fix: Dropdown <code>border-radius<\\/code> in Nav Menu widget<\\/li>\\n<li>Fix: Price List widget layout breaks in edge cases<\\/li>\\n<li>Note: This version requires Elementor v2.0.6<\\/li>\\n<\\/ul>\\n<h4>1.15.6 - 2018-03-28<\\/h4>\\n<ul>\\n<li>Fix: Removed duplicate Custom CSS section (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3938\\">#3938<\\/a>)<\\/li>\\n<li>Fix: <code>box-shadow<\\/code> issue with cards skin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3940\\">#3940<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.5 - 2018-03-27<\\/h4>\\n<ul>\\n<li>Fix: Added global widget compatibility for Elementor v2.0<\\/li>\\n<li>Fix: Reduced API request for some servers<\\/li>\\n<\\/ul>\\n<h4>1.15.4 - 2018-03-26<\\/h4>\\n<ul>\\n<li>Tweak: Allow brackets in phone field<\\/li>\\n<li>Tweak: Added compatibility with Yoast 7.0.+<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Support for multiple carousel setting in editor<\\/li>\\n<li>Fix: <code>on_export<\\/code> issue in forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3890\\">#3890<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.15.3 - 2018-03-07<\\/h4>\\n<ul>\\n<li>Tweak: Added unique class to field group div (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3595\\">#3595<\\/a>)<\\/li>\\n<li>Fix: Screen Options missing when Pro is active (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3622\\">#3622<\\/a>)<\\/li>\\n<li>Fix: Allow label styling even when <code>show labels<\\/code> is set hide (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3544\\">#3544<\\/a>)<\\/li>\\n<li>Fix: Typography control not working in edge cases<\\/li>\\n<li>Fix: Safari compatibility for Search widget<\\/li>\\n<\\/ul>\\n<h4>1.15.2 - 2018-02-27<\\/h4>\\n<ul>\\n<li>Fix: Only add support mine-type if needed (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3543\\">#3543<\\/a>)<\\/li>\\n<li>Fix: Better support for Old Typekit kits<\\/li>\\n<\\/ul>\\n<h4>1.15.1 - 2018-02-21<\\/h4>\\n<ul>\\n<li>Tweak: Custom font title placeholder is not <code>enter font family<\\/code><\\/li>\\n<li>Tweak: Custom font title set as required<\\/li>\\n<li>Fix: Custom font, <code>font-face<\\/code> enqueued only once if used in global (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3513\\">#3513<\\/a>)<\\/li>\\n<li>Fix: Added workaround for upload validation which relies on a PHP extension (fileinfo) with inconsistent reporting behavior.<\\/li>\\n<\\/ul>\\n<h4>1.15.0 - 2018-02-19<\\/h4>\\n<ul>\\n<li>New: Added custom fonts manager for self hosted fonts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/852\\">#852<\\/a>)<\\/li>\\n<li>New: Integration with Adobe TypeKit fonts (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/631\\">#631<\\/a>)<\\/li>\\n<li>Tweak: Clear menu from Nav Menu widget on template export<\\/li>\\n<li>Tweak: Allow zero for GetResponse integration as <code>day of cycle<\\/code><\\/li>\\n<\\/ul>\\n<h4>1.14.2 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Fix: Global widget content that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.14.1 - 2018-02-13<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>none<\\/code> option to content animation in CTA widget<\\/li>\\n<li>Tweak: Added <code>form_id<\\/code> to ActiveCampaign integration (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3422\\">#3422<\\/a>)<\\/li>\\n<li>Fix: Page crashed when Global widget not found.<\\/li>\\n<\\/ul>\\n<h4>1.14.0 - 2018-02-12<\\/h4>\\n<ul>\\n<li>New: Added Call to Action widget<\\/li>\\n<li>Tweak: MailPoet pull field mapping from MailPoet instead of hardcoded<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v2.0<\\/li>\\n<li>Fix: Allow zero (0) to be accepted as a field value<\\/li>\\n<li>Fix: Login form when custom login URL is set<\\/li>\\n<li>Fix: Added Day of cycle control to GetResponse integration<\\/li>\\n<\\/ul>\\n<h4>1.13.2 - 2018-01-23<\\/h4>\\n<ul>\\n<li>Tweak: Added placeholder to Password field<\\/li>\\n<li>Tweak: Removed <code>subscriber_already_exists_message<\\/code> control to prevent potential data leakage<\\/li>\\n<li>Fix: MailPoet Subscriber Already Exists error validation against translated string directly from MailPoet<\\/li>\\n<li>Fix: Changed <code>imagesLoaded()<\\/code> to Vanilla JS to avoid compatibility issues with some themes<\\/li>\\n<li>Fix: Only validate Tel field if not empty<\\/li>\\n<li>Fix: Stop slider while editing<\\/li>\\n<\\/ul>\\n<h4>1.13.1 - 2018-01-16<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with old PHP versions<\\/li>\\n<\\/ul>\\n<h4>1.13.0 - 2018-01-16<\\/h4>\\n<ul>\\n<li>New: Added File Upload field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1482\\">#1482<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Acceptance field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1693\\">#1693<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2974\\">#2974<\\/a>)<\\/li>\\n<li>New: Added Date field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1868\\">#1868<\\/a>)<\\/li>\\n<li>New: Added Time field for Forms widget<\\/li>\\n<li>New: Added Password field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2164\\">#2164<\\/a>)<\\/li>\\n<li>New: Added HTML field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1500\\">#1500<\\/a>)<\\/li>\\n<li>Tweak: Added characters validation for Tel field<\\/li>\\n<li>Tweak: Added min &amp; max validation for Number field<\\/li>\\n<li>Tweak: Added multiple selection for Select field<\\/li>\\n<li>Tweak: Added donReach integration for Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.12.3 - 2018-01-09<\\/h4>\\n<ul>\\n<li>Fix: Render element plain content instead of parsed content when not needed in global widget<\\/li>\\n<li>Fix: Apply <code>url-encoding<\\/code> to &quot;Tweet&quot; button text in Blockquote widget to prevent unexpected corruption of the tweet text<\\/li>\\n<li>Fix: Removed My Account link from dashboard widget<\\/li>\\n<\\/ul>\\n<h4>1.12.2 - 2018-01-03<\\/h4>\\n<ul>\\n<li>Tweak: Added animation none for Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2964\\">#2964<\\/a>)<\\/li>\\n<li>Fix: Active license button style<\\/li>\\n<\\/ul>\\n<h4>1.12.1 - 2018-01-02<\\/h4>\\n<ul>\\n<li>Tweak: Removed theme-element widgets from plain content<\\/li>\\n<li>Tweak: Set all theme-element widgets to extend same widget Base<\\/li>\\n<li>Tweak: Removed credit URL in forms meta data<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.9<\\/li>\\n<li>Fix: Validate Get response Error as real error<\\/li>\\n<li>Fix: Removed responsive height control from Facebook Page widget<\\/li>\\n<\\/ul>\\n<h4>1.12.0 - 2017-12-20<\\/h4>\\n<ul>\\n<li>New: Added Drip integration to Forms<\\/li>\\n<li>New: Added ActiveCampaign integration to Forms<\\/li>\\n<li>New: Added ConverKit integration to Forms<\\/li>\\n<li>New: Added GetResponse integration to Forms<\\/li>\\n<li>New: Added form <code>id<\\/code>, <code>name<\\/code> attributes to handle integration with auto collectors like HubSpot<\\/li>\\n<li>New: Added Global API key for MailChimp to improve the workflow<\\/li>\\n<li>Tweak: Better error handling and message display for Forms<\\/li>\\n<li>Fix: PHP notice Undefined variable <code>$cc_header<\\/code> (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2934\\">#2934<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.11.0 - 2017-12-11<\\/h4>\\n<ul>\\n<li>New: Added a native Comments widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/543\\">#543<\\/a>)<\\/li>\\n<li>New: Added an Author Box widget<\\/li>\\n<li>New: Added a Post Navigation widget<\\/li>\\n<li>New: Added a Yoast Breadcrumbs widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2749\\">#2749<\\/a>)<\\/li>\\n<li>Tweak: Added a close button to search widget under Full Screen skin (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2762\\">#2762<\\/a>)<\\/li>\\n<li>Fix: Allow currency symbol to appear even if price isn''t numeric<\\/li>\\n<li>Fix: Edge cases when the nav menu is empty in a stretched section<\\/li>\\n<li>Fix: Added fallback when you remove the <code>space-between<\\/code> on Swiper carousel<\\/li>\\n<\\/ul>\\n<h4>1.10.2 - 2017-12-03<\\/h4>\\n<ul>\\n<li>Fix: Missing save widget icon (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2878\\">#2878<\\/a>)<\\/li>\\n<li>Fix: Global widgets not saving edits (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2874\\">#2874<\\/a>)<\\/li>\\n<li>Fix: Removed <code>white-space: nowrap;<\\/code> property from vertical menu in Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2815\\">#2815<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.10.1 - 2017-11-30<\\/h4>\\n<ul>\\n<li>Tweak: Added default value for search form<\\/li>\\n<li>Tweak: Order template list A-Z in the library widget<\\/li>\\n<li>Tweak: get_users\\/authors query is now done using AJAX only, for better performance in Query Control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2865\\">#2865<\\/a>)<\\/li>\\n<li>Fix: When adding <code>.00<\\/code> it is not displayed on the front<\\/li>\\n<li>Fix: Make sure space between is numeric for carousel control<\\/li>\\n<li>Fix: Added space for radio &amp; checkbox fields in form widget<\\/li>\\n<\\/ul>\\n<h4>1.10.0 - 2017-11-15<\\/h4>\\n<ul>\\n<li>New: Added native Search form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2576\\">#2576<\\/a>)<\\/li>\\n<li>Tweak: Added Slides To Scroll &amp; Loop controls to Media Carousel and Testimonials widgets<\\/li>\\n<li>Tweak: Added Inline editing to Blockquote widget<\\/li>\\n<li>Fix: Animated Headline color bug (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2516\\">#2516<\\/a>)<\\/li>\\n<li>Fix: Animated Headline with Rotating skin<\\/li>\\n<li>Fix: RTL fix for Animated Headline widget in ''typing'' and ''clip'' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there''s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don''t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\">#216<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\">#347<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &amp; 4.7.6<\\/li>\\n<li>Fix: Remove slashes from Form sent data<\\/li>\\n<\\/ul>\\n<h4>1.8.2 - 2017-09-19<\\/h4>\\n<ul>\\n<li>Tweak: Added target URL for the tweet message in Blockquote widget<\\/li>\\n<li>Tweak: Render the slide height before the slider is finished loading<\\/li>\\n<li>Fix: Space between words for Animated Headline widget<\\/li>\\n<li>Fix: RTL compatibility for Animated Headline widget<\\/li>\\n<li>Fix: Italic font style for Animated Headline widget<\\/li>\\n<li>Fix: Excluded Menu widget from the WP Editor text rendering<\\/li>\\n<\\/ul>\\n<h4>1.8.1 - 2017-09-18<\\/h4>\\n<ul>\\n<li>Fix: WCAG Compatible &quot;required&quot; field attribute for W3C validation (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2391\\">#2391<\\/a>)<\\/li>\\n<li>Fix: Print the main menu only when is necessary in Menu widget<\\/li>\\n<li>Fix: Use CSS media query instead of JS to hide items in Menu widget to avoid flickering on page load (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2381\\">#2381<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.0 - 2017-09-12<\\/h4>\\n<ul>\\n<li>New: Added Nav Menu widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1406\\">#1406<\\/a>)<\\/li>\\n<li>Fix: Field ID for checkbox control in Form widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2279\\">#2279<\\/a>)<\\/li>\\n<li>Fix: Style for Blockquote widget included<\\/li>\\n<\\/ul>\\n<h4>1.7.2 - 2017-09-07<\\/h4>\\n<ul>\\n<li>Tweak: Loading Facebook SDK via JS for better compatibility with caching plugins<\\/li>\\n<li>Fix: Responsive Embed Facebook post widget for Safari iOS (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2340\\">#2340<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.7.1 - 2017-09-05<\\/h4>\\n<ul>\\n<li>Fix: Facebook SDK version<\\/li>\\n<\\/ul>\\n<h4>1.7.0 - 2017-09-05<\\/h4>\\n<ul>\\n<li>New: Added Facebook Button widget for Like, Recommend, Share and Follow<\\/li>\\n<li>New: Added Facebook Embed widget for Post, Video and Comment<\\/li>\\n<li>New: Added Facebook Comments widget<\\/li>\\n<li>New: Added Facebook Page widget (Previously known as Like Box)<\\/li>\\n<li>New: Added Blockquote widget with Tweet button<\\/li>\\n<li>Tweak: Added Facebook SDK integration for all Facebook widgets<\\/li>\\n<li>Fix: Animated headline rotating with long words<\\/li>\\n<\\/ul>\\n<h4>1.6.1 - 2017-08-28<\\/h4>\\n<ul>\\n<li>Fix: Animated Headline marker gets in front of neighboring spans even when &quot;Bring to Front&quot; is not set<\\/li>\\n<li>Fix: Stroke animation in Animated Headline for MS Edge browser<\\/li>\\n<li>Fix: Animated headline with more than 1-word per rotation<\\/li>\\n<li>Fix: Animated Headline in two lines<\\/li>\\n<li>Fix: Some errors in Global widget<\\/li>\\n<\\/ul>\\n<h4>1.6.0 - 2017-08-22<\\/h4>\\n<ul>\\n<li>New: Added Animated Headline widget<\\/li>\\n<li>New: Added Hidden field for Forms widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2038\\">#2038<\\/a>)<\\/li>\\n<li>Tweak: Added notice to update Elementor to v1.6.5 or higher<\\/li>\\n<li>Fix: CSS Animations names no longer minified, in order to prevent unexpected conflicts<\\/li>\\n<\\/ul>\\n<h4>1.5.9 - 2017-08-16<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.7<\\/li>\\n<li>Fix: Portfolio compatibility for GeneratePress theme<\\/li>\\n<li>Fix: Portfolio filter compatibility for RTL<\\/li>\\n<li>Fix: Pagination apply for all posts widget in the page<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.8 - 2017-07-25<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the future release of Elementor v1.6<\\/li>\\n<li>Fix: Improved backward compatibility for query control rename<\\/li>\\n<\\/ul>\\n<h4>1.5.7 - 2017-07-24<\\/h4>\\n<ul>\\n<li>Tweak: Moved JS render of reCAPTCHA to a separate file<\\/li>\\n<li>Tweak: Display the label in the reCAPTCHA field for better experience<\\/li>\\n<li>Tweak: Rename <code>panel-posts-control<\\/code> to <code>query-control<\\/code> and added fallback support<\\/li>\\n<li>Tweak: Added compatibility for the future release of Elementor with history feature<\\/li>\\n<li>Fix: reCAPTCHA preview on the editor<\\/li>\\n<li>Fix: Manual selection (query control) has stopped working after saving (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2000\\">#2000<\\/a>)<\\/li>\\n<li>Fix: Added condition for icon size control in Share Buttons widget<\\/li>\\n<\\/ul>\\n<h4>1.5.6 - 2017-07-12<\\/h4>\\n<ul>\\n<li>Fix: Query Control correction for taxonomies (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1963\\">#1963<\\/a>)<\\/li>\\n<li>Fix: Custom CSS override scheme color in the editor<\\/li>\\n<li>Fix: Added order by Menu Order for Query Control in WC widget<\\/li>\\n<li>Fix: Glitch with Flip Box background overlay<\\/li>\\n<\\/ul>\\n<h4>1.5.5 - 2017-07-03<\\/h4>\\n<ul>\\n<li>Tweak: Moved reCAPTCHA render to handler &amp; load only if a form is exist<\\/li>\\n<li>Fix: MailChimp integration: Default number of items returned by API increased to 999<\\/li>\\n<li>Fix: MailChimp integration: Refresh the groups list if API is changed<\\/li>\\n<li>Fix: Sorted items in filter bar by A-Z<\\/li>\\n<li>Fix: Editor glitch with Elementor v1.5 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1927\\">#1927<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.5.4 - 2017-06-22<\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility for Elementor v1.5<\\/li>\\n<li>Fix: URL default for Add To Cart widget<\\/li>\\n<li>Fix: Allowed <code>date<\\/code> and <code>birthday<\\/code> fields as text for MailChimp integration<\\/li>\\n<\\/ul>\\n<h4>1.5.3 - 2017-06-19<\\/h4>\\n<ul>\\n<li>Tweak: Make flip-box height responsive control<\\/li>\\n<li>Fix: Facebook share count now gets retrieved by Elementor (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1829\\">#1829<\\/a>)<\\/li>\\n<li>Fix: Global form widget with MailChimp integration not saving<\\/li>\\n<\\/ul>\\n<h4>1.5.2 - 2017-06-13<\\/h4>\\n<ul>\\n<li>Fix: Custom CSS panel location compatibility for the old versions<\\/li>\\n<\\/ul>\\n<h4>1.5.1 - 2017-06-12<\\/h4>\\n<ul>\\n<li>Fix: MailChimp update existing user registration<\\/li>\\n<li>Fix: Global widget with JS in the editor mode<\\/li>\\n<li>Fix: Label section condition in Login widget<\\/li>\\n<li>Fix: Changes to unlinked global widget do not appear in the editor<\\/li>\\n<\\/ul>\\n<h4>1.5.0 - 2017-05-23<\\/h4>\\n<ul>\\n<li>New: Added Cards, a new skin for Posts widget<\\/li>\\n<li>New: Added Exclude option to post query control group<\\/li>\\n<li>Tweak: Added <code>post_class()<\\/code> for each post in the loop<\\/li>\\n<li>Tweak: Added <code>.elementor-posts-masonry<\\/code> class when Masonry layout is enabled<\\/li>\\n<li>Tweak: Added compatibility for the next release of Elementor v1.5.0<\\/li>\\n<li>Tweak: CSS <code>autoprefixer<\\/code> now supports last 5 versions of browsers<\\/li>\\n<li>Tweak: Added <code>imageLoaded<\\/code> library for Posts &amp; Portfolio widgets<\\/li>\\n<\\/ul>\\n<h4>1.4.4 - 2017-05-18<\\/h4>\\n<ul>\\n<li>Fix: Force Mailchimp API to return all lists and not just 10 (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1683\\">#1683<\\/a>)<\\/li>\\n<li>Fix: Added <code>.elementor-form<\\/code> class to Login form to fix style glitch<\\/li>\\n<\\/ul>\\n<h4>1.4.3 - 2017-05-14<\\/h4>\\n<ul>\\n<li>Tweak: Added Redirect After Login option to Login widget<\\/li>\\n<li>Tweak: Stay in the current page after logout in Login widget<\\/li>\\n<li>Tweak: Preparation for Elementor settings tabs in future version<\\/li>\\n<li>Fix: Pinterest in Share Buttons widget now sharing the URL alone<\\/li>\\n<li>Fix: Bug with <code>active<\\/code> class in portfolio filter item<\\/li>\\n<li>Fix: Higher specific list-style-type <code>none<\\/code> for filter items to override some theme style<\\/li>\\n<\\/ul>\\n<h4>1.4.2 - 2017-05-06<\\/h4>\\n<ul>\\n<li>Fix: Temporary patch for form field shortcode in some servers<\\/li>\\n<\\/ul>\\n<h4>1.4.1 - 2017-05-03<\\/h4>\\n<ul>\\n<li>Fix: Bug with custom success message in form widget<\\/li>\\n<li>Fix: Bug with meta data in email action<\\/li>\\n<\\/ul>\\n<h4>1.4.0 - 2017-05-03<\\/h4>\\n<ul>\\n<li>New: Forms: integration with MailChimp<\\/li>\\n<li>New: Forms: integration with MailPoet<\\/li>\\n<li>New: Forms: Added Email 2 action for email confirmation<\\/li>\\n<li>New: Forms: Added shortcodes for fields<\\/li>\\n<li>New: Forms: Added custom ID for fields<\\/li>\\n<li>New: Forms: Added option to edit email HTML template (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1180\\">#1180<\\/a>)<\\/li>\\n<li>New: Added Login widget<\\/li>\\n<li>Tweak: Move <code>send_html<\\/code> control to <code>email_content_type<\\/code><\\/li>\\n<li>Fix: Email still sent even if validation failed in form widget<\\/li>\\n<\\/ul>\\n<h4>1.3.2 - 2017-05-01<\\/h4>\\n<ul>\\n<li>New: Added action <code>elementor_pro\\/init<\\/code> for better integration with Elementor Pro<\\/li>\\n<li>Fix: Posts without featured image in Posts widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1234\\">#1234<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1382\\">#1382<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA &amp; Honeypot fields with new method<\\/li>\\n<li>Fix: Added border width control in Share Buttons to avoid a glitch on Chrome browser<\\/li>\\n<li>Fix: Border radius glitch on hover in Share Buttons<\\/li>\\n<\\/ul>\\n<h4>1.3.1 - 2017-04-25<\\/h4>\\n<ul>\\n<li>Fix: Conflict update with revision history module<\\/li>\\n<\\/ul>\\n<h4>1.3.0 - 2017-04-25<\\/h4>\\n<ul>\\n<li>New: Added Share Buttons widget (<a href=\\"https:\\/\\/wordpress.org\\/support\\/topic\\/social-sharing-buttons-is-it-possible\\/\\">Topic<\\/a>)<\\/li>\\n<li>New: Added Custom CSS for Page Settings<\\/li>\\n<li>New: Added Masonry layout for Portfolio widget<\\/li>\\n<li>New: Added Cc &amp; Bcc options to email action (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1181\\">#1181<\\/a>)<\\/li>\\n<li>New: Introduced <code>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &amp; Add to Cart widgets<\\/li>\\n<\\/ul>\\n<h4>1.2.5 - 2017-04-18<\\/h4>\\n<ul>\\n<li>Fix: Offset query for posts widgets (Posts, Portfolio and Products)<\\/li>\\n<\\/ul>\\n<h4>1.2.4 - 2017-03-21<\\/h4>\\n<ul>\\n<li>Tweak: Added Indian Rupee sign to Price Table widget<\\/li>\\n<li>Fix: Portfolio grid for IE11<\\/li>\\n<li>Fix: Link target blank in Price List widget<\\/li>\\n<li>Fix: Active item for filter bar in Portfolio widget<\\/li>\\n<\\/ul>\\n<h4>1.2.3 - 2017-03-06<\\/h4>\\n<ul>\\n<li>Tweak: Fully compatible with Elementor v1.3.0<\\/li>\\n<li>Tweak: Added trigger for after form submission in Forms widget<\\/li>\\n<li>Tweak: Changed handle name in reCAPTCHA field to avoid conflict with other contact forms<\\/li>\\n<li>Fix: Portfolio filter syntax in Non-Latin languages<\\/li>\\n<li>Fix: Added <code>no-repeat<\\/code> property for slide with <code>background-size:contain<\\/code><\\/li>\\n<li>Fix: Condition control &amp; Import value in Posts widgets<\\/li>\\n<li>Fix: Offset and Pagination in WordPress (<a href=\\"https:\\/\\/codex.wordpress.org\\/Making_Custom_Queries_using_Offset_and_Pagination\\">More Info<\\/a>)<\\/li>\\n<li>Fix: Submit handler bubbling for custom events in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.2.2 - 2017-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Change name from Side A\\/B to Front and Back in Flip Box widget<\\/li>\\n<li>Fix: Error when saving third party widgets in the global widget<\\/li>\\n<li>Fix: Image position &quot;none&quot; remains visible in editor preview (Posts)<\\/li>\\n<li>Fix: Hide the pagination when there are no links<\\/li>\\n<\\/ul>\\n<h4>1.2.1 - 2017-02-21<\\/h4>\\n<ul>\\n<li>Fix: Firefox Flip Box 3D compatibility<\\/li>\\n<\\/ul>\\n<h4>1.2.0 - 2017-02-21<\\/h4>\\n<ul>\\n<li>New: Added Flip Box widget<\\/li>\\n<li>New: Added Ken Burns effect for slides<\\/li>\\n<li>New: Added Masonry layout for Posts widget<\\/li>\\n<li>New: Added Pagination option for Posts widget<\\/li>\\n<li>Tweak: Added background size contain to slides<\\/li>\\n<li>Tweak: Improve Query control by preload items<\\/li>\\n<li>Fix: Text color for Checkbox and Radio fields<\\/li>\\n<\\/ul>\\n<h4>1.1.2 - 2017-02-05<\\/h4>\\n<ul>\\n<li>Tweak: Added <code>aria-required<\\/code> for better accessibility in forms widget<\\/li>\\n<li>Fix: Conflict Call to <code>undefined<\\/code> method in Posts &amp; Portfolio widgets (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1271\\">#1271<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1266\\">#1266<\\/a>)<\\/li>\\n<li>Fix: Submit button HTML after error sending<\\/li>\\n<li>Fix: Success message for <code>skip_email<\\/code> function<\\/li>\\n<li>Notice: Elementor 1.2.0 or later now required<\\/li>\\n<\\/ul>\\n<h4>1.1.1 - 2017-01-24<\\/h4>\\n<ul>\\n<li>Fix: Can''t save global widgets when <code>WP_DEBUG<\\/code> is <code>true<\\/code><\\/li>\\n<li>Fix: Undefined variable in WC widgets<\\/li>\\n<li>Fix: Removed duplicate strings<\\/li>\\n<\\/ul>\\n<h4>1.1.0 - 2017-01-24<\\/h4>\\n<ul>\\n<li>New: Price Table widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/102\\">#102<\\/a>)<\\/li>\\n<li>New: WooCommerce Add to Cart widget<\\/li>\\n<li>New: WooCommerce Categories widget<\\/li>\\n<li>New: WooCommerce Elements widget<\\/li>\\n<li>New: Honeypot field for Forms widgets<\\/li>\\n<li>Tweak: Added inline options for taxonomies &amp; authors if is less than 15 items<\\/li>\\n<li>Tweak: Added Required Mark for fields in Forms widget<\\/li>\\n<li>Fix: CSS selectors priority in Slides widget<\\/li>\\n<li>Fix: CSS bug in Price List widget<\\/li>\\n<li>Fix: Update all Post CSS files that includes specific Global Widget<\\/li>\\n<\\/ul>\\n<h4>1.0.9 - 2017-01-18<\\/h4>\\n<ul>\\n<li>Fix: Auto complete bug in query controls<\\/li>\\n<li>Fix: Render template with escaping slashes<\\/li>\\n<li>Fix: Reply-to field in Forms widget<\\/li>\\n<\\/ul>\\n<h4>1.0.8 - 2017-01-11<\\/h4>\\n<ul>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Removed go pro link from plugins page in admin<\\/li>\\n<\\/ul>\\n<h4>1.0.7 - 2017-01-05<\\/h4>\\n<ul>\\n<li>Tweak: Added filter by featured \\/ sale for WC Products widget<\\/li>\\n<li>Tweak: Added author control in Portfolio widget<\\/li>\\n<li>Tweak: Code adjustments for Elementor API<\\/li>\\n<li>Fix: Added support for empty image ratio<\\/li>\\n<li>Fix: Avoid nesting a sidebar within a template that will appear in the sidebar itself<\\/li>\\n<\\/ul>\\n<h4>1.0.6 - 2017-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Added Auto-updates for local translation files<\\/li>\\n<li>Fix: Custom CSS for Global widgets<\\/li>\\n<li>Fix: Remove <code>nonce<\\/code> field (Fix some cache plugins)<\\/li>\\n<\\/ul>\\n<h4>1.0.5 - 2016-12-27<\\/h4>\\n<ul>\\n<li>Fix: Slide element bug fix - ''Link apply on'' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with ''0'' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\";}","new_version":"3.35.0","name":"Elementor Pro","slug":"elementor-pro","url":"https:\\/\\/elementor.com\\/pro\\/changelog\\/","homepage":"https:\\/\\/elementor.com\\/pro\\/","requires":"5.0","tested":"6.9.1","elementor_requires":"3.0.1","package":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc3MDI0OTMwNiwiZXhwIjoxNzcwMzM1NzA2fQ.QP9-QYDU5BGdQIQ5H0wbb13POTqxLJSwScY6qTB7aPY\\/package_download","download_link":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc3MDI0OTMwNiwiZXhwIjoxNzcwMzM1NzA2fQ.QP9-QYDU5BGdQIQ5H0wbb13POTqxLJSwScY6qTB7aPY\\/package_download","banners":{"2x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479","1x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479"},"icons":{"svg":"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg"},"canary_deployment":{"plugin_info":{"new_version":"3.7.0","name":"Elementor Pro","slug":"elementor-pro","url":"https:\\/\\/elementor.com\\/pro\\/changelog\\/","homepage":"https:\\/\\/elementor.com\\/pro\\/","requires":"5.0","tested":"6.9.1","elementor_requires":"3.0.1","package":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiaWF0IjoxNzcwMjQ5MzA2LCJleHAiOjE3NzAzMzU3MDZ9.ef_FGTDw3KrvnS-MBjZav2OdRDbllUsCGRu9uw6shw0\\/previous_download","download_link":"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiaWF0IjoxNzcwMjQ5MzA2LCJleHAiOjE3NzAzMzU3MDZ9.ef_FGTDw3KrvnS-MBjZav2OdRDbllUsCGRu9uw6shw0\\/previous_download","banners":{"2x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-1544x500.png?rev=1475479","1x":"https:\\/\\/ps.w.org\\/elementor\\/assets\\/banner-772x250.png?rev=1475479"},"icons":{"svg":"https:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg"}},"conditions":[[{"type":"language","languages":["he_IL","nl_NL","en_GB","en_NZ","en_ZA","en_AU","en_CA","sv_SE","da_DK","fr_FR","nl_NL","nb_NO","de_AT","fi","it_IT","nn_NO","de_CH","en_GB","is_IS","ga","fr_BE","nl_BE","ast","lb_LU","es_ES","pt_PT","mlt"],"operator":"in"}]]},"cloud":false}";}', 'off');
INSERT INTO `wpiq_options` VALUES
(81930, '_site_transient_timeout_wp_theme_files_patterns-b8fc048f5f4864714613c6ef3bc8261d', '1771392099', 'off'),
(81931, '_site_transient_wp_theme_files_patterns-b8fc048f5f4864714613c6ef3bc8261d', 'a:2:{s:7:"version";s:3:"1.2";s:8:"patterns";a:7:{s:18:"call-to-action.php";a:6:{s:5:"title";s:14:"Call to action";s:4:"slug";s:21:"twentytwentythree/cta";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:8:"featured";}s:8:"keywords";a:3:{i:0;s:4:"Call";i:1;s:2:"to";i:2;s:6:"action";}s:10:"blockTypes";a:1:{i:0;s:12:"core/buttons";}}s:18:"footer-default.php";a:5:{s:5:"title";s:14:"Default Footer";s:4:"slug";s:32:"twentytwentythree/footer-default";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:6:"footer";}s:10:"blockTypes";a:1:{i:0;s:25:"core/template-part/footer";}}s:14:"hidden-404.php";a:4:{s:5:"title";s:10:"Hidden 404";s:4:"slug";s:28:"twentytwentythree/hidden-404";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:19:"hidden-comments.php";a:4:{s:5:"title";s:15:"Hidden Comments";s:4:"slug";s:33:"twentytwentythree/hidden-comments";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:18:"hidden-heading.php";a:4:{s:5:"title";s:27:"Hidden Heading for Homepage";s:4:"slug";s:32:"twentytwentythree/hidden-heading";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:21:"hidden-no-results.php";a:4:{s:5:"title";s:25:"Hidden No Results Content";s:4:"slug";s:43:"twentytwentythree/hidden-no-results-content";s:11:"description";s:0:"";s:8:"inserter";b:0;}s:13:"post-meta.php";a:6:{s:5:"title";s:9:"Post Meta";s:4:"slug";s:27:"twentytwentythree/post-meta";s:11:"description";s:0:"";s:10:"categories";a:1:{i:0;s:5:"query";}s:8:"keywords";a:2:{i:0;s:4:"post";i:1;s:4:"meta";}s:10:"blockTypes";a:1:{i:0;s:28:"core/template-part/post-meta";}}}}', 'off'),
(81933, '_site_transient_timeout_theme_roots', '1771459681', 'off'),
(81934, '_site_transient_theme_roots', 'a:1:{s:17:"twentytwentythree";s:7:"/themes";}', 'off'),
(81938, '_site_transient_update_themes', 'O:8:"stdClass":5:{s:12:"last_checked";i:1771457898;s:7:"checked";a:1:{s:17:"twentytwentythree";s:3:"1.2";}s:8:"response";a:1:{s:17:"twentytwentythree";a:6:{s:5:"theme";s:17:"twentytwentythree";s:11:"new_version";s:3:"1.6";s:3:"url";s:47:"https://wordpress.org/themes/twentytwentythree/";s:7:"package";s:63:"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip";s:8:"requires";s:3:"6.1";s:12:"requires_php";s:3:"5.6";}}s:9:"no_update";a:0:{}s:12:"translations";a:0:{}}', 'off'),
(81939, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1771457910;s:8:"response";a:4:{s:31:"code-snippets/code-snippets.php";O:8:"stdClass":13:{s:2:"id";s:27:"w.org/plugins/code-snippets";s:4:"slug";s:13:"code-snippets";s:6:"plugin";s:31:"code-snippets/code-snippets.php";s:11:"new_version";s:5:"3.9.5";s:3:"url";s:44:"https://wordpress.org/plugins/code-snippets/";s:7:"package";s:62:"https://downloads.wordpress.org/plugin/code-snippets.3.9.5.zip";s:5:"icons";a:2:{s:2:"1x";s:58:"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878";s:3:"svg";s:58:"https://ps.w.org/code-snippets/assets/icon.svg?rev=2148878";}s:7:"banners";a:2:{s:2:"2x";s:69:"https://ps.w.org/code-snippets/assets/banner-1544x500.png?rev=3147867";s:2:"1x";s:68:"https://ps.w.org/code-snippets/assets/banner-772x250.png?rev=3147867";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.0";s:6:"tested";s:5:"6.9.1";s:12:"requires_php";s:3:"7.4";s:16:"requires_plugins";a:0:{}}s:23:"elementor/elementor.php";O:8:"stdClass":13:{s:2:"id";s:23:"w.org/plugins/elementor";s:4:"slug";s:9:"elementor";s:6:"plugin";s:23:"elementor/elementor.php";s:11:"new_version";s:6:"3.35.5";s:3:"url";s:40:"https://wordpress.org/plugins/elementor/";s:7:"package";s:59:"https://downloads.wordpress.org/plugin/elementor.3.35.5.zip";s:5:"icons";a:2:{s:2:"2x";s:62:"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228";s:2:"1x";s:62:"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226";s:2:"1x";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.6";s:6:"tested";s:5:"6.9.1";s:12:"requires_php";s:3:"7.4";s:16:"requires_plugins";a:0:{}}s:27:"wp-optimize/wp-optimize.php";O:8:"stdClass":13:{s:2:"id";s:25:"w.org/plugins/wp-optimize";s:4:"slug";s:11:"wp-optimize";s:6:"plugin";s:27:"wp-optimize/wp-optimize.php";s:11:"new_version";s:5:"4.5.0";s:3:"url";s:42:"https://wordpress.org/plugins/wp-optimize/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/wp-optimize.4.5.0.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/wp-optimize/assets/icon-256x256.png?rev=1552899";s:2:"1x";s:64:"https://ps.w.org/wp-optimize/assets/icon-128x128.png?rev=1552899";}s:7:"banners";a:2:{s:2:"2x";s:67:"https://ps.w.org/wp-optimize/assets/banner-1544x500.png?rev=2125385";s:2:"1x";s:66:"https://ps.w.org/wp-optimize/assets/banner-772x250.png?rev=2125385";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.9";s:6:"tested";s:5:"6.9.1";s:12:"requires_php";s:3:"7.2";s:16:"requires_plugins";a:0:{}}s:31:"elementor-pro/elementor-pro.php";O:8:"stdClass":17:{s:14:"stable_version";s:6:"3.35.0";s:12:"last_updated";s:19:"2026-02-02 09:47:18";s:11:"new_version";s:6:"3.35.0";s:4:"name";s:13:"Elementor Pro";s:4:"slug";s:13:"elementor-pro";s:3:"url";s:36:"https://elementor.com/pro/changelog/";s:8:"homepage";s:26:"https://elementor.com/pro/";s:8:"requires";s:3:"5.0";s:6:"tested";s:5:"6.9.1";s:18:"elementor_requires";s:5:"3.0.1";s:7:"package";s:351:"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc3MDI0OTMwNiwiZXhwIjoxNzcwMzM1NzA2fQ.QP9-QYDU5BGdQIQ5H0wbb13POTqxLJSwScY6qTB7aPY/package_download";s:13:"download_link";s:351:"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTc3MDI0OTMwNiwiZXhwIjoxNzcwMzM1NzA2fQ.QP9-QYDU5BGdQIQ5H0wbb13POTqxLJSwScY6qTB7aPY/package_download";s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479";s:2:"1x";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479";}s:5:"icons";a:1:{s:3:"svg";s:75:"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg";}s:17:"canary_deployment";a:2:{s:11:"plugin_info";a:12:{s:11:"new_version";s:5:"3.7.0";s:4:"name";s:13:"Elementor Pro";s:4:"slug";s:13:"elementor-pro";s:3:"url";s:36:"https://elementor.com/pro/changelog/";s:8:"homepage";s:26:"https://elementor.com/pro/";s:8:"requires";s:3:"5.0";s:6:"tested";s:5:"6.9.1";s:18:"elementor_requires";s:5:"3.0.1";s:7:"package";s:327:"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiaWF0IjoxNzcwMjQ5MzA2LCJleHAiOjE3NzAzMzU3MDZ9.ef_FGTDw3KrvnS-MBjZav2OdRDbllUsCGRu9uw6shw0/previous_download";s:13:"download_link";s:327:"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiMzE2MGY1NWRlZWQyODg1NGQ3NmJhMGIyMmZhNWU5NjgiLCJ2ZXJzaW9uIjoiMy43LjAiLCJ1cmwiOiJodHRwczovL29tc3Jpc2xiLm15IiwiaWF0IjoxNzcwMjQ5MzA2LCJleHAiOjE3NzAzMzU3MDZ9.ef_FGTDw3KrvnS-MBjZav2OdRDbllUsCGRu9uw6shw0/previous_download";s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479";s:2:"1x";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479";}s:5:"icons";a:1:{s:3:"svg";s:75:"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg";}}s:10:"conditions";a:1:{i:0;a:1:{i:0;a:3:{s:4:"type";s:8:"language";s:9:"languages";a:27:{i:0;s:5:"he_IL";i:1;s:5:"nl_NL";i:2;s:5:"en_GB";i:3;s:5:"en_NZ";i:4;s:5:"en_ZA";i:5;s:5:"en_AU";i:6;s:5:"en_CA";i:7;s:5:"sv_SE";i:8;s:5:"da_DK";i:9;s:5:"fr_FR";i:10;s:5:"nl_NL";i:11;s:5:"nb_NO";i:12;s:5:"de_AT";i:13;s:2:"fi";i:14;s:5:"it_IT";i:15;s:5:"nn_NO";i:16;s:5:"de_CH";i:17;s:5:"en_GB";i:18;s:5:"is_IS";i:19;s:2:"ga";i:20;s:5:"fr_BE";i:21;s:5:"nl_BE";i:22;s:3:"ast";i:23;s:5:"lb_LU";i:24;s:5:"es_ES";i:25;s:5:"pt_PT";i:26;s:3:"mlt";}s:8:"operator";s:2:"in";}}}}s:5:"cloud";b:0;s:6:"plugin";s:31:"elementor-pro/elementor-pro.php";}}s:12:"translations";a:0:{}s:9:"no_update";a:4:{s:51:"all-in-one-wp-migration/all-in-one-wp-migration.php";O:8:"stdClass":10:{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:5:"7.102";s:3:"url";s:54:"https://wordpress.org/plugins/all-in-one-wp-migration/";s:7:"package";s:72:"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.102.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=3427096";s:2:"1x";s:78:"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3427096";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"3.3";}s:37:"elementskit-lite/elementskit-lite.php";O:8:"stdClass":10:{s:2:"id";s:30:"w.org/plugins/elementskit-lite";s:4:"slug";s:16:"elementskit-lite";s:6:"plugin";s:37:"elementskit-lite/elementskit-lite.php";s:11:"new_version";s:5:"3.7.9";s:3:"url";s:47:"https://wordpress.org/plugins/elementskit-lite/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/elementskit-lite.3.7.9.zip";s:5:"icons";a:2:{s:2:"2x";s:69:"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175";s:2:"1x";s:69:"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175";}s:7:"banners";a:2:{s:2:"2x";s:72:"https://ps.w.org/elementskit-lite/assets/banner-1544x500.jpg?rev=3250020";s:2:"1x";s:71:"https://ps.w.org/elementskit-lite/assets/banner-772x250.jpg?rev=3250020";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.0";}s:51:"ooohboi-steroids-for-elementor/ooohboi-steroids.php";O:8:"stdClass":10:{s:2:"id";s:44:"w.org/plugins/ooohboi-steroids-for-elementor";s:4:"slug";s:30:"ooohboi-steroids-for-elementor";s:6:"plugin";s:51:"ooohboi-steroids-for-elementor/ooohboi-steroids.php";s:11:"new_version";s:6:"2.1.24";s:3:"url";s:61:"https://wordpress.org/plugins/ooohboi-steroids-for-elementor/";s:7:"package";s:80:"https://downloads.wordpress.org/plugin/ooohboi-steroids-for-elementor.2.1.24.zip";s:5:"icons";a:2:{s:2:"2x";s:83:"https://ps.w.org/ooohboi-steroids-for-elementor/assets/icon-256x256.png?rev=2778171";s:2:"1x";s:83:"https://ps.w.org/ooohboi-steroids-for-elementor/assets/icon-128x128.png?rev=2778171";}s:7:"banners";a:2:{s:2:"2x";s:86:"https://ps.w.org/ooohboi-steroids-for-elementor/assets/banner-1544x500.png?rev=2778171";s:2:"1x";s:85:"https://ps.w.org/ooohboi-steroids-for-elementor/assets/banner-772x250.png?rev=2778171";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"6.0";}s:23:"wordfence/wordfence.php";O:8:"stdClass":10:{s:2:"id";s:23:"w.org/plugins/wordfence";s:4:"slug";s:9:"wordfence";s:6:"plugin";s:23:"wordfence/wordfence.php";s:11:"new_version";s:5:"8.1.4";s:3:"url";s:40:"https://wordpress.org/plugins/wordfence/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/wordfence.8.1.4.zip";s:5:"icons";a:2:{s:2:"1x";s:54:"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865";s:3:"svg";s:54:"https://ps.w.org/wordfence/assets/icon.svg?rev=2070865";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/wordfence/assets/banner-1544x500.jpg?rev=2124102";s:2:"1x";s:64:"https://ps.w.org/wordfence/assets/banner-772x250.jpg?rev=2124102";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.7";}}s:7:"checked";a:9:{s:51:"all-in-one-wp-migration/all-in-one-wp-migration.php";s:5:"7.102";s:91:"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php";s:4:"2.63";s:31:"code-snippets/code-snippets.php";s:5:"3.6.8";s:23:"elementor/elementor.php";s:6:"3.28.1";s:31:"elementor-pro/elementor-pro.php";s:6:"3.35.0";s:37:"elementskit-lite/elementskit-lite.php";s:5:"3.7.9";s:51:"ooohboi-steroids-for-elementor/ooohboi-steroids.php";s:6:"2.1.24";s:23:"wordfence/wordfence.php";s:5:"8.1.4";s:27:"wp-optimize/wp-optimize.php";s:5:"4.1.1";}}', 'off');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_postmeta`
--

CREATE TABLE `wpiq_postmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_postmeta`
--

INSERT INTO `wpiq_postmeta` VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(3, 4, '_elementor_edit_mode', 'builder'),
(4, 4, '_elementor_template_type', 'kit'),
(5, 4, '_elementor_version', '3.0.16'),
(8, 7, '_edit_lock', '1747469325:1'),
(9, 9, '_elementor_edit_mode', 'builder'),
(10, 9, '_elementor_template_type', 'header'),
(11, 9, '_elementor_version', '3.15.3'),
(12, 9, '_elementor_pro_version', '3.15.1'),
(14, 9, 'ekit_post_views_count', '12'),
(15, 9, '_edit_lock', '1742975930:1'),
(16, 10, '_wp_attached_file', '2021/01/placeholder.png'),
(17, 10, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:23:"2021/01/placeholder.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:23:"placeholder-300x200.png";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:24:"placeholder-1024x683.png";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"placeholder-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:23:"placeholder-768x512.png";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(18, 10, '_elementor_source_image_hash', '335ba5c9e22234f077dfeaff9baa26837657b509'),
(23, 9, '_wp_page_template', 'default'),
(24, 9, '_elementor_data', '[{"id":"1c8c937","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","content_width_mobile":{"unit":"px","size":1600,"sizes":[]}},"elements":[{"id":"ce5fe72","elType":"column","settings":{"_column_size":33,"_inline_size":null,"content_position":"center"},"elements":[{"id":"6f0bbc47","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"fb32d84","elType":"column","settings":{"_column_size":33,"_inline_size":null,"hide_mobile":"hidden-mobile"},"elements":[{"id":"b742c4c","elType":"widget","settings":{"ekit_headerinfo_group":[{"ekit_headerinfo_text":"omsrislb99gmail.com","_id":"c037c59","ekit_headerinfo_icons":{"value":"icon icon-email","library":"ekiticons"},"ekit_headerinfo_link":{"url":"mailto:omsrislb99@gmail.com","is_external":true,"nofollow":true,"custom_attributes":""}}],"ekit_info_text_color":"#0EB367","elementskit_content_typography_typography":"custom","elementskit_content_typography_font_size":{"unit":"px","size":13,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0150","isLinked":false},"elementskit_content_typography_font_weight":"normal"},"elements":[],"widgetType":"elementskit-header-info"}],"isInner":false},{"id":"4c4ba12","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"0b6f668","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.6280000000000001136868377216160297393798828125},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"fb44657","elType":"section","settings":{"content_width":{"unit":"px","size":631,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5ce3ff0","elType":"column","settings":{"_column_size":100,"_inline_size":100,"_inline_size_mobile":100,"content_position":"center","align":"center","space_between_widgets":100,"content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"70f22c3","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]"},"_element_width":"initial","_element_custom_width":{"unit":"%","size":40.9609999999999985220711096189916133880615234375},"_flex_size":"none","align_mobile":"center","_element_width_mobile":"initial","_element_custom_width_mobile":{"unit":"px","size":138.265999999999991132426657713949680328369140625}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false}],"isInner":false},{"id":"2427598","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin_mobile":{"unit":"px","top":"-40","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":20,"margin_tablet":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":10,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.15)"},"margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","background_background":"classic","__globals__":{"background_color":""}},"elements":[{"id":"c008c7c","elType":"column","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#189E83"},"elements":[{"id":"c9c89ca","elType":"widget","settings":{"align_items":"center","pointer":"none","indicator":"none","menu_typography_typography":"custom","menu_typography_font_family":"Raleway","menu_typography_font_size":{"unit":"px","size":15,"sizes":[]},"menu_typography_font_weight":"600","menu_typography_text_transform":"uppercase","padding_horizontal_menu_item":{"unit":"px","size":25,"sizes":[]},"padding_vertical_menu_item":{"unit":"px","size":40,"sizes":[]},"menu_space_between":{"unit":"px","size":43,"sizes":[]},"menu":"menu","color_menu_item":"#FFFFFF","color_menu_item_hover":"#000000","color_menu_item_active":"#000000","_background_hover_background":"classic","toggle_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"submenu_icon":{"value":"","library":""}},"elements":[],"widgetType":"nav-menu"}],"isInner":false}],"isInner":false}]'),
(32, 9, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(33, 4, '_edit_lock', '1610988484:1'),
(34, 13, '_wp_attached_file', '2021/01/logo.png'),
(35, 13, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2118;s:6:"height";i:2500;s:4:"file";s:16:"2021/01/logo.png";s:5:"sizes";a:7:{s:6:"medium";a:4:{s:4:"file";s:16:"logo-254x300.png";s:5:"width";i:254;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:17:"logo-868x1024.png";s:5:"width";i:868;s:6:"height";i:1024;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:16:"logo-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:16:"logo-768x907.png";s:5:"width";i:768;s:6:"height";i:907;s:9:"mime-type";s:9:"image/png";}s:9:"1536x1536";a:4:{s:4:"file";s:18:"logo-1301x1536.png";s:5:"width";i:1301;s:6:"height";i:1536;s:9:"mime-type";s:9:"image/png";}s:9:"2048x2048";a:4:{s:4:"file";s:18:"logo-1735x2048.png";s:5:"width";i:1735;s:6:"height";i:2048;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:18:"logo-1568x1851.png";s:5:"width";i:1568;s:6:"height";i:1851;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(40, 4, '_wp_page_template', 'default'),
(41, 4, '_elementor_page_settings', 'a:11:{s:13:"system_colors";a:4:{i:0;a:3:{s:3:"_id";s:7:"primary";s:5:"title";s:7:"Primary";s:5:"color";s:7:"#6EC1E4";}i:1;a:3:{s:3:"_id";s:9:"secondary";s:5:"title";s:9:"Secondary";s:5:"color";s:7:"#54595F";}i:2;a:3:{s:3:"_id";s:4:"text";s:5:"title";s:4:"Text";s:5:"color";s:7:"#7A7A7A";}i:3;a:3:{s:3:"_id";s:6:"accent";s:5:"title";s:6:"Accent";s:5:"color";s:7:"#61CE70";}}s:13:"custom_colors";a:0:{}s:17:"system_typography";a:4:{i:0;a:5:{s:3:"_id";s:7:"primary";s:5:"title";s:7:"Primary";s:21:"typography_typography";s:6:"custom";s:22:"typography_font_family";s:6:"Roboto";s:22:"typography_font_weight";s:3:"600";}i:1;a:5:{s:3:"_id";s:9:"secondary";s:5:"title";s:9:"Secondary";s:21:"typography_typography";s:6:"custom";s:22:"typography_font_family";s:11:"Roboto Slab";s:22:"typography_font_weight";s:3:"400";}i:2;a:5:{s:3:"_id";s:4:"text";s:5:"title";s:4:"Text";s:21:"typography_typography";s:6:"custom";s:22:"typography_font_family";s:6:"Roboto";s:22:"typography_font_weight";s:3:"400";}i:3;a:5:{s:3:"_id";s:6:"accent";s:5:"title";s:6:"Accent";s:21:"typography_typography";s:6:"custom";s:22:"typography_font_family";s:6:"Roboto";s:22:"typography_font_weight";s:3:"500";}}s:17:"custom_typography";a:0:{}s:21:"default_generic_fonts";s:10:"Sans-serif";s:9:"site_name";s:10:"Om Sri Slb";s:19:"page_title_selector";s:14:"h1.entry-title";s:12:"site_favicon";a:2:{s:3:"url";s:55:"https://omsrislb.my/wp-content/uploads/2021/01/icon.png";s:2:"id";i:194;}s:15:"viewport_mobile";s:0:"";s:15:"viewport_tablet";s:0:"";s:16:"site_description";s:21:"Insulation Specialist";}'),
(42, 4, '_elementor_data', '[]'),
(50, 4, '_elementor_pro_version', '3.0.6'),
(59, 17, '_edit_lock', '1742974662:1'),
(72, 20, '_edit_lock', '1692667013:3'),
(82, 23, '_edit_lock', '1692709640:3'),
(84, 25, '_edit_lock', '1692667828:3'),
(85, 27, '_edit_lock', '1692667019:3'),
(100, 32, '_menu_item_type', 'post_type'),
(101, 32, '_menu_item_menu_item_parent', '0'),
(102, 32, '_menu_item_object_id', '17'),
(103, 32, '_menu_item_object', 'page'),
(104, 32, '_menu_item_target', ''),
(105, 32, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(106, 32, '_menu_item_xfn', ''),
(107, 32, '_menu_item_url', ''),
(109, 33, '_menu_item_type', 'post_type'),
(110, 33, '_menu_item_menu_item_parent', '0'),
(111, 33, '_menu_item_object_id', '20'),
(112, 33, '_menu_item_object', 'page'),
(113, 33, '_menu_item_target', ''),
(114, 33, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(115, 33, '_menu_item_xfn', ''),
(116, 33, '_menu_item_url', ''),
(118, 34, '_menu_item_type', 'post_type'),
(119, 34, '_menu_item_menu_item_parent', '0'),
(120, 34, '_menu_item_object_id', '23'),
(121, 34, '_menu_item_object', 'page'),
(122, 34, '_menu_item_target', ''),
(123, 34, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(124, 34, '_menu_item_xfn', ''),
(125, 34, '_menu_item_url', ''),
(127, 35, '_menu_item_type', 'post_type'),
(128, 35, '_menu_item_menu_item_parent', '0'),
(129, 35, '_menu_item_object_id', '25'),
(130, 35, '_menu_item_object', 'page'),
(131, 35, '_menu_item_target', ''),
(132, 35, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(133, 35, '_menu_item_xfn', ''),
(134, 35, '_menu_item_url', ''),
(136, 36, '_menu_item_type', 'post_type'),
(137, 36, '_menu_item_menu_item_parent', '0'),
(138, 36, '_menu_item_object_id', '27'),
(139, 36, '_menu_item_object', 'page'),
(140, 36, '_menu_item_target', ''),
(141, 36, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(142, 36, '_menu_item_xfn', ''),
(143, 36, '_menu_item_url', ''),
(154, 38, '_menu_item_type', 'post_type'),
(155, 38, '_menu_item_menu_item_parent', '0'),
(156, 38, '_menu_item_object_id', '7'),
(157, 38, '_menu_item_object', 'page'),
(158, 38, '_menu_item_target', ''),
(159, 38, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(160, 38, '_menu_item_xfn', ''),
(161, 38, '_menu_item_url', ''),
(246, 60, '_elementor_edit_mode', 'builder'),
(247, 60, '_elementor_template_type', 'footer'),
(248, 60, '_elementor_version', '3.15.3'),
(249, 60, '_elementor_pro_version', '3.15.1'),
(250, 60, '_edit_lock', '1742227516:1'),
(251, 60, 'ekit_post_views_count', '13'),
(252, 61, '_wp_attached_file', '2021/01/asset-09.jpg'),
(253, 61, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1263;s:6:"height";i:678;s:4:"file";s:20:"2021/01/asset-09.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-09-300x161.jpg";s:5:"width";i:300;s:6:"height";i:161;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"asset-09-1024x550.jpg";s:5:"width";i:1024;s:6:"height";i:550;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-09-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-09-768x412.jpg";s:5:"width";i:768;s:6:"height";i:412;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(254, 62, '_wp_attached_file', '2021/01/logo-white.png'),
(255, 62, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:254;s:6:"height";i:300;s:4:"file";s:22:"2021/01/logo-white.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"logo-white-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(260, 60, '_wp_page_template', 'default'),
(261, 60, '_elementor_data', '[{"id":"201a4a94","elType":"section","settings":{"content_position":"middle","background_background":"classic","background_color":"#575860","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"50","right":"20","bottom":"20","left":"20","isLinked":false},"padding_mobile":{"unit":"px","top":"120","right":"15","bottom":"20","left":"15","isLinked":false},"background_color_b":"#3a3a3a","background_gradient_angle":{"unit":"deg","size":360},"border_border":"solid","border_width":{"unit":"px","top":"5","right":"0","bottom":"0","left":"0","isLinked":false},"border_color":"#36861B","html_tag":"footer","_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0029.jpg","id":460},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","background_overlay_background":"gradient","background_overlay_color":"#000000","background_overlay_color_b":"#005B03","background_overlay_opacity":{"unit":"px","size":0.82,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"1a5bc8b9","elType":"column","settings":{"_column_size":100,"_inline_size":null,"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"2a28638f","elType":"section","settings":{"structure":"30","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding":{"unit":"px","top":"100","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"438cb576","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":100,"_inline_size_mobile":100,"padding":{"unit":"px","top":"0","right":"40","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"4a44d55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""},"width":{"unit":"%","size":100,"sizes":[]},"_padding":{"unit":"px","top":"0","right":"200","bottom":"0","left":"0","isLinked":false},"image_size":"medium_large","align_mobile":"left","_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"align_tablet":"left","image_custom_dimension":{"width":"300","height":"0"},"link_to":"custom","link":{"url":"site","is_external":"","nofollow":"","custom_attributes":""},"_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"__dynamic__":{"link":"[elementor-tag id=\\"9e2dda1\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"width_tablet":{"unit":"%","size":32,"sizes":[]},"width_mobile":{"unit":"%","size":32,"sizes":[]},"align":"right"},"elements":[],"widgetType":"image"},{"id":"ea2e365","elType":"widget","settings":{"editor":"<p style=\\"text-align: left;\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">OM SRI SLB is a leading provider of high-quality insulation solutions for pipes and structures. We specialize in insulation material sales and\\u00a0<\\/span><span style=\\"font-family: var( --e-global-typography-text-font-family ), Sans-serif;\\">professional installation services.<\\/span><\\/p>","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14},"typography_font_weight":"300","align_tablet":"left","align_mobile":"left","align":"left","_margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"3e3d5d15","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50,"_inline_size_mobile":100},"elements":[{"id":"67273763","elType":"widget","settings":{"title":"Person In-charge","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":20},"typography_font_weight":"500","header_size":"h4","typography_font_family":"Raleway"},"elements":[],"widgetType":"heading"},{"id":"9b61147","elType":"widget","settings":{"width":{"unit":"%","size":20,"sizes":[]},"text":"Divider","color":"#55B434","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"-10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"7733838b","elType":"widget","settings":{"icon_list":[{"text":"MR.MUNIANDY ARUNASALAM (DIRECTOR)","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-phone-call","library":"ekiticons"},"link":{"url":"tel:6019648746","is_external":"","nofollow":"","custom_attributes":""}},{"text":"MR.SURESH (SALES ENGINEER)","icon":"","selected_icon":{"value":"icon icon-phone-call","library":"ekiticons"},"_id":"650fcab","link":{"url":"tel:6102384741","is_external":"","nofollow":"","custom_attributes":""}},{"text":"MR. M.KANAPATHI  (SALES ENGINEER )","icon":"","selected_icon":{"value":"icon icon-phone-call","library":"ekiticons"},"_id":"310e92a","link":{"url":"tel:60102384742","is_external":"","nofollow":"","custom_attributes":""}}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left"},"elements":[],"widgetType":"icon-list"},{"id":"da4c92c","elType":"widget","settings":{"title":"Subscribe Now","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":20},"typography_font_weight":"500","header_size":"h4","typography_font_family":"Raleway"},"elements":[],"widgetType":"heading"},{"id":"78c263d7","elType":"widget","settings":{"form_name":"Footer Form","form_fields":[{"_id":"email","field_type":"email","required":"true","field_label":"Email","placeholder":"Your Email","width":"66","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":"","custom_id":"email","previous_button":"","next_button":""}],"show_labels":"","button_text":"","button_width":"33","email_content":"[all-fields]","email_content_2":"[all-fields]","success_message":"The form was sent successfully!","error_message":"Please fill in the required fields.","required_field_message":"Required","invalid_message":"There''s something wrong. The form is invalid.","column_gap":{"unit":"px","size":0},"row_gap":{"unit":"px","size":0},"label_color":"#ffffff","label_typography_typography":"custom","label_typography_font_size":{"unit":"px","size":12},"field_text_color":"#FFFFFF","field_typography_typography":"custom","field_typography_font_size":{"unit":"px","size":14},"field_typography_font_weight":"300","field_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":true},"field_border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_color":"#55B434","button_typography_typography":"custom","button_typography_font_size":{"unit":"px","size":14},"button_typography_font_weight":"600","button_typography_text_transform":"uppercase","button_border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","input_size":"md","button_size":"md","selected_button_icon":{"value":"fab fa-telegram-plane","library":"fa-brands"},"mailchimp_fields_map":[],"drip_fields_map":[],"activecampaign_fields_map":[],"getresponse_fields_map":[],"convertkit_fields_map":[],"mailerlite_fields_map":[],"step_next_label":"Next","step_previous_label":"Previous","email_to":"omsrislb99@gmail.com","email_subject":"New message from \\"Om Sri Slb\\"","email_from":"email@binawebpro.com","email_from_name":"Om Sri Slb","email_to_2":"daniel@cloudix.my","email_subject_2":"New message from \\"Om Sri Slb\\"","email_from_2":"email@binawebpro.com","email_from_name_2":"Om Sri Slb","email_reply_to_2":"daniel@cloudix.my","field_background_color":"","field_border_color":"#FFFFFF","_margin_tablet":{"unit":"px","top":"00","right":"00","bottom":"00","left":"00","isLinked":true},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"server_message":"Your submission failed because of a server error."},"elements":[],"widgetType":"form"}],"isInner":true},{"id":"6aa19591","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_tablet":50,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"40","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true}},"elements":[{"id":"e9c6979","elType":"widget","settings":{"title":"Contact Person","title_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":20},"typography_font_weight":"500","header_size":"h4","typography_font_family":"Raleway"},"elements":[],"widgetType":"heading"},{"id":"69b0750","elType":"widget","settings":{"width":{"unit":"%","size":20,"sizes":[]},"text":"Divider","color":"#55B434","weight":{"unit":"px","size":5,"sizes":[]},"gap":{"unit":"px","size":2,"sizes":[]},"_margin":{"unit":"px","top":"-10","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"divider"},{"id":"6a5badf","elType":"widget","settings":{"icon_list":[{"text":"019-614 8746 (MR. A. MUNIANDY)","selected_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"_id":"01cab1d","__dynamic__":[],"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60196148746&text=Hi,+omsrislb.my+","is_external":"","nofollow":"","custom_attributes":""}},{"text":"010-238 4741 (MR.SURESH)","selected_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"__dynamic__":[],"_id":"5c3e8b5","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi,+omsrislb.my+","is_external":"","nofollow":"","custom_attributes":""}},{"text":"016-888 8420 (MR. KANAPATHI)","selected_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"__dynamic__":[],"_id":"3432b22","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60168888420&text=Hi,+omsrislb.my+","is_external":"","nofollow":"","custom_attributes":""}},{"text":"012-9949244 (MRS. A. RENUGAA)","selected_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"__dynamic__":[],"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60129949244&text=Hi,+omsrislb.my+","is_external":"","nofollow":"","custom_attributes":""},"_id":"560d3d9"},{"text":"012-7669949 (MRS. SITI)","selected_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"__dynamic__":[],"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60127669949&text=Hi,+omsrislb.my+","is_external":"","nofollow":"","custom_attributes":""},"_id":"a2ea18e"},{"text":"omsrislb99@gmail.com","selected_icon":{"value":"icon icon-mail","library":"ekiticons"},"_id":"57c9a58","__dynamic__":[]}],"space_between":{"unit":"px","size":10,"sizes":[]},"icon_align_mobile":"left","icon_color":"#FFFFFF","icon_size":{"unit":"px","size":15,"sizes":[]},"text_color":"#FFFFFF","text_indent":{"unit":"px","size":10,"sizes":[]},"icon_typography_typography":"custom","icon_typography_font_family":"Poppins","icon_typography_font_size":{"unit":"px","size":14,"sizes":[]},"icon_typography_font_size_mobile":{"unit":"px","size":16,"sizes":[]},"icon_typography_font_weight":"400","_padding_mobile":{"unit":"px","top":"50","right":"0","bottom":"050","left":"0","isLinked":false},"icon_align":"left","icon_self_align":"center"},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"e26790a","elType":"section","settings":{"layout":"full_width","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#000000","padding":{"unit":"px","top":"0","right":"60","bottom":"0","left":"60","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dbb591e","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"7ca07a2","elType":"widget","settings":{"editor":"<p>Copyright \\u00a9 2023 OM SRI SLB<\\/p>","align":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":false},{"id":"a036c7a","elType":"column","settings":{"_column_size":50,"_inline_size":null,"hide_mobile":"hidden-mobile"},"elements":[{"id":"e1354c0","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(269, 60, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(292, 7, '_elementor_template_type', 'wp-page'),
(293, 7, '_elementor_version', '3.28.0'),
(294, 7, '_elementor_pro_version', '3.15.1'),
(320, 7, '_wp_page_template', 'elementor_header_footer'),
(321, 7, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"050","right":"0","bottom":"0","left":"0","isLinked":false},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(350, 77, '_wp_attached_file', '2021/01/asset-05.jpg'),
(351, 77, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:770;s:6:"height";i:475;s:4:"file";s:20:"2021/01/asset-05.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-05-300x185.jpg";s:5:"width";i:300;s:6:"height";i:185;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-05-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-05-768x474.jpg";s:5:"width";i:768;s:6:"height";i:474;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(486, 99, '_wp_attached_file', '2021/01/asset-02.png'),
(487, 99, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1263;s:6:"height";i:898;s:4:"file";s:20:"2021/01/asset-02.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-02-300x213.png";s:5:"width";i:300;s:6:"height";i:213;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:21:"asset-02-1024x728.png";s:5:"width";i:1024;s:6:"height";i:728;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-02-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-02-768x546.png";s:5:"width";i:768;s:6:"height";i:546;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(488, 100, '_wp_attached_file', '2021/01/asset-01.jpg'),
(489, 100, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:364;s:4:"file";s:20:"2021/01/asset-01.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-01-223x300.jpg";s:5:"width";i:223;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-01-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(511, 105, '_wp_attached_file', '2021/01/asset-03.jpg'),
(512, 105, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:271;s:6:"height";i:366;s:4:"file";s:20:"2021/01/asset-03.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-03-222x300.jpg";s:5:"width";i:222;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-03-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(619, 122, '_wp_attached_file', '2021/01/asset-10.jpg'),
(620, 122, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:271;s:6:"height";i:366;s:4:"file";s:20:"2021/01/asset-10.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-10-222x300.jpg";s:5:"width";i:222;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-10-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(621, 123, '_wp_attached_file', '2021/01/asset-11.jpg'),
(622, 123, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:271;s:6:"height";i:366;s:4:"file";s:20:"2021/01/asset-11.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-11-222x300.jpg";s:5:"width";i:222;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-11-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(643, 127, '_wp_attached_file', '2021/01/asset-05-1.jpg'),
(644, 127, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:770;s:6:"height";i:475;s:4:"file";s:22:"2021/01/asset-05-1.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:22:"asset-05-1-300x185.jpg";s:5:"width";i:300;s:6:"height";i:185;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"asset-05-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"asset-05-1-768x474.jpg";s:5:"width";i:768;s:6:"height";i:474;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(645, 128, '_wp_attached_file', '2021/01/asset-12.jpg'),
(646, 128, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:770;s:6:"height";i:475;s:4:"file";s:20:"2021/01/asset-12.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-12-300x185.jpg";s:5:"width";i:300;s:6:"height";i:185;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-12-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-12-768x474.jpg";s:5:"width";i:768;s:6:"height";i:474;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(647, 129, '_wp_attached_file', '2021/01/asset-13.jpg'),
(648, 129, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:770;s:6:"height";i:475;s:4:"file";s:20:"2021/01/asset-13.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-13-300x185.jpg";s:5:"width";i:300;s:6:"height";i:185;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-13-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-13-768x474.jpg";s:5:"width";i:768;s:6:"height";i:474;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(671, 133, '_wp_attached_file', '2021/01/asset-06.jpg'),
(672, 133, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:367;s:6:"height";i:473;s:4:"file";s:20:"2021/01/asset-06.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-06-233x300.jpg";s:5:"width";i:233;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-06-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(730, 143, '_wp_attached_file', '2021/01/asset-08.jpg'),
(731, 143, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1263;s:6:"height";i:713;s:4:"file";s:20:"2021/01/asset-08.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-08-300x169.jpg";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"asset-08-1024x578.jpg";s:5:"width";i:1024;s:6:"height";i:578;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-08-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-08-768x434.jpg";s:5:"width";i:768;s:6:"height";i:434;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(732, 144, '_wp_attached_file', '2021/01/asset-07.jpg'),
(733, 144, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:544;s:6:"height";i:544;s:4:"file";s:20:"2021/01/asset-07.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-07-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-07-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(886, 168, '_wp_attached_file', '2021/01/asset-03.png'),
(887, 168, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1263;s:6:"height";i:707;s:4:"file";s:20:"2021/01/asset-03.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:20:"asset-03-300x168.png";s:5:"width";i:300;s:6:"height";i:168;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:21:"asset-03-1024x573.png";s:5:"width";i:1024;s:6:"height";i:573;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-03-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-03-768x430.png";s:5:"width";i:768;s:6:"height";i:430;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(952, 180, '_wp_attached_file', '2021/01/asset-14.jpg'),
(953, 180, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1173;s:6:"height";i:292;s:4:"file";s:20:"2021/01/asset-14.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:19:"asset-14-300x75.jpg";s:5:"width";i:300;s:6:"height";i:75;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"asset-14-1024x255.jpg";s:5:"width";i:1024;s:6:"height";i:255;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"asset-14-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"asset-14-768x191.jpg";s:5:"width";i:768;s:6:"height";i:191;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(1052, 194, '_wp_attached_file', '2021/01/icon.png'),
(1053, 194, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:500;s:4:"file";s:16:"2021/01/icon.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:16:"icon-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:16:"icon-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1081, 17, '_elementor_edit_mode', 'builder'),
(1082, 17, '_elementor_template_type', 'wp-page'),
(1083, 17, '_elementor_version', '3.28.0'),
(1084, 17, '_elementor_pro_version', '3.15.1'),
(1093, 17, '_wp_page_template', 'elementor_header_footer'),
(1094, 17, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none","image_spacing":"custom"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"ba077da","elType":"widget","settings":{"wp_gallery":[{"id":717,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none","image_spacing":"custom"},"elements":[],"widgetType":"image-gallery"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]'),
(1101, 201, '_wp_attached_file', '2021/01/404-hero-pic.jpg'),
(1102, 201, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:950;s:6:"height";i:855;s:4:"file";s:24:"2021/01/404-hero-pic.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:24:"404-hero-pic-300x270.jpg";s:5:"width";i:300;s:6:"height";i:270;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"404-hero-pic-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"404-hero-pic-768x691.jpg";s:5:"width";i:768;s:6:"height";i:691;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1103, 201, '_elementor_source_image_hash', '3298606d536645f42e9ef449bfc97946eef22671'),
(1410, 20, '_elementor_edit_mode', 'builder'),
(1411, 20, '_elementor_template_type', 'wp-page'),
(1412, 20, '_elementor_version', '3.15.3'),
(1413, 20, '_elementor_pro_version', '3.15.1'),
(1415, 27, '_elementor_edit_mode', 'builder'),
(1416, 27, '_elementor_template_type', 'wp-page'),
(1417, 27, '_elementor_version', '3.15.3'),
(1418, 27, '_elementor_pro_version', '3.15.1'),
(1812, 299, '_wp_attached_file', '2021/01/asset-01-1.jpg'),
(1813, 299, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:270;s:6:"height";i:364;s:4:"file";s:22:"2021/01/asset-01-1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:22:"asset-01-1-223x300.jpg";s:5:"width";i:223;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"asset-01-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(1838, 303, '_wp_attached_file', '2021/01/IMG-20201123-WA0010.jpg'),
(1839, 303, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0010.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0010-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0010-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0010-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1840, 304, '_wp_attached_file', '2021/01/asset-10-1.jpg'),
(1841, 304, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:271;s:6:"height";i:366;s:4:"file";s:22:"2021/01/asset-10-1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:22:"asset-10-1-222x300.jpg";s:5:"width";i:222;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"asset-10-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(1864, 308, '_wp_attached_file', '2021/01/asset-03-1.jpg'),
(1865, 308, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:271;s:6:"height";i:366;s:4:"file";s:22:"2021/01/asset-03-1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:22:"asset-03-1-222x300.jpg";s:5:"width";i:222;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"asset-03-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(1899, 314, '_wp_attached_file', '2021/01/asset-11-1.jpg'),
(1900, 314, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:271;s:6:"height";i:366;s:4:"file";s:22:"2021/01/asset-11-1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:22:"asset-11-1-222x300.jpg";s:5:"width";i:222;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"asset-11-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(1901, 315, '_wp_attached_file', '2021/01/IMG-20201123-WA0061.jpg'),
(1902, 315, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:468;s:6:"height";i:1008;s:4:"file";s:31:"2021/01/IMG-20201123-WA0061.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0061-139x300.jpg";s:5:"width";i:139;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0061-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2025, 20, '_wp_page_template', 'elementor_header_footer'),
(2026, 20, '_elementor_data', '[{"id":"3dc0ceac","elType":"section","settings":{"structure":"20","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding_tablet":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":880,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_hover_transition":{"unit":"px","size":0,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/DESKTOP-VIEW-1-1-scaled.webp","id":839,"size":"","alt":"","source":"library"}},"elements":[{"id":"287eaf25","elType":"column","settings":{"_column_size":50,"_inline_size":44.95700000000000073896444519050419330596923828125,"padding":{"unit":"px","top":"15","right":"15","bottom":"15","left":"15","isLinked":true},"_inline_size_tablet":100,"content_position_tablet":"center"},"elements":[{"id":"432c2094","elType":"widget","settings":{"image_size":"full","align":"right","image":{"id":1559,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","alt":"","source":"library","size":""},"width":{"unit":"%","size":100,"sizes":[]},"space":{"unit":"%","size":100,"sizes":[]},"_padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5539ef5b","elType":"column","settings":{"_column_size":50,"_inline_size":55.04299999999999926103555480949580669403076171875,"padding":{"unit":"px","top":"40","right":"40","bottom":"40","left":"40","isLinked":true},"padding_tablet":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"space_between_widgets":24,"_inline_size_tablet":100,"margin":{"unit":"px","top":"0","right":"80","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true}},"elements":[{"id":"0654e93","elType":"widget","settings":{"title":"Who are we?","header_size":"h4","title_color":"#55B434"},"elements":[],"widgetType":"heading"},{"id":"2404e5b","elType":"widget","settings":{"editor":"<p>OM Sri SLB is a boiler service company that does repair service maintenance service and installation service. Founder of OM SRI SLB is Mr. Muniandy Arunasalam. OM SRI SLB has 30 years of experience where we''re able to give full complete service.<\\/p>","text_color":"#000000","align":"justify","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"4ae7f94","elType":"widget","settings":{"title":"Objective","header_size":"h4","title_color":"#55B434"},"elements":[],"widgetType":"heading"},{"id":"3fb57f5","elType":"widget","settings":{"editor":"<p>The company\\u2019s core staff were primarily engineers and professional employees specialised in the provision of energy industry services. We have a clear understanding of the situation in the sector and keep in close touch with our clients. In addition, we are also proud of our professional know-how with respect to the product we serve. With our knowledge of the business environment and technological competency, our strength in sales &amp; marketing will help direct the organisation towards achieving its target.<\\/p>","text_color":"#000000","align":"justify","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":18,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"7ee72420","elType":"section","settings":{"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"ekit_all_conditions_list":[{"_id":"b16aed9"}],"ekit_section_parallax_multi_items":[],"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_color":"#F1F1F1","background_color_b":"#4CC0A9"},"elements":[{"id":"5a73a10d","elType":"column","settings":{"_column_size":100,"ekit_all_conditions_list":[{"_id":"38e6f9b"}],"_inline_size":null},"elements":[{"id":"4631387a","elType":"section","settings":{"structure":"20","ekit_all_conditions_list":[{"_id":"d4a934e"}],"ekit_section_parallax_multi_items":[],"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"73800522","elType":"column","settings":{"_column_size":50,"padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"0","isLinked":""},"_inline_size_tablet":"50","ekit_all_conditions_list":[{"_id":"a717d76"}],"_inline_size":null},"elements":[{"id":"efb8b49","elType":"widget","settings":{"ekit_icon_box_title_text":"VISSION 1","ekit_icon_box_description_text":"Installation Services of Insulation Pipe\\nOur vision for insulation pipe installation services is to be the industry leader in creating insulated systems that set new benchmarks for efficiency and sustainability. We envision a future where our expert installation team transforms projects into exemplars of thermal performance, ensuring reduced energy waste, increased cost savings, and a lasting positive impact on the environment.","ekit_icon_box_btn_text":"Learn more ","ekit_icon_box_text_align":"left","ekit_icon_box_bg_ovelry_color":"#bababa","ekit_icon_box_bg_ovelry_color_hv":"#23a455","ekit_icon_box_enable_btn":"","ekit_icon_box_icon_align":"right","ekit_icon_box_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"1","size":"15"},"ekit_icon_box_infobox_bg_padding":{"unit":"px","top":"35","right":"25","bottom":"35","left":"20","isLinked":""},"ekit_icon_box_icon_primary_color":"#FFFFFF","ekit_icon_title_bottom_space":{"unit":"px","size":"15"},"ekit_icon_title_typography_group_typography":"custom","ekit_icon_title_typography_group_font_size":{"unit":"px","size":"18"},"ekit_icon_box_infobox_bg_group_background":"classic","ekit_icon_box_infobox_bg_group_color":"#9C27B0","ekit_icon_box_show_image":{"id":1717,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-240.png"},"ekit_icon_box_header_icon":"icon icon-star","ekit_icon_box_header_image":{"id":1716,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/info-box-icon-21.png"},"ekit_icon_box_badge_title":"EXCLUSIVE","ekit_icon_box_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"","size":"15"},"ekit_icon_box_header_icons":{"value":"","library":""},"ekit_icon_box_icon_space":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":""},"__fa4_migrated":{"ekit_icon_box_header_icons":"1"},"ekit_icon_box_icon_position":"left","ekit_icon_box_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_color":"#2575FC","ekit_icon_box_icon_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":"1"},"ekit_icon_box_hover_primary_color":"#FFFFFF","ekit_icon_box_border_icon_group_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_icon_group_color":"#2575FC","ekit_icon_box_icon_line_height":{"unit":"px","size":"40","sizes":[]},"ekit_icon_box_icon_vertical_align":{"unit":"px","size":"0","sizes":[]},"ekit_icon_title_color":"#FFFFFF","ekit_icon_title_color_hover":"#FFFFFF","ekit_icon_box_iocnbox_border_group_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":""},"ekit_icon_box_iocnbox_border_group_color":"rgba(0, 0, 0, 0.3)","ekit_icon_description_color":"#FFFFFF","ekit_icon_description_color_hover":"#FFFFFF","ekit_icon_box_infobox_bg_hover_group_background":"classic","ekit_icon_box_infobox_bg_hover_group_color":"#641971","ekit_all_conditions_list":[{"_id":"5c26093"}]},"elements":[],"widgetType":"elementskit-icon-box"}],"isInner":"1"},{"id":"241b3ead","elType":"column","settings":{"_column_size":50,"padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"10","isLinked":""},"_inline_size_tablet":"50","ekit_all_conditions_list":[{"_id":"2839154"}],"_inline_size":null},"elements":[{"id":"7fcfd2a5","elType":"widget","settings":{"ekit_icon_box_title_text":"VISSION 2","ekit_icon_box_description_text":"Supplying Insulation Pipe Material\\nOur vision for supplying insulation pipe materials is to be the foremost provider of innovative and high-performance insulation solutions. We aspire to revolutionize industries by offering a comprehensive range of cutting-edge materials that redefine energy conservation, enabling businesses to create environmentally responsible infrastructure while maximizing operational efficiency.","ekit_icon_box_btn_text":"Learn more ","ekit_icon_box_text_align":"left","ekit_icon_box_bg_ovelry_color":"#bababa","ekit_icon_box_bg_ovelry_color_hv":"#23a455","ekit_icon_box_enable_btn":"","ekit_icon_box_icon_align":"right","ekit_icon_box_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"1","size":"15"},"ekit_icon_box_infobox_bg_padding":{"unit":"px","top":"35","right":"25","bottom":"35","left":"20","isLinked":""},"ekit_icon_box_icon_primary_color":"#FFFFFF","ekit_icon_title_bottom_space":{"unit":"px","size":"15"},"ekit_icon_title_typography_group_typography":"custom","ekit_icon_title_typography_group_font_size":{"unit":"px","size":"18"},"ekit_icon_box_infobox_bg_group_background":"classic","ekit_icon_box_infobox_bg_group_color":"#00BCD4","ekit_icon_box_show_image":{"id":1717,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-240.png"},"ekit_icon_box_header_icon":"icon icon-star","ekit_icon_box_header_image":{"id":1716,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/info-box-icon-21.png"},"ekit_icon_box_badge_title":"EXCLUSIVE","ekit_icon_box_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"","size":"15"},"ekit_icon_box_header_icons":{"value":"","library":""},"ekit_icon_box_icon_space":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":""},"__fa4_migrated":{"ekit_icon_box_header_icons":"1"},"ekit_icon_box_icon_position":"left","ekit_icon_box_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_color":"#2575FC","ekit_icon_box_icon_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":"1"},"ekit_icon_box_hover_primary_color":"#FFFFFF","ekit_icon_box_border_icon_group_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_icon_group_color":"#2575FC","ekit_icon_box_icon_line_height":{"unit":"px","size":"40","sizes":[]},"ekit_icon_box_icon_vertical_align":{"unit":"px","size":"0","sizes":[]},"ekit_icon_title_color":"#FFFFFF","ekit_icon_title_color_hover":"#FFFFFF","ekit_icon_box_iocnbox_border_group_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":""},"ekit_icon_box_iocnbox_border_group_color":"rgba(0, 0, 0, 0.3)","ekit_icon_description_color":"#FFFFFF","ekit_icon_description_color_hover":"#FFFFFF","ekit_icon_box_infobox_bg_hover_group_background":"classic","ekit_icon_box_infobox_bg_hover_group_color":"#007888","ekit_all_conditions_list":[{"_id":"2a40fda"}]},"elements":[],"widgetType":"elementskit-icon-box"}],"isInner":true}],"isInner":"1"},{"id":"4599b9ce","elType":"section","settings":{"structure":"20","ekit_all_conditions_list":[{"_id":"b10b6d9"}],"ekit_section_parallax_multi_items":[],"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"7f1ac75a","elType":"column","settings":{"_column_size":50,"padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"10","isLinked":""},"_inline_size_tablet":"50","ekit_all_conditions_list":[{"_id":"56511f3"}],"_inline_size":null},"elements":[{"id":"33a4aae7","elType":"widget","settings":{"ekit_icon_box_title_text":"MISSION 1","ekit_icon_box_description_text":"Installation Services of Insulation Pipe\\nOur mission for insulation pipe installation services is to execute flawless and efficient installations that embody the pinnacle of insulation technology. We commit to delivering exceptional craftsmanship, meticulous attention to detail, and a seamless integration of insulation systems. By doing so, we aim to optimize energy usage, improve thermal performance, and contribute significantly to the overall efficiency and success of our clients'' projects.","ekit_icon_box_btn_text":"Learn more ","ekit_icon_box_text_align":"left","ekit_icon_box_bg_ovelry_color":"#bababa","ekit_icon_box_bg_ovelry_color_hv":"#23a455","ekit_icon_box_enable_btn":"","ekit_icon_box_icon_align":"right","ekit_icon_box_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"1","size":"15"},"ekit_icon_box_infobox_bg_padding":{"unit":"px","top":"35","right":"25","bottom":"35","left":"20","isLinked":""},"ekit_icon_box_icon_primary_color":"#FFFFFF","ekit_icon_title_bottom_space":{"unit":"px","size":"15"},"ekit_icon_title_typography_group_typography":"custom","ekit_icon_title_typography_group_font_size":{"unit":"px","size":"18"},"ekit_icon_box_infobox_bg_group_background":"classic","ekit_icon_box_infobox_bg_group_color":"#E91E63","ekit_icon_box_show_image":{"id":1717,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-240.png"},"ekit_icon_box_header_icon":"icon icon-star","ekit_icon_box_header_image":{"id":1716,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/info-box-icon-21.png"},"ekit_icon_box_badge_title":"EXCLUSIVE","ekit_icon_box_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"","size":"15"},"ekit_icon_box_header_icons":{"value":"","library":""},"ekit_icon_box_icon_space":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":""},"__fa4_migrated":{"ekit_icon_box_header_icons":"1"},"ekit_icon_box_icon_position":"left","ekit_icon_box_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_color":"#2575FC","ekit_icon_box_icon_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":"1"},"ekit_icon_box_hover_primary_color":"#FFFFFF","ekit_icon_box_border_icon_group_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_icon_group_color":"#2575FC","ekit_icon_box_icon_line_height":{"unit":"px","size":"40","sizes":[]},"ekit_icon_box_icon_vertical_align":{"unit":"px","size":"0","sizes":[]},"ekit_icon_title_color":"#FFFFFF","ekit_icon_title_color_hover":"#FFFFFF","ekit_icon_box_iocnbox_border_group_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":""},"ekit_icon_box_iocnbox_border_group_color":"rgba(0, 0, 0, 0.3)","ekit_icon_description_color":"#FFFFFF","ekit_icon_description_color_hover":"#FFFFFF","ekit_icon_box_infobox_bg_hover_group_background":"classic","ekit_icon_box_infobox_bg_hover_group_color":"#AA1145","ekit_all_conditions_list":[{"_id":"2dd5a79"}]},"elements":[],"widgetType":"elementskit-icon-box"}],"isInner":"1"},{"id":"50a8fa07","elType":"column","settings":{"_column_size":50,"padding":{"unit":"px","top":"10","right":"0","bottom":"0","left":"10","isLinked":""},"_inline_size_tablet":"50","ekit_all_conditions_list":[{"_id":"70bae51"}],"_inline_size":null},"elements":[{"id":"3b107e96","elType":"widget","settings":{"ekit_icon_box_title_text":"MISSION 2","ekit_icon_box_description_text":"Supplying Insulation Pipe Material\\nOur mission for supplying insulation pipe materials is to consistently provide a diverse range of top-quality, high-performance insulation solutions. We are dedicated to partnering with industries to enhance energy efficiency, minimize heat loss, and reduce environmental impact. Through relentless innovation, rigorous testing, and customer collaboration, we strive to enable businesses to achieve their sustainability and operational goals.\\n","ekit_icon_box_btn_text":"Learn more ","ekit_icon_box_text_align":"left","ekit_icon_box_bg_ovelry_color":"#bababa","ekit_icon_box_bg_ovelry_color_hv":"#23a455","ekit_icon_box_enable_btn":"","ekit_icon_box_icon_align":"right","ekit_icon_box_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"1","size":"15"},"ekit_icon_box_infobox_bg_padding":{"unit":"px","top":"35","right":"25","bottom":"35","left":"20","isLinked":""},"ekit_icon_box_icon_primary_color":"#FFFFFF","ekit_icon_title_bottom_space":{"unit":"px","size":"15"},"ekit_icon_title_typography_group_typography":"custom","ekit_icon_title_typography_group_font_size":{"unit":"px","size":"18"},"ekit_icon_box_infobox_bg_group_background":"classic","ekit_icon_box_infobox_bg_group_color":"#4CAF50","ekit_icon_box_show_image":{"id":1717,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-240.png"},"ekit_icon_box_header_icon":"icon icon-star","ekit_icon_box_header_image":{"id":1716,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/info-box-icon-21.png"},"ekit_icon_box_badge_title":"EXCLUSIVE","ekit_icon_box_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"","size":"15"},"ekit_icon_box_header_icons":{"value":"","library":""},"ekit_icon_box_icon_space":{"unit":"px","top":"0","right":"20","bottom":"0","left":"0","isLinked":""},"__fa4_migrated":{"ekit_icon_box_header_icons":"1"},"ekit_icon_box_icon_position":"left","ekit_icon_box_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_color":"#2575FC","ekit_icon_box_icon_border_radius":{"unit":"px","top":"100","right":"100","bottom":"100","left":"100","isLinked":"1"},"ekit_icon_box_hover_primary_color":"#FFFFFF","ekit_icon_box_border_icon_group_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"ekit_icon_box_border_icon_group_color":"#2575FC","ekit_icon_box_icon_line_height":{"unit":"px","size":"40","sizes":[]},"ekit_icon_box_icon_vertical_align":{"unit":"px","size":"0","sizes":[]},"ekit_icon_title_color":"#FFFFFF","ekit_icon_title_color_hover":"#FFFFFF","ekit_icon_box_iocnbox_border_group_width":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":""},"ekit_icon_box_iocnbox_border_group_color":"rgba(0, 0, 0, 0.3)","ekit_icon_description_color":"#FFFFFF","ekit_icon_description_color_hover":"#FFFFFF","ekit_icon_box_infobox_bg_hover_group_background":"classic","ekit_icon_box_infobox_bg_hover_group_color":"#357A38","ekit_all_conditions_list":[{"_id":"d6f19ba"}]},"elements":[],"widgetType":"elementskit-icon-box"}],"isInner":true}],"isInner":"1"},{"id":"82ec298","elType":"widget","settings":[],"elements":[],"widgetType":"spacer"},{"id":"4a4ff5e4","elType":"widget","settings":{"ekit_heading_title":"KNWOW MORE ABOUT US","ekit_heading_sub_title":"Time has changed","ekit_heading_title_align":"center","ekit_heading_title_margin":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":""},"ekit_heading_title_typography_typography":"custom","ekit_heading_title_typography_font_family":"Lato","ekit_heading_title_typography_font_size":{"unit":"px","size":"28","sizes":[]},"ekit_heading_seperator_width":{"unit":"px","size":"40","sizes":[]},"_padding":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":""},"ekit_heading_section_extra_title_show":"yes","ekit_heading_extra_title":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\" style=\\"text-align: left;\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Welcome to our company, a leading provider of insulation pipe work solutions that ensure optimal energy efficiency and climate control in various industrial and commercial settings. With a passion for sustainability and innovation, we specialize in offering high-quality insulation products and professional installation services that cater to the unique needs of our clients.<\\/span><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\" style=\\"text-align: left;\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our Company''s Core Features:<\\/span><\\/strong><\\/p><p><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Quality Products:<\\/span><\\/strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\"> We source and supply top-notch insulation materials that are carefully selected to meet the highest industry standards. Our products are known for their durability, thermal performance, and ability to effectively reduce heat transfer and prevent condensation.<\\/span><\\/p><p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\"><strong>Expert Installation:<\\/strong> <\\/span><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our team of experienced technicians excels in the proper installation of insulation pipe work. We take into account the specific requirements of each project, ensuring a seamless and efficient installation process that guarantees long-lasting performance.<\\/span><\\/p><p><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Custom Solutions:<\\/span><\\/strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\"> We understand that every project is unique. Whether it''s for industrial facilities, commercial buildings, or specialized applications, we offer tailor-made insulation solutions that address the specific challenges and demands of each environment.<\\/span><\\/p><p><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Energy Efficiency:<\\/span><\\/strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\"> We are dedicated to promoting energy conservation and sustainability. Our insulation solutions play a vital role in reducing heat loss and minimizing energy consumption, thereby helping clients lower their operational costs and environmental footprint.<\\/span><\\/p><p><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Timely Execution: <\\/span><\\/strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">We recognize the significance of timely project completion. Our efficient project management ensures that we deliver on schedule without compromising on quality.<\\/span><\\/p><p><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Long-Term Benefits:<\\/span><\\/strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\"> Investing in our insulation pipe work solutions offers numerous long-term benefits, including extended equipment lifespan, reduced maintenance costs, improved comfort, and enhanced productivity.<\\/span><\\/p><p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\"><strong>Continuous Improvement<\\/strong>: <\\/span><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">As technology and materials evolve, so do our solutions. We are committed to continuous improvement, seeking out the latest advancements in insulation technology to provide our clients with cutting-edge solutions.<\\/span><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\" style=\\"text-align: left;\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">In summary, our company is dedicated to providing high-quality insulation pipe work solutions that prioritize energy efficiency, sustainability, and client satisfaction. From product selection to installation and beyond, we are your trusted partner in creating well-insulated, environmentally responsible, and cost-effective systems for various applications.<\\/span><\\/p>","ekit_all_conditions_list":[{"_id":"48a5b5e"}],"shadow_text_content":"bussiness","ekit_heading_seperator_image":{"id":1715,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/placeholder-282.png"}},"elements":[],"widgetType":"elementskit-heading"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(2034, 23, '_elementor_edit_mode', 'builder'),
(2035, 23, '_elementor_template_type', 'wp-page'),
(2036, 23, '_elementor_version', '3.15.3'),
(2037, 23, '_elementor_pro_version', '3.15.1'),
(2270, 367, '_wp_attached_file', '2021/01/IMG-20201123-WA0044.jpg'),
(2271, 367, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0044.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0044-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0044-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0044-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2280, 369, '_wp_attached_file', '2021/01/IMG-20201123-WA0011.jpg'),
(2281, 369, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:468;s:6:"height";i:1008;s:4:"file";s:31:"2021/01/IMG-20201123-WA0011.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0011-139x300.jpg";s:5:"width";i:139;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0011-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2369, 382, '_wp_attached_file', '2021/01/IMG-20201123-WA0090.jpg'),
(2370, 382, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0090.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0090-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0090-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0090-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2371, 383, '_wp_attached_file', '2021/01/IMG-20201123-WA0089.jpg'),
(2372, 383, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:468;s:6:"height";i:1008;s:4:"file";s:31:"2021/01/IMG-20201123-WA0089.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0089-139x300.jpg";s:5:"width";i:139;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0089-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2476, 399, '_wp_attached_file', '2021/01/IMG-20201123-WA0009.jpg'),
(2477, 399, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:764;s:6:"height";i:754;s:4:"file";s:31:"2021/01/IMG-20201123-WA0009.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0009-300x296.jpg";s:5:"width";i:300;s:6:"height";i:296;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0009-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2523, 406, '_wp_attached_file', '2021/01/Slider_img.png'),
(2524, 406, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:518;s:6:"height";i:561;s:4:"file";s:22:"2021/01/Slider_img.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:22:"Slider_img-277x300.png";s:5:"width";i:277;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"Slider_img-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2525, 406, '_elementor_source_image_hash', '8b7de77246d6f5cbd795472684fb4238f1b1740f'),
(2526, 407, '_wp_attached_file', '2021/01/agency-banner-bg-dots.png'),
(2527, 407, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1540;s:6:"height";i:821;s:4:"file";s:33:"2021/01/agency-banner-bg-dots.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:33:"agency-banner-bg-dots-300x160.png";s:5:"width";i:300;s:6:"height";i:160;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:34:"agency-banner-bg-dots-1024x546.png";s:5:"width";i:1024;s:6:"height";i:546;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"agency-banner-bg-dots-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:33:"agency-banner-bg-dots-768x409.png";s:5:"width";i:768;s:6:"height";i:409;s:9:"mime-type";s:9:"image/png";}s:9:"1536x1536";a:4:{s:4:"file";s:34:"agency-banner-bg-dots-1536x819.png";s:5:"width";i:1536;s:6:"height";i:819;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2528, 407, '_elementor_source_image_hash', '1b91de2aed01ec9c01232d4f129704139816da75'),
(2529, 408, '_wp_attached_file', '2021/01/dot-shapes.png'),
(2530, 408, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:88;s:6:"height";i:40;s:4:"file";s:22:"2021/01/dot-shapes.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2531, 408, '_elementor_source_image_hash', '5f5b5b55e14078ac769d6f69ebf987a9b3bf2265'),
(2532, 409, '_wp_attached_file', '2021/01/agency-shapes-dots-corss.png'),
(2533, 409, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:782;s:6:"height";i:520;s:4:"file";s:36:"2021/01/agency-shapes-dots-corss.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:36:"agency-shapes-dots-corss-300x199.png";s:5:"width";i:300;s:6:"height";i:199;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:36:"agency-shapes-dots-corss-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:36:"agency-shapes-dots-corss-768x511.png";s:5:"width";i:768;s:6:"height";i:511;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2534, 409, '_elementor_source_image_hash', 'c7a829c35e84193ac697cf0a40ca0a90d7960d56'),
(2535, 410, '_wp_attached_file', '2021/01/Featurs_img-2.png'),
(2536, 410, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:93;s:6:"height";i:79;s:4:"file";s:25:"2021/01/Featurs_img-2.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2537, 410, '_elementor_source_image_hash', '185eff4122c66312d1d0413446b7a24b55d119fd'),
(2538, 411, '_wp_attached_file', '2021/01/Featurs_img-1.png'),
(2539, 411, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:93;s:6:"height";i:79;s:4:"file";s:25:"2021/01/Featurs_img-1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2540, 411, '_elementor_source_image_hash', 'c1ff03fecc5f28466403f7dcc3cbead0efef838c'),
(2541, 412, '_wp_attached_file', '2021/01/Featurs_img-3.png'),
(2542, 412, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:93;s:6:"height";i:79;s:4:"file";s:25:"2021/01/Featurs_img-3.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2543, 412, '_elementor_source_image_hash', 'f4b0777a3e11d7c04e686b0ebde27ec563e7c5d1'),
(2544, 413, '_wp_attached_file', '2021/01/about_img.png'),
(2545, 413, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:549;s:6:"height";i:445;s:4:"file";s:21:"2021/01/about_img.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"about_img-300x243.png";s:5:"width";i:300;s:6:"height";i:243;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"about_img-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2546, 413, '_elementor_source_image_hash', '9adf5972cc7190a2374c1f1fd49f08c831a219c4'),
(2547, 414, '_wp_attached_file', '2021/01/team_6.jpg'),
(2548, 414, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:400;s:6:"height";i:400;s:4:"file";s:18:"2021/01/team_6.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:18:"team_6-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"team_6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2549, 414, '_elementor_source_image_hash', 'ff8c3e9f3f4dd295defe15028585963ad9e730df'),
(2550, 415, '_wp_attached_file', '2021/01/info-box-img-2.jpg'),
(2551, 415, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:103;s:6:"height";i:103;s:4:"file";s:26:"2021/01/info-box-img-2.jpg";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:{}}}'),
(2552, 415, '_elementor_source_image_hash', '3b3cc5dd1ff158a39c4bad93bca0d4e76b124ed1'),
(2553, 416, '_wp_attached_file', '2021/01/popular-post_img-2.jpeg'),
(2554, 416, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:70;s:6:"height";i:70;s:4:"file";s:31:"2021/01/popular-post_img-2.jpeg";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:{}}}'),
(2555, 416, '_elementor_source_image_hash', '1ddfbfa76111b41eb0d4c8274ad561afe40c6bbf'),
(2556, 417, '_wp_attached_file', '2021/01/tab-team1.jpg'),
(2557, 417, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:600;s:4:"file";s:21:"2021/01/tab-team1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"tab-team1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"tab-team1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2558, 417, '_elementor_source_image_hash', 'bc19dd0e2c30e18fbf7440daf40aa0bdf56b4b86'),
(2559, 418, '_wp_attached_file', '2021/01/team-1.png'),
(2560, 418, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:160;s:6:"height";i:160;s:4:"file";s:18:"2021/01/team-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"team-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2561, 418, '_elementor_source_image_hash', 'd345fb2b5685a89d436f797447a109fe2cd35a0f'),
(2562, 419, '_wp_attached_file', '2021/01/Team-2-1.png'),
(2563, 419, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:160;s:6:"height";i:160;s:4:"file";s:20:"2021/01/Team-2-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Team-2-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2564, 419, '_elementor_source_image_hash', 'b9cca208f1f4635c2008806687365478486641aa'),
(2565, 420, '_wp_attached_file', '2021/01/Team-3.png'),
(2566, 420, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:160;s:6:"height";i:160;s:4:"file";s:18:"2021/01/Team-3.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Team-3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2567, 420, '_elementor_source_image_hash', 'b34ac5991d916b43d3fb7cb394030845c32dc59e'),
(2568, 421, '_wp_attached_file', '2021/01/team-4.png'),
(2569, 421, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:160;s:6:"height";i:160;s:4:"file";s:18:"2021/01/team-4.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"team-4-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2570, 421, '_elementor_source_image_hash', 'b4d3f1972da8ee252e561fd8501ce8e80d1793d6'),
(2571, 422, '_wp_attached_file', '2021/01/placeholder-1.png'),
(2572, 422, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:25:"2021/01/placeholder-1.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:25:"placeholder-1-300x200.png";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:26:"placeholder-1-1024x683.png";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"placeholder-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:25:"placeholder-1-768x512.png";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2573, 422, '_elementor_source_image_hash', 'e2bba94a1f6eb244b9d656643daaf4f455c6412b'),
(2574, 423, '_wp_attached_file', '2021/01/Partner_img-1-1.png'),
(2575, 423, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:142;s:6:"height";i:80;s:4:"file";s:27:"2021/01/Partner_img-1-1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2576, 423, '_elementor_source_image_hash', '507a8f4431d4c7f04bba8901d524fd600a9d8f2d'),
(2577, 424, '_wp_attached_file', '2021/01/Partner_img-2-1.png'),
(2578, 424, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:87;s:6:"height";i:80;s:4:"file";s:27:"2021/01/Partner_img-2-1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2579, 424, '_elementor_source_image_hash', 'dc78436c11fa58933b46c15b0bb5de1bc92982f0'),
(2580, 425, '_wp_attached_file', '2021/01/Partner_img-3-1.png'),
(2581, 425, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:155;s:6:"height";i:80;s:4:"file";s:27:"2021/01/Partner_img-3-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"Partner_img-3-1-150x80.png";s:5:"width";i:150;s:6:"height";i:80;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2582, 425, '_elementor_source_image_hash', '01448b8ff44f4b21c016f302db07980f6f0c08cc'),
(2583, 426, '_wp_attached_file', '2021/01/Partner_img-4-1.png'),
(2584, 426, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:111;s:6:"height";i:80;s:4:"file";s:27:"2021/01/Partner_img-4-1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2585, 426, '_elementor_source_image_hash', 'a4fbb079bd086dca8c30ac6494db6069e05e2a5a'),
(2586, 427, '_wp_attached_file', '2021/01/Partner_img-5-1.png'),
(2587, 427, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:126;s:6:"height";i:80;s:4:"file";s:27:"2021/01/Partner_img-5-1.png";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2588, 427, '_elementor_source_image_hash', 'ee2538f4e94a6816c889a1f77acfe5624faba9c0'),
(2667, 27, '_wp_page_template', 'elementor_header_footer'),
(2668, 27, '_elementor_data', '[{"id":"5115de94","elType":"section","settings":{"gap":"no","custom_height":{"unit":"vh","size":50},"content_position":"middle","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"padding_tablet":{"unit":"px","top":"100","right":"25","bottom":"100","left":"25","isLinked":false},"padding_mobile":{"unit":"px","top":"50","right":"20","bottom":"50","left":"20","isLinked":false},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","layout":"full_width","height":"min-height","column_position":"stretch","overflow":"hidden","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24ccdd3e","elType":"column","settings":{"_column_size":50,"_inline_size":null,"padding":{"unit":"%","top":"0","right":"10","bottom":"0","left":"0","isLinked":false},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"35","left":"0","isLinked":false}},"elements":[{"id":"96b9ed7","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"e863700","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"270e2cb","elType":"widget","settings":{"form_name":"homepage","form_fields":[{"custom_id":"name","field_label":"Name","placeholder":"Name","dynamic":{"active":true},"_id":"d014abc","required":"true"},{"custom_id":"field_88e2006","field_type":"tel","field_label":"Phone","placeholder":"01234....","dynamic":{"active":true},"required":"true","_id":"88e2006"},{"custom_id":"email","field_type":"email","required":"true","field_label":"Email","placeholder":"Email","_id":"54e28e2"},{"custom_id":"message","field_type":"radio","placeholder":"Please Describe here","_id":"eacc10d","field_options":"Quotation\\nMaintenance\\nComplain\\nOthers","inline_list":"elementor-subgroup-inline"},{"_id":"25663fc","field_type":"textarea","field_label":"Your Enquiry","placeholder":"Describe anything Here","custom_id":"field_25663fc"}],"input_size":"md","button_size":"lg","step_next_label":"Next","step_previous_label":"Previous","button_text":"Send","submit_actions":["save-to-database","email","redirect"],"email_to":"omsrislb99@gmail.com","email_subject":"Enquiries from OM SRI SLB ","email_content":"[all-fields]","email_from":"omsrislb99@gmail.com","email_from_name":"Mr. Suresh","email_to_2":"daniel@cloudix.my","email_subject_2":"New message from &quot;Om Sri Slb&quot;","email_content_2":"[all-fields]","email_from_2":"email@binawebpro.com","email_from_name_2":"Om Sri Slb","email_reply_to_2":"daniel@cloudix.my","redirect_to":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+I+just+Send+Enquiries+to+your+website,+please+Check+it+for+me+","mailchimp_fields_map":[],"drip_fields_map":[],"activecampaign_fields_map":[],"getresponse_fields_map":[],"convertkit_fields_map":[],"mailerlite_fields_map":[],"success_message":"Your submission was successful.","error_message":"Your submission failed because of an error.","server_message":"Your submission failed because of a server error.","invalid_message":"Your submission failed because the form is invalid.","required_field_message":"This field is required."},"elements":[],"widgetType":"form"}],"isInner":false}],"isInner":false},{"id":"523bc796","elType":"column","settings":{"_column_size":50,"_inline_size":null,"background_background":"classic","background_color":"#55B434","padding":{"unit":"px","top":"75","right":"75","bottom":"75","left":"75","isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true},"padding_mobile":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true},"align":"flex-end"},"elements":[{"id":"1b4a8e4","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"85d1339","elType":"widget","settings":{"address":"OM SRI SLB","height":{"unit":"px","size":467,"sizes":[]}},"elements":[],"widgetType":"google_maps"}],"isInner":false}],"isInner":false}],"isInner":false}]'),
(2677, 441, '_wp_attached_file', '2021/01/Slider_img-1.jpeg'),
(2678, 441, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:852;s:4:"file";s:25:"2021/01/Slider_img-1.jpeg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:25:"Slider_img-1-300x160.jpeg";s:5:"width";i:300;s:6:"height";i:160;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"Slider_img-1-1024x545.jpeg";s:5:"width";i:1024;s:6:"height";i:545;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:25:"Slider_img-1-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:25:"Slider_img-1-768x409.jpeg";s:5:"width";i:768;s:6:"height";i:409;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:26:"Slider_img-1-1536x818.jpeg";s:5:"width";i:1536;s:6:"height";i:818;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:26:"Slider_img-1-1568x835.jpeg";s:5:"width";i:1568;s:6:"height";i:835;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2679, 441, '_elementor_source_image_hash', '2722c9999b18e9a5da5855d7f317db8aaa801ae5'),
(2680, 442, '_wp_attached_file', '2021/01/Testimonial_img-1-2.jpeg'),
(2681, 442, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:70;s:6:"height";i:70;s:4:"file";s:32:"2021/01/Testimonial_img-1-2.jpeg";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:{}}}'),
(2682, 442, '_elementor_source_image_hash', '362bb83881eac503c7d3edf8c52edfaa298cb86d'),
(2683, 443, '_wp_attached_file', '2021/01/About_img-1.jpeg'),
(2684, 443, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:540;s:6:"height";i:419;s:4:"file";s:24:"2021/01/About_img-1.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:24:"About_img-1-300x233.jpeg";s:5:"width";i:300;s:6:"height";i:233;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"About_img-1-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2685, 443, '_elementor_source_image_hash', '0b19c296df61c39a1f99e63719706a53559e5216'),
(2686, 444, '_wp_attached_file', '2021/01/Call-to-action_img.jpeg'),
(2687, 444, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:303;s:4:"file";s:31:"2021/01/Call-to-action_img.jpeg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:30:"Call-to-action_img-300x57.jpeg";s:5:"width";i:300;s:6:"height";i:57;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"Call-to-action_img-1024x194.jpeg";s:5:"width";i:1024;s:6:"height";i:194;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"Call-to-action_img-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"Call-to-action_img-768x145.jpeg";s:5:"width";i:768;s:6:"height";i:145;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:32:"Call-to-action_img-1536x291.jpeg";s:5:"width";i:1536;s:6:"height";i:291;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"Call-to-action_img-1568x297.jpeg";s:5:"width";i:1568;s:6:"height";i:297;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2688, 444, '_elementor_source_image_hash', 'a6996e5409861b480d2c5f255911b391b25b4679'),
(2689, 445, '_wp_attached_file', '2021/01/call-back_img.jpeg'),
(2690, 445, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:635;s:6:"height";i:573;s:4:"file";s:26:"2021/01/call-back_img.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:26:"call-back_img-300x271.jpeg";s:5:"width";i:300;s:6:"height";i:271;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"call-back_img-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2691, 445, '_elementor_source_image_hash', '3accab48197a815932a663b48af35b0a660da176'),
(2692, 446, '_wp_attached_file', '2021/01/funfact_img.jpeg'),
(2693, 446, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:373;s:4:"file";s:24:"2021/01/funfact_img.jpeg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:23:"funfact_img-300x70.jpeg";s:5:"width";i:300;s:6:"height";i:70;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"funfact_img-1024x239.jpeg";s:5:"width";i:1024;s:6:"height";i:239;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"funfact_img-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"funfact_img-768x179.jpeg";s:5:"width";i:768;s:6:"height";i:179;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"funfact_img-1536x358.jpeg";s:5:"width";i:1536;s:6:"height";i:358;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"funfact_img-1568x366.jpeg";s:5:"width";i:1568;s:6:"height";i:366;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2694, 446, '_elementor_source_image_hash', '7df45c80341e056bac2e5fb63d0cbd18e2dac8e5'),
(2695, 447, '_wp_attached_file', '2021/01/Testimonial_img-1.jpeg'),
(2696, 447, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:70;s:6:"height";i:70;s:4:"file";s:30:"2021/01/Testimonial_img-1.jpeg";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:{}}}'),
(2697, 447, '_elementor_source_image_hash', '62593634f60a49fbf460e4afbfa819fbc8ca7fcf'),
(2698, 448, '_wp_attached_file', '2021/01/Testimonial_img-2.jpeg'),
(2699, 448, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:70;s:6:"height";i:70;s:4:"file";s:30:"2021/01/Testimonial_img-2.jpeg";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:{}}}'),
(2700, 448, '_elementor_source_image_hash', 'aa25e0c8392fb7546b72afeef0c1ab2baff7a597'),
(2701, 449, '_wp_attached_file', '2021/01/Testimonial_img-3.jpeg'),
(2702, 449, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:70;s:6:"height";i:70;s:4:"file";s:30:"2021/01/Testimonial_img-3.jpeg";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:{}}}'),
(2703, 449, '_elementor_source_image_hash', 'e2169425708ad6a90313cfec00f62e834e85f70e'),
(2704, 450, '_wp_attached_file', '2021/01/IMG-20201123-WA0030.jpg'),
(2705, 450, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:468;s:6:"height";i:1008;s:4:"file";s:31:"2021/01/IMG-20201123-WA0030.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0030-139x300.jpg";s:5:"width";i:139;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0030-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2706, 451, '_wp_attached_file', '2021/01/IMG-20201123-WA0023.jpg'),
(2707, 451, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0023.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0023-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0023-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0023-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2708, 452, '_wp_attached_file', '2021/01/IMG-20201123-WA0028.jpg'),
(2709, 452, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0028.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0028-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0028-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0028-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2718, 23, '_wp_page_template', 'elementor_header_footer'),
(2719, 23, '_elementor_data', '[{"id":"7a820c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":37,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"-5","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"%","top":"5","right":"5","bottom":"5","left":"5","isLinked":false},"background_background":"classic","background_color":"#55B434","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"b4311cc","elType":"column","settings":{"_column_size":100,"_inline_size":null,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"10","isLinked":false}},"elements":[{"id":"84d44a7","elType":"widget","settings":{"title":"Our Projects","title_color":"#FFFFFF"},"elements":[],"widgetType":"heading"},{"id":"7b23ebe","elType":"widget","settings":{"editor":"<p><b>We involved in various insulation projects from various fields.<\\/b><\\/p>","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":13,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"85847ee","elType":"widget","settings":{"text":"Contact Us","link":{"url":"https:\\/\\/omsrislb.my\\/contact","is_external":"","nofollow":"","custom_attributes":""},"typography_typography":"custom","typography_font_family":"Roboto","typography_font_weight":"500","button_text_color":"#55B434","background_color":"#FFFFFF"},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"ac89895","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#FFFFFFE6","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4bf570b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"d1bd566","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"3bb92f4","elType":"column","settings":{"_column_size":50,"_inline_size":60.1340000000000003410605131648480892181396484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"0b58f9c","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0028.jpg","id":452}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"0ced9c7","elType":"column","settings":{"_column_size":50,"_inline_size":39.8659999999999996589394868351519107818603515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"21226a4","elType":"widget","settings":{"title":"CARLSBERG","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"e729859","elType":"widget","settings":{"editor":"<ul><li><span style=\\"font-family: -apple-system, BlinkMacSystemFont, ''Segoe UI'', Roboto, Oxygen-Sans, Ubuntu, Cantarell, ''Helvetica Neue'', sans-serif; text-align: center;\\">Calcium Silicate Pipe Cover Insulation<\\/span><\\/li><\\/ul>","text_color":"#000000","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"7e673a1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#0B0808E6","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet","hide_mobile":"hidden-phone","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"67708d4","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"fe2eb9c","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","reverse_order_mobile":"reverse-mobile","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"121a551","elType":"column","settings":{"_column_size":50,"_inline_size":39.87899999999999778310666442848742008209228515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"f562f35","elType":"widget","settings":{"title":"CARLSBERG","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"7e7b129","elType":"widget","settings":{"editor":"<ul><li><span style=\\"font-family: -apple-system, BlinkMacSystemFont, ''Segoe UI'', Roboto, Oxygen-Sans, Ubuntu, Cantarell, ''Helvetica Neue'', sans-serif; text-align: center;\\">Calcium Silicate Pipe Cover Insulation\\u00a0<\\/span><\\/li><li><span style=\\"font-family: -apple-system, BlinkMacSystemFont, ''Segoe UI'', Roboto, Oxygen-Sans, Ubuntu, Cantarell, ''Helvetica Neue'', sans-serif; text-align: center;\\">P.U Foam Insulation<\\/span><\\/li><\\/ul>","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"c1a2ce9","elType":"column","settings":{"_column_size":50,"_inline_size":60.12100000000000221689333557151257991790771484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"9b2fcee","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0032.jpg","id":456}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1fb86a5","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#FFFFFFE6","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"7ca22b3","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"2f59a89","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d667090","elType":"column","settings":{"_column_size":50,"_inline_size":60.1340000000000003410605131648480892181396484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"4782097","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0028-1.jpg","id":457}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"63821be","elType":"column","settings":{"_column_size":50,"_inline_size":39.8659999999999996589394868351519107818603515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6ae3649","elType":"widget","settings":{"title":"SMART GLOVE","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"7e3d94e","elType":"widget","settings":{"editor":"<ul><li style=\\"text-align: center;\\"><span style=\\"font-family: -apple-system, system-ui, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;\\">Boiler pipe insulation<\\/span><\\/li><\\/ul>","text_color":"#000000","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"9cf5f2b","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#0B0808E6","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"ab4e571","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"9971915","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","reverse_order_mobile":"reverse-mobile","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2727a82","elType":"column","settings":{"_column_size":50,"_inline_size":39.87899999999999778310666442848742008209228515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"97d4de5","elType":"widget","settings":{"title":"CARE GLOVE","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"44cd33e","elType":"widget","settings":{"editor":"<ul><li><span style=\\"font-family: -apple-system, system-ui, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;\\">Boiler pipe insulation and Ducting insulation<\\/span><\\/li><\\/ul>","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400","align":"left"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"ca608e3","elType":"column","settings":{"_column_size":50,"_inline_size":60.12100000000000221689333557151257991790771484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"01bd6ff","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0068.jpg","id":458}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d38980","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#FFFFFFE6","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"204b766","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"c7463d1","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"a868329","elType":"column","settings":{"_column_size":50,"_inline_size":60.1340000000000003410605131648480892181396484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"6053cc1","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0028-1.jpg","id":457}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"cd873c0","elType":"column","settings":{"_column_size":50,"_inline_size":39.8659999999999996589394868351519107818603515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"cedc20c","elType":"widget","settings":{"title":"EMPIRE DAMANSARA","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"8eb6ed1","elType":"widget","settings":{"editor":"<ul><li><span style=\\"font-family: -apple-system, BlinkMacSystemFont, ''Segoe UI'', Roboto, Oxygen-Sans, Ubuntu, Cantarell, ''Helvetica Neue'', sans-serif; text-align: center;\\">Polyurethane (P.U) Foam Insulation<\\/span><\\/li><\\/ul>","text_color":"#000000","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"663ee5b","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#0B0808E6","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"1f3f269","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ad144da","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","reverse_order_mobile":"reverse-mobile","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"90d4944","elType":"column","settings":{"_column_size":50,"_inline_size":39.87899999999999778310666442848742008209228515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"fcf0cb8","elType":"widget","settings":{"title":"YTY INDUSTRY","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"01b320d","elType":"widget","settings":{"editor":"<ul><li><span style=\\"font-family: -apple-system, system-ui, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;\\">YTY INDUSTRY.Repair cold pipe insulation (p.u)<\\/span><\\/li><\\/ul>","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"dcbf0a4","elType":"column","settings":{"_column_size":50,"_inline_size":60.12100000000000221689333557151257991790771484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"13c5f99","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0075.jpg","id":464}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"d0b7bab","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#FFFFFFE6","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"07642e9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"a669bce","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"96d0226","elType":"column","settings":{"_column_size":50,"_inline_size":60.1340000000000003410605131648480892181396484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"145fdc4","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0050.jpg","id":462}},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"635f67c","elType":"column","settings":{"_column_size":50,"_inline_size":39.8659999999999996589394868351519107818603515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"50a86a4","elType":"widget","settings":{"title":"GX Corporation sdn bhd.","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"b1f9330","elType":"widget","settings":{"editor":"<ul><li style=\\"text-align: center;\\"><span style=\\"font-family: -apple-system, system-ui, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;\\">Boiler pipe insulation.and tank insulation.<\\/span><\\/li><\\/ul>","text_color":"#000000","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"54009ea","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":35,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"background_background":"classic","background_color":"#0B0808E6","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c63aa22","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"91f42e0","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"reverse_order_mobile":"reverse-mobile","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"54ceae0","elType":"column","settings":{"_column_size":50,"_inline_size":39.87899999999999778310666442848742008209228515625,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false},"content_position":"center","padding_mobile":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"7daac77","elType":"widget","settings":{"title":"SHANGRI LA HOTEL","title_color":"#55B434","align":"center","align_tablet":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_size_tablet":{"unit":"px","size":29,"sizes":[]},"typography_font_size_mobile":{"unit":"px","size":20,"sizes":[]},"typography_font_weight":"600"},"elements":[],"widgetType":"heading"},{"id":"f260ffb","elType":"widget","settings":{"editor":"<ul><li>Boiler Insulation<\\/li><\\/ul>","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"e073c0d","elType":"column","settings":{"_column_size":50,"_inline_size":60.12100000000000221689333557151257991790771484375,"padding":{"unit":"px","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":false}},"elements":[{"id":"faee65d","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"067b6cc","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"ac9ad18","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"3","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","navigation":"dots"},"elements":[],"widgetType":"image-carousel"},{"id":"46f1340","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(2729, 456, '_wp_attached_file', '2021/01/IMG-20201123-WA0032.jpg'),
(2730, 456, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0032.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0032-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0032-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0032-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2731, 457, '_wp_attached_file', '2021/01/IMG-20201123-WA0028-1.jpg'),
(2732, 457, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:33:"2021/01/IMG-20201123-WA0028-1.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:33:"IMG-20201123-WA0028-1-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:33:"IMG-20201123-WA0028-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"IMG-20201123-WA0028-1-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2733, 458, '_wp_attached_file', '2021/01/IMG-20201123-WA0068.jpg'),
(2734, 458, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0068.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0068-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0068-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0068-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2735, 459, '_wp_attached_file', '2021/01/IMG-20201123-WA0053.jpg'),
(2736, 459, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1080;s:6:"height";i:796;s:4:"file";s:31:"2021/01/IMG-20201123-WA0053.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0053-300x221.jpg";s:5:"width";i:300;s:6:"height";i:221;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"IMG-20201123-WA0053-1024x755.jpg";s:5:"width";i:1024;s:6:"height";i:755;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0053-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0053-768x566.jpg";s:5:"width";i:768;s:6:"height";i:566;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2737, 460, '_wp_attached_file', '2021/01/IMG-20201123-WA0029.jpg'),
(2738, 460, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0029.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0029-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0029-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0029-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2739, 461, '_wp_attached_file', '2021/01/IMG-20201123-WA0063.jpg'),
(2740, 461, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1080;s:6:"height";i:536;s:4:"file";s:31:"2021/01/IMG-20201123-WA0063.jpg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0063-300x149.jpg";s:5:"width";i:300;s:6:"height";i:149;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:32:"IMG-20201123-WA0063-1024x508.jpg";s:5:"width";i:1024;s:6:"height";i:508;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0063-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0063-768x381.jpg";s:5:"width";i:768;s:6:"height";i:381;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2741, 462, '_wp_attached_file', '2021/01/IMG-20201123-WA0050.jpg'),
(2742, 462, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0050.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0050-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0050-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0050-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2743, 463, '_wp_attached_file', '2021/01/IMG-20201123-WA0039.jpg'),
(2744, 463, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0039.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0039-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0039-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0039-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2745, 464, '_wp_attached_file', '2021/01/IMG-20201123-WA0075.jpg'),
(2746, 464, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1008;s:6:"height";i:468;s:4:"file";s:31:"2021/01/IMG-20201123-WA0075.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:31:"IMG-20201123-WA0075-300x139.jpg";s:5:"width";i:300;s:6:"height";i:139;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG-20201123-WA0075-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG-20201123-WA0075-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(2786, 25, '_elementor_edit_mode', 'builder'),
(2787, 25, '_elementor_template_type', 'wp-page'),
(2796, 25, '_wp_page_template', 'elementor_header_footer'),
(2797, 25, '_elementor_data', '[{"id":"6195a87","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":15,"sizes":[]},"content_position":"middle","overflow":"hidden","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-09.jpg","id":61},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"__globals__":{"background_color":"globals\\/colors?id=primary"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0b6872b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ae1bf54","elType":"widget","settings":{"testimonial_content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n","testimonial_name":"Belala Philips","testimonial_job":"Service Woman","content_content_color":"#FFFFFF","name_text_color":"#55B434","job_text_color":"#55B434","content_typography_typography":"custom","content_typography_font_family":"Roboto","content_typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","testimonial_image":{"url":"","id":""}},"elements":[],"widgetType":"testimonial"}],"isInner":false}],"isInner":false},{"id":"2988ada","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":15,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"repeat","background_size":"cover","margin":{"unit":"%","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"7c61245","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"517a16f","elType":"widget","settings":{"testimonial_content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n","testimonial_name":"Maimai Chow","testimonial_job":"Service Woman","name_text_color":"#55B434","job_text_color":"#55B434","content_typography_typography":"custom","content_typography_font_family":"Roboto","content_typography_font_size_mobile":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","testimonial_image":{"url":"","id":""}},"elements":[],"widgetType":"testimonial"}],"isInner":false}],"isInner":false}]'),
(2802, 25, '_elementor_version', '3.15.3'),
(2803, 25, '_elementor_pro_version', '3.15.1'),
(3713, 1, 'ekit_post_views_count', '419'),
(3729, 601, '_wp_attached_file', '2021/03/Slb@2x.png'),
(3730, 601, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:384;s:6:"height";i:448;s:4:"file";s:18:"2021/03/Slb@2x.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:18:"Slb@2x-257x300.png";s:5:"width";i:257;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"Slb@2x-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:21:"elementor_custom_100x";a:4:{s:4:"file";s:70:"elementor/thumbs/Slb@2x-p3nkxs7kev88cohvm9ncdlp6i92o9nc1tvv4yp3d02.png";s:5:"width";i:100;s:6:"height";i:0;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(3731, 602, '_wp_attached_file', '2021/03/cropped-Slb@2x.png'),
(3732, 602, '_wp_attachment_context', 'site-icon'),
(3733, 602, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:512;s:6:"height";i:512;s:4:"file";s:26:"2021/03/cropped-Slb@2x.png";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:26:"cropped-Slb@2x-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:26:"cropped-Slb@2x-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-270";a:4:{s:4:"file";s:26:"cropped-Slb@2x-270x270.png";s:5:"width";i:270;s:6:"height";i:270;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-192";a:4:{s:4:"file";s:26:"cropped-Slb@2x-192x192.png";s:5:"width";i:192;s:6:"height";i:192;s:9:"mime-type";s:9:"image/png";}s:13:"site_icon-180";a:4:{s:4:"file";s:26:"cropped-Slb@2x-180x180.png";s:5:"width";i:180;s:6:"height";i:180;s:9:"mime-type";s:9:"image/png";}s:12:"site_icon-32";a:4:{s:4:"file";s:24:"cropped-Slb@2x-32x32.png";s:5:"width";i:32;s:6:"height";i:32;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(3736, 604, '_wp_attached_file', '2021/01/slbwhite@2x.png'),
(3737, 604, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:384;s:6:"height";i:448;s:4:"file";s:23:"2021/01/slbwhite@2x.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:23:"slbwhite@2x-257x300.png";s:5:"width";i:257;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:23:"slbwhite@2x-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:22:"elementor_custom_300x0";a:4:{s:4:"file";s:75:"elementor/thumbs/slbwhite@2x-p3nl1p7fbq4z10fywmysxk50x1al3zcuxvwn736uuk.png";s:5:"width";i:300;s:6:"height";i:0;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4319, 680, '_wp_attached_file', '2021/05/WhatsApp-Image-2021-04-27-at-10.26.51.jpeg'),
(4320, 680, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:750;s:6:"height";i:1000;s:4:"file";s:50:"2021/05/WhatsApp-Image-2021-04-27-at-10.26.51.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:50:"WhatsApp-Image-2021-04-27-at-10.26.51-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:50:"WhatsApp-Image-2021-04-27-at-10.26.51-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4321, 681, '_wp_attached_file', '2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-1.jpeg'),
(4322, 681, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1032;s:6:"height";i:774;s:4:"file";s:52:"2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-1.jpeg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.52-1-300x225.jpeg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:53:"WhatsApp-Image-2021-04-27-at-10.26.52-1-1024x768.jpeg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.52-1-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.52-1-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4323, 682, '_wp_attached_file', '2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-2.jpeg'),
(4324, 682, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:750;s:6:"height";i:1000;s:4:"file";s:52:"2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-2.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.52-2-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.52-2-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4325, 683, '_wp_attached_file', '2021/05/WhatsApp-Image-2021-04-27-at-10.26.52.jpeg'),
(4326, 683, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:774;s:6:"height";i:1032;s:4:"file";s:50:"2021/05/WhatsApp-Image-2021-04-27-at-10.26.52.jpeg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:50:"WhatsApp-Image-2021-04-27-at-10.26.52-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:51:"WhatsApp-Image-2021-04-27-at-10.26.52-768x1024.jpeg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:50:"WhatsApp-Image-2021-04-27-at-10.26.52-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"WhatsApp-Image-2021-04-27-at-10.26.52-768x1024.jpeg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4327, 684, '_wp_attached_file', '2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-1.jpeg'),
(4328, 684, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:750;s:6:"height";i:1000;s:4:"file";s:52:"2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-1.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.53-1-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.53-1-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4329, 685, '_wp_attached_file', '2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-2.jpeg'),
(4330, 685, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:750;s:6:"height";i:1000;s:4:"file";s:52:"2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-2.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.53-2-225x300.jpeg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:52:"WhatsApp-Image-2021-04-27-at-10.26.53-2-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4331, 686, '_wp_attached_file', '2021/05/WhatsApp-Image-2021-04-27-at-10.26.53.jpeg'),
(4332, 686, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1032;s:6:"height";i:774;s:4:"file";s:50:"2021/05/WhatsApp-Image-2021-04-27-at-10.26.53.jpeg";s:5:"sizes";a:4:{s:6:"medium";a:4:{s:4:"file";s:50:"WhatsApp-Image-2021-04-27-at-10.26.53-300x225.jpeg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:51:"WhatsApp-Image-2021-04-27-at-10.26.53-1024x768.jpeg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:50:"WhatsApp-Image-2021-04-27-at-10.26.53-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"WhatsApp-Image-2021-04-27-at-10.26.53-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4499, 706, '_wp_attached_file', '2021/12/boiler4.jpg'),
(4500, 706, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:493;s:6:"height";i:656;s:4:"file";s:19:"2021/12/boiler4.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:19:"boiler4-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"boiler4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4501, 707, '_wp_attached_file', '2021/12/boiler5.jpg'),
(4502, 707, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:494;s:6:"height";i:657;s:4:"file";s:19:"2021/12/boiler5.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:19:"boiler5-226x300.jpg";s:5:"width";i:226;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"boiler5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4503, 708, '_wp_attached_file', '2021/12/boiler1.jpg'),
(4504, 708, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:493;s:6:"height";i:659;s:4:"file";s:19:"2021/12/boiler1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:19:"boiler1-224x300.jpg";s:5:"width";i:224;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"boiler1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4505, 709, '_wp_attached_file', '2021/12/boiler2.jpg'),
(4506, 709, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:492;s:6:"height";i:661;s:4:"file";s:19:"2021/12/boiler2.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:19:"boiler2-223x300.jpg";s:5:"width";i:223;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"boiler2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4507, 710, '_wp_attached_file', '2021/12/boiler3.jpg'),
(4508, 710, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:880;s:6:"height";i:658;s:4:"file";s:19:"2021/12/boiler3.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:19:"boiler3-300x224.jpg";s:5:"width";i:300;s:6:"height";i:224;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"boiler3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"boiler3-768x574.jpg";s:5:"width";i:768;s:6:"height";i:574;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4509, 711, '_wp_attached_file', '2021/12/Pu1.jpg'),
(4510, 711, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:518;s:6:"height";i:689;s:4:"file";s:15:"2021/12/Pu1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:15:"Pu1-226x300.jpg";s:5:"width";i:226;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:15:"Pu1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4511, 712, '_wp_attached_file', '2021/12/complete1.jpg'),
(4512, 712, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:493;s:6:"height";i:658;s:4:"file";s:21:"2021/12/complete1.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"complete1-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"complete1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4513, 713, '_wp_attached_file', '2021/12/complete2.jpg'),
(4514, 713, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:494;s:6:"height";i:658;s:4:"file";s:21:"2021/12/complete2.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"complete2-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"complete2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4515, 714, '_wp_attached_file', '2021/12/complete3.jpg'),
(4516, 714, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:493;s:6:"height";i:657;s:4:"file";s:21:"2021/12/complete3.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"complete3-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"complete3-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4517, 715, '_wp_attached_file', '2021/12/complete4.jpg'),
(4518, 715, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:494;s:6:"height";i:656;s:4:"file";s:21:"2021/12/complete4.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"complete4-226x300.jpg";s:5:"width";i:226;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"complete4-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4519, 716, '_wp_attached_file', '2021/12/complete5.jpg'),
(4520, 716, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:495;s:6:"height";i:657;s:4:"file";s:21:"2021/12/complete5.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"complete5-226x300.jpg";s:5:"width";i:226;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"complete5-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4521, 717, '_wp_attached_file', '2021/12/complete6.jpg'),
(4522, 717, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:494;s:6:"height";i:655;s:4:"file";s:21:"2021/12/complete6.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:21:"complete6-226x300.jpg";s:5:"width";i:226;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"complete6-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4566, 27, '__elementor_forms_snapshot', '[{"id":"2aece8b9","name":"New Form","fields":[{"id":"name","type":"text","label":"Name"},{"id":"email","type":"email","label":"Email"},{"id":"message","type":"textarea","label":"Message"}]},{"id":"270e2cb","name":"homepage","fields":[{"id":"name","type":"text","label":"Name"},{"id":"field_88e2006","type":"tel","label":"Phone"},{"id":"email","type":"email","label":"Email"},{"id":"message","type":"radio","label":"","options":["Quotation","Maintenance","Complain","Others"]},{"id":"field_25663fc","type":"textarea","label":"Your Enquiry"}]}]'),
(4682, 738, '_edit_lock', '1692590328:3'),
(4683, 738, '_elementor_edit_mode', 'builder'),
(4684, 738, '_elementor_template_type', 'wp-page'),
(4685, 738, '_elementor_version', '3.15.2'),
(4686, 738, '_elementor_pro_version', '3.15.1'),
(4687, 738, '_wp_page_template', 'elementor_header_footer'),
(4688, 738, '_elementor_data', '[{"id":"f026419","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"a6dd0a0","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"b569d4c","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"0a1d5f5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"ff82cdf","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ENTERPRISE","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000},"elements":[],"widgetType":"slides"}],"isInner":false}],"isInner":false},{"id":"cdba150","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92000000000000003996802888650563545525074005126953125,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":9,"sizes":[]},"background_color_b":"#0097B2","background_color_b_stop":{"unit":"%","size":68,"sizes":[]},"content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"a591f79","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"99c95a6","elType":"widget","settings":{"editor":"<p>WHO WE ARE<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"800","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"},{"id":"6c0d320","elType":"widget","settings":{"title":"OM SRI SLB","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":70,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1"},"elements":[],"widgetType":"heading"},{"id":"82fa745","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#FFFFFF","typography_line_height":{"unit":"em","size":2.899999999999999911182158029987476766109466552734375,"sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5e337fa","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5d9fb8a","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3843585","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"1621665","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"950e700","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#36861B","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1"},"elements":[],"widgetType":"heading"},{"id":"a88b789","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"a89adb2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"ab07a98","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"260cc74","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"0f961bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"652d5d3","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"52c7443","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"71f2012","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60194489946&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"330a9df","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"8d3d2ae","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"1eea8b3","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"be475d5","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"ff8a56b","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"da44c13","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"f2d0d7a","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"a8be9b0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"d4d1151","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"7a4a380","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"12da517","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"7d937a2","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4000000000000003552713678800500929355621337890625,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"452ca45","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54000000000000003552713678800500929355621337890625,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"810a823","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"7cbd0d2","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"64040d4","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"16137fe","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#36861B","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes"},"elements":[],"widgetType":"heading"},{"id":"a147caf","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"1f70697","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"0bdd509","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"777870c","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"ae5723a","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"a574d2f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a280875","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2919865","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"b06d8f8","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"4e1c88d","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"a88dc4a","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"86c2b8c","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"ffb55da","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"34e37a9","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f7b9fc","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"756c4db","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"a2ba64b","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"729288e","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"3f02a8f","elType":"widget","settings":{"title":"MOST CLIENT COLLABORATE WITH US","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"57bf231","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"dd2b887","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/contact\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"cf667e4","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"82c6558","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"2625181","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b178c31","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"3","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"0e05231","elType":"section","settings":{"layout":"full_width","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4564252","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"9dcd312","elType":"section","settings":{"gap":"no","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2fae9ac","elType":"column","settings":{"_column_size":50,"_inline_size":25,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"content_position":"center","align":"flex-start"},"elements":[{"id":"5938836","elType":"widget","settings":{"title":"Project List","align":"left","title_color":"#36861B","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","link":{"url":"https:\\/\\/omsrislb.my\\/project\\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"23e5ae7","elType":"column","settings":{"_column_size":50,"_inline_size":75,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"596fce8","elType":"widget","settings":{"text":"Divider","color":"#36861B","weight":{"unit":"px","size":5,"sizes":[]},"align":"left","gap":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"f7d86bb","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","content_position":"middle","padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0d9a7b7","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5d858c6","elType":"widget","settings":{"editor":"<p><span style=\\"font-weight: 400;\\">Our company has experienced in providing insulation services from Boiler Insulation to Superlon Insulation in various projects from various fields including Maggi, YTY, Austin Powder, Empire Damansara, Care Glove and Shangri La Hotel.<\\/span><\\/p>","text_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":14},"typography_font_weight":"300","align_tablet":"center","align_mobile":"left","align":"left","typography_font_family":"Poppins","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"a7142a3","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"fe17164","elType":"column","settings":{"_column_size":50,"_inline_size":66,"content_position":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"align":"center"},"elements":[{"id":"2e18a07","elType":"widget","settings":{"carousel":[{"id":680,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.51.jpeg"},{"id":682,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.52-2.jpeg"},{"id":683,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.52.jpeg"},{"id":684,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.53-1.jpeg"},{"id":685,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.53-2.jpeg"},{"id":686,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.53.jpeg"}],"thumbnail_size":"full","thumbnail_custom_dimension":{"width":"500","height":"308"},"slides_to_show":"1","arrows_color":"#FFFFFF","dots_color":"#55B434","_ob_kontrolz_nav_styles":"yes","_ob_kontrolz_nav_color_bg":"#00000000","_ob_kontrolz_nav_color_bg_hover":"#FFCC0000","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","_ob_kontrolz_pagination_styles":"yes","_ob_kontrolz_pagination_color":"#55B434","_ob_kontrolz_pagination_color_active":"#55B434","_ob_kontrolz_pagination_bord_rad":{"unit":"px","top":"11","right":"11","bottom":"11","left":"11","isLinked":true}},"elements":[],"widgetType":"image-carousel"}],"isInner":true},{"id":"233dde9","elType":"column","settings":{"_column_size":50,"_inline_size":34,"content_position":"top","align":"center","margin":{"unit":"px","top":"0","right":"20","bottom":"30","left":"20","isLinked":false},"padding":{"unit":"px","top":"80","right":"30","bottom":"0","left":"30","isLinked":false},"background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-06.jpg","id":133},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover"},"elements":[{"id":"6180d7f","elType":"widget","settings":{"title":"Project List","header_size":"h4","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase"},"elements":[],"widgetType":"heading"},{"id":"60ab5aa","elType":"widget","settings":{"icon_list":[{"text":"MAGGI ","icon":"","_id":"a3a66d7","selected_icon":{"value":"","library":""}},{"text":"YTY","icon":"","selected_icon":{"value":"","library":""},"_id":"310e92a"},{"text":"AUSTIN POWDER ","icon":"","selected_icon":{"value":"","library":""},"_id":"ef8a511"},{"text":"EMPIRE DAMANSARA ","icon":"","selected_icon":{"value":"","library":""},"_id":"fafaddd"},{"text":"CARE GLOVE ","icon":"","selected_icon":{"value":"","library":""},"_id":"553dc09"},{"text":"SHANGRI LA HOTEL ","icon":"","selected_icon":{"value":"","library":""},"_id":"52ea04f"}],"space_between":{"unit":"px","size":10},"icon_size":{"unit":"px","size":15},"text_color":"#FFFFFF","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":20},"icon_typography_font_weight":"600","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"center","icon_color":"#55B434","icon_self_align":"left","divider":"yes","icon_typography_font_family":"Poppins","text_color_hover":"#A1A1A1"},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"555e176","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"cd5b11b","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"9bc3a87","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9c65696","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"6acb176","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"3f15956","elType":"widget","settings":{"title":"OM Sri SLB is a\\nboiler service company that does\\nrepair service maintenance service\\nand installation service. ","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3000000000000000444089209850062616169452667236328125,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"949a6b0","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 20 years of experience since 2001 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"2444aa2","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"27c21ab","elType":"widget","settings":{"editor":"<p>The company''s core staff were primarily engineers and professional employees specialised in the provision of energy industry services. We have a clear understanding of the situation in the sector and keep in close touch with our clients. In addition, we are also proud of our professional know-how with respect to the product we serve. With our knowledge of the business environment and technological competency, our strength in sales &amp; marketing will help direct the organisation towards achieving its target.<\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"3a6ef42","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"2dbffeb","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-07.jpg","id":144}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"54cd54a","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#1E590A","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"70c5da0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"4ad7f92","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"40","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"bcf2d09","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"07d4c2f","elType":"widget","settings":{"ending_number":20,"title":"Years of Experience","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"fa2ebee","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"b3e14c5","elType":"widget","settings":{"ending_number":25,"title":"Winning Global Awards","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"3da7949","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"db75a18","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"6aaab0a","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"a38e16a","elType":"widget","settings":{"ending_number":74,"title":"Happy Local Clients","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"47b1931","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"fab47bc","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6f7b469","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"b8df296","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"2d84aa4","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"b5e3647","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"988a2bb","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#55B434","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"2b8b047","elType":"section","settings":{"content_width":{"unit":"px","size":1172,"sizes":[]},"height":"min-height","custom_height":{"unit":"px","size":0,"sizes":[]},"content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-180","right":0,"bottom":"-80","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"f96bec1","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"8b56828","elType":"widget","settings":{"slides":[{"heading":"We Can Insulate & Seal Entire Home.","description":"","button_text":"Get a Quote","background_color":"","_id":"9f99759","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-14.jpg","id":180},"link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"}],"slides_height":{"unit":"px","size":250,"sizes":[]},"content_max_width":{"unit":"%","size":66,"sizes":[]},"slides_horizontal_position":"right","heading_typography_typography":"custom","heading_typography_font_family":"Poppins","heading_typography_font_weight":"600","heading_typography_text_transform":"uppercase","button_size":"md","button_typography_typography":"custom","button_typography_font_family":"Poppins","button_typography_font_weight":"500","button_typography_text_transform":"uppercase","button_border_radius":{"unit":"px","size":0,"sizes":[]},"button_hover_text_color":"#000000","button_hover_border_color":"#000000"},"elements":[],"widgetType":"slides"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(4691, 739, '_wp_attached_file', '2023/08/NEW-LOGO.webp'),
(4692, 739, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:500;s:6:"height";i:150;s:4:"file";s:21:"2023/08/NEW-LOGO.webp";s:8:"filesize";i:13124;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:20:"NEW-LOGO-300x90.webp";s:5:"width";i:300;s:6:"height";i:90;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:8632;}s:9:"thumbnail";a:5:{s:4:"file";s:21:"NEW-LOGO-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4362;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4693, 740, '_wp_attached_file', '2023/08/NEW-LOGO-1.webp'),
(4694, 740, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:563;s:6:"height";i:225;s:4:"file";s:23:"2023/08/NEW-LOGO-1.webp";s:8:"filesize";i:16704;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:23:"NEW-LOGO-1-300x120.webp";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:9416;}s:9:"thumbnail";a:5:{s:4:"file";s:23:"NEW-LOGO-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:5478;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4695, 741, '_wp_attached_file', '2023/08/cropped-NEW-LOGO-1.webp'),
(4696, 741, '_wp_attachment_context', 'custom-logo'),
(4697, 741, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:563;s:6:"height";i:188;s:4:"file";s:31:"2023/08/cropped-NEW-LOGO-1.webp";s:8:"filesize";i:18212;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:31:"cropped-NEW-LOGO-1-300x100.webp";s:5:"width";i:300;s:6:"height";i:100;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:8858;}s:9:"thumbnail";a:5:{s:4:"file";s:31:"cropped-NEW-LOGO-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6122;}s:21:"elementor_custom_100x";a:4:{s:4:"file";s:83:"elementor/thumbs/cropped-NEW-LOGO-1-qb4cn7vgwq6612exz3z0ln8fd3v6zy9dw27dog41u2.webp";s:5:"width";i:100;s:6:"height";i:0;s:9:"mime-type";s:10:"image/webp";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4776, 738, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(5271, 806, '_wp_attached_file', '2023/08/DESKTOP-VIEW-scaled.webp'),
(5272, 806, '_wp_attachment_metadata', 'a:7:{s:5:"width";i:2560;s:6:"height";i:1066;s:4:"file";s:32:"2023/08/DESKTOP-VIEW-scaled.webp";s:8:"filesize";i:95780;s:5:"sizes";a:7:{s:6:"medium";a:5:{s:4:"file";s:25:"DESKTOP-VIEW-300x125.webp";s:5:"width";i:300;s:6:"height";i:125;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7122;}s:5:"large";a:5:{s:4:"file";s:26:"DESKTOP-VIEW-1024x426.webp";s:5:"width";i:1024;s:6:"height";i:426;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:35132;}s:9:"thumbnail";a:5:{s:4:"file";s:25:"DESKTOP-VIEW-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4190;}s:12:"medium_large";a:5:{s:4:"file";s:25:"DESKTOP-VIEW-768x320.webp";s:5:"width";i:768;s:6:"height";i:320;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:24892;}s:9:"1536x1536";a:5:{s:4:"file";s:26:"DESKTOP-VIEW-1536x639.webp";s:5:"width";i:1536;s:6:"height";i:639;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:56076;}s:9:"2048x2048";a:5:{s:4:"file";s:26:"DESKTOP-VIEW-2048x853.webp";s:5:"width";i:2048;s:6:"height";i:853;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:74550;}s:14:"post-thumbnail";a:5:{s:4:"file";s:26:"DESKTOP-VIEW-1568x653.webp";s:5:"width";i:1568;s:6:"height";i:653;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:57778;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:17:"DESKTOP-VIEW.webp";}'),
(5364, 818, '_wp_attached_file', '2023/08/1-3-scaled.webp'),
(5365, 818, '_wp_attachment_metadata', 'a:7:{s:5:"width";i:2560;s:6:"height";i:1066;s:4:"file";s:23:"2023/08/1-3-scaled.webp";s:8:"filesize";i:34934;s:5:"sizes";a:7:{s:6:"medium";a:5:{s:4:"file";s:16:"1-3-300x125.webp";s:5:"width";i:300;s:6:"height";i:125;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:1936;}s:5:"large";a:5:{s:4:"file";s:17:"1-3-1024x426.webp";s:5:"width";i:1024;s:6:"height";i:426;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:10540;}s:9:"thumbnail";a:5:{s:4:"file";s:16:"1-3-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:1186;}s:12:"medium_large";a:5:{s:4:"file";s:16:"1-3-768x320.webp";s:5:"width";i:768;s:6:"height";i:320;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7556;}s:9:"1536x1536";a:5:{s:4:"file";s:17:"1-3-1536x639.webp";s:5:"width";i:1536;s:6:"height";i:639;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18228;}s:9:"2048x2048";a:5:{s:4:"file";s:17:"1-3-2048x853.webp";s:5:"width";i:2048;s:6:"height";i:853;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:26500;}s:14:"post-thumbnail";a:5:{s:4:"file";s:17:"1-3-1568x653.webp";s:5:"width";i:1568;s:6:"height";i:653;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18660;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:8:"1-3.webp";}'),
(5366, 819, '_wp_attached_file', '2023/08/2-1-scaled.webp'),
(5367, 819, '_wp_attachment_metadata', 'a:7:{s:5:"width";i:2560;s:6:"height";i:1066;s:4:"file";s:23:"2023/08/2-1-scaled.webp";s:8:"filesize";i:119906;s:5:"sizes";a:7:{s:6:"medium";a:5:{s:4:"file";s:16:"2-1-300x125.webp";s:5:"width";i:300;s:6:"height";i:125;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6308;}s:5:"large";a:5:{s:4:"file";s:17:"2-1-1024x426.webp";s:5:"width";i:1024;s:6:"height";i:426;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:38998;}s:9:"thumbnail";a:5:{s:4:"file";s:16:"2-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4208;}s:12:"medium_large";a:5:{s:4:"file";s:16:"2-1-768x320.webp";s:5:"width";i:768;s:6:"height";i:320;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:25530;}s:9:"1536x1536";a:5:{s:4:"file";s:17:"2-1-1536x639.webp";s:5:"width";i:1536;s:6:"height";i:639;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:63920;}s:9:"2048x2048";a:5:{s:4:"file";s:17:"2-1-2048x853.webp";s:5:"width";i:2048;s:6:"height";i:853;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:91392;}s:14:"post-thumbnail";a:5:{s:4:"file";s:17:"2-1-1568x653.webp";s:5:"width";i:1568;s:6:"height";i:653;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:65798;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:8:"2-1.webp";}'),
(5368, 820, '_wp_attached_file', '2023/08/3-scaled.webp'),
(5369, 820, '_wp_attachment_metadata', 'a:7:{s:5:"width";i:2560;s:6:"height";i:1066;s:4:"file";s:21:"2023/08/3-scaled.webp";s:8:"filesize";i:79330;s:5:"sizes";a:7:{s:6:"medium";a:5:{s:4:"file";s:14:"3-300x125.webp";s:5:"width";i:300;s:6:"height";i:125;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:3800;}s:5:"large";a:5:{s:4:"file";s:15:"3-1024x426.webp";s:5:"width";i:1024;s:6:"height";i:426;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:22810;}s:9:"thumbnail";a:5:{s:4:"file";s:14:"3-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:2890;}s:12:"medium_large";a:5:{s:4:"file";s:14:"3-768x320.webp";s:5:"width";i:768;s:6:"height";i:320;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15086;}s:9:"1536x1536";a:5:{s:4:"file";s:15:"3-1536x639.webp";s:5:"width";i:1536;s:6:"height";i:639;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:40170;}s:9:"2048x2048";a:5:{s:4:"file";s:15:"3-2048x853.webp";s:5:"width";i:2048;s:6:"height";i:853;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:59104;}s:14:"post-thumbnail";a:5:{s:4:"file";s:15:"3-1568x653.webp";s:5:"width";i:1568;s:6:"height";i:653;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:41190;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:6:"3.webp";}'),
(5536, 839, '_wp_attached_file', '2023/08/DESKTOP-VIEW-1-1-scaled.webp'),
(5537, 839, '_wp_attachment_metadata', 'a:7:{s:5:"width";i:2560;s:6:"height";i:1066;s:4:"file";s:36:"2023/08/DESKTOP-VIEW-1-1-scaled.webp";s:8:"filesize";i:89638;s:5:"sizes";a:7:{s:6:"medium";a:5:{s:4:"file";s:29:"DESKTOP-VIEW-1-1-300x125.webp";s:5:"width";i:300;s:6:"height";i:125;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6370;}s:5:"large";a:5:{s:4:"file";s:30:"DESKTOP-VIEW-1-1-1024x426.webp";s:5:"width";i:1024;s:6:"height";i:426;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:30622;}s:9:"thumbnail";a:5:{s:4:"file";s:29:"DESKTOP-VIEW-1-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4036;}s:12:"medium_large";a:5:{s:4:"file";s:29:"DESKTOP-VIEW-1-1-768x320.webp";s:5:"width";i:768;s:6:"height";i:320;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:21242;}s:9:"1536x1536";a:5:{s:4:"file";s:30:"DESKTOP-VIEW-1-1-1536x639.webp";s:5:"width";i:1536;s:6:"height";i:639;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:49808;}s:9:"2048x2048";a:5:{s:4:"file";s:30:"DESKTOP-VIEW-1-1-2048x853.webp";s:5:"width";i:2048;s:6:"height";i:853;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:68352;}s:14:"post-thumbnail";a:5:{s:4:"file";s:30:"DESKTOP-VIEW-1-1-1568x653.webp";s:5:"width";i:1568;s:6:"height";i:653;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:51094;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:21:"DESKTOP-VIEW-1-1.webp";}'),
(5951, 886, '_wp_attached_file', '2023/08/14.webp'),
(5952, 886, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:688;s:6:"height";i:688;s:4:"file";s:15:"2023/08/14.webp";s:8:"filesize";i:33484;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"14-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:14402;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"14-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6310;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5953, 887, '_wp_attached_file', '2023/08/13.webp'),
(5954, 887, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:688;s:6:"height";i:688;s:4:"file";s:15:"2023/08/13.webp";s:8:"filesize";i:36892;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"13-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15296;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"13-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6318;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5955, 888, '_wp_attached_file', '2023/08/12.webp'),
(5956, 888, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:688;s:6:"height";i:688;s:4:"file";s:15:"2023/08/12.webp";s:8:"filesize";i:37674;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"12-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15464;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"12-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6414;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5957, 889, '_wp_attached_file', '2023/08/11.webp'),
(5958, 889, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:688;s:6:"height";i:688;s:4:"file";s:15:"2023/08/11.webp";s:8:"filesize";i:38820;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"11-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:16350;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"11-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6734;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5959, 890, '_wp_attached_file', '2023/08/10.webp'),
(5960, 890, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:688;s:6:"height";i:688;s:4:"file";s:15:"2023/08/10.webp";s:8:"filesize";i:37636;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"10-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:14860;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"10-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6168;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6496, 952, '_wp_attached_file', '2023/08/WEBSITE-OMSRI-SLB-600-×-1200px-1.webp'),
(6497, 952, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:46:"2023/08/WEBSITE-OMSRI-SLB-600-×-1200px-1.webp";s:8:"filesize";i:39172;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:46:"WEBSITE-OMSRI-SLB-600-×-1200px-1-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:12474;}s:9:"thumbnail";a:5:{s:4:"file";s:46:"WEBSITE-OMSRI-SLB-600-×-1200px-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6276;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6602, 965, '_wp_attached_file', '2023/08/17.webp'),
(6603, 965, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:15:"2023/08/17.webp";s:8:"filesize";i:47674;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"17-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:12844;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"17-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6786;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6604, 966, '_wp_attached_file', '2023/08/18.webp'),
(6605, 966, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:15:"2023/08/18.webp";s:8:"filesize";i:35180;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"18-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:10830;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"18-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:5456;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6837, 993, '_wp_attached_file', '2023/08/14-2.webp'),
(6838, 993, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:750;s:6:"height";i:750;s:4:"file";s:17:"2023/08/14-2.webp";s:8:"filesize";i:39976;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"14-2-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:14824;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"14-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6350;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6839, 994, '_wp_attached_file', '2023/08/13-2.webp'),
(6840, 994, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:750;s:6:"height";i:750;s:4:"file";s:17:"2023/08/13-2.webp";s:8:"filesize";i:43802;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"13-2-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15492;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"13-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6302;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6841, 995, '_wp_attached_file', '2023/08/12-2.webp'),
(6842, 995, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:750;s:6:"height";i:750;s:4:"file";s:17:"2023/08/12-2.webp";s:8:"filesize";i:45996;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"12-2-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15772;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"12-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6404;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6843, 996, '_wp_attached_file', '2023/08/11-2.webp'),
(6844, 996, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:750;s:6:"height";i:750;s:4:"file";s:17:"2023/08/11-2.webp";s:8:"filesize";i:46654;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"11-2-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:16534;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"11-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6730;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(6845, 997, '_wp_attached_file', '2023/08/10-2.webp'),
(6846, 997, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:750;s:6:"height";i:750;s:4:"file";s:17:"2023/08/10-2.webp";s:8:"filesize";i:45644;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"10-2-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15118;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"10-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6046;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(7078, 1023, '_wp_attached_file', '2023/08/WEBSITE-OMSRI-SLB-1-1.webp'),
(7079, 1023, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:750;s:6:"height";i:750;s:4:"file";s:34:"2023/08/WEBSITE-OMSRI-SLB-1-1.webp";s:8:"filesize";i:31120;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:34:"WEBSITE-OMSRI-SLB-1-1-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:11550;}s:9:"thumbnail";a:5:{s:4:"file";s:34:"WEBSITE-OMSRI-SLB-1-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:4978;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(8156, 1148, '_wp_attached_file', '2023/08/WEBSITE-OMSRI-SLB-1.jpg'),
(8157, 1148, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:875;s:6:"height";i:875;s:4:"file";s:31:"2023/08/WEBSITE-OMSRI-SLB-1.jpg";s:8:"filesize";i:8447;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:31:"WEBSITE-OMSRI-SLB-1-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:2370;}s:9:"thumbnail";a:5:{s:4:"file";s:31:"WEBSITE-OMSRI-SLB-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:999;}s:12:"medium_large";a:5:{s:4:"file";s:31:"WEBSITE-OMSRI-SLB-1-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:9833;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(8158, 1149, '_wp_attached_file', '2023/08/NEW-LOGO-1.jpg'),
(8159, 1149, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:563;s:6:"height";i:225;s:4:"file";s:22:"2023/08/NEW-LOGO-1.jpg";s:8:"filesize";i:4313;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:22:"NEW-LOGO-1-300x120.jpg";s:5:"width";i:300;s:6:"height";i:120;s:9:"mime-type";s:10:"image/jpeg";s:8:"filesize";i:2233;}s:9:"thumbnail";a:5:{s:4:"file";s:22:"NEW-LOGO-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:2737;}s:22:"elementor_custom_300x0";a:4:{s:4:"file";s:74:"elementor/thumbs/NEW-LOGO-1-qb6a3o7jsinh0o038mefnly162yzxld28rviu0kgc0.jpg";s:5:"width";i:300;s:6:"height";i:0;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(8941, 1235, '_wp_attached_file', '2023/08/18-1.webp'),
(8942, 1235, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:17:"2023/08/18-1.webp";s:8:"filesize";i:22474;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"18-1-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6940;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"18-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:5254;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(8943, 1236, '_wp_attached_file', '2023/08/17-1.webp'),
(8944, 1236, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:17:"2023/08/17-1.webp";s:8:"filesize";i:34034;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"17-1-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:8710;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"17-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6436;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(8945, 1237, '_wp_attached_file', '2023/08/16.webp'),
(8946, 1237, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:15:"2023/08/16.webp";s:8:"filesize";i:27920;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:15:"16-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:8502;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"16-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:5956;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(8997, 1244, '_wp_attached_file', '2023/08/16-1.webp'),
(8998, 1244, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:17:"2023/08/16-1.webp";s:8:"filesize";i:32202;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"16-1-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:10492;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"16-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7264;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(8999, 1245, '_wp_attached_file', '2023/08/18-2.webp'),
(9000, 1245, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:17:"2023/08/18-2.webp";s:8:"filesize";i:26976;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"18-2-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:9228;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"18-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6766;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9001, 1246, '_wp_attached_file', '2023/08/17-2.webp'),
(9002, 1246, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:875;s:4:"file";s:17:"2023/08/17-2.webp";s:8:"filesize";i:38110;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"17-2-180x300.webp";s:5:"width";i:180;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:10938;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"17-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7928;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9068, 1254, '_wp_attached_file', '2023/08/15.webp'),
(9069, 1254, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:875;s:6:"height";i:875;s:4:"file";s:15:"2023/08/15.webp";s:8:"filesize";i:52620;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"15-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18054;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"15-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7384;}s:12:"medium_large";a:5:{s:4:"file";s:15:"15-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:59758;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9070, 1255, '_wp_attached_file', '2023/08/16-2.webp'),
(9071, 1255, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:875;s:6:"height";i:875;s:4:"file";s:17:"2023/08/16-2.webp";s:8:"filesize";i:54398;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:17:"16-2-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:19672;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"16-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:8080;}s:12:"medium_large";a:5:{s:4:"file";s:17:"16-2-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:62224;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9072, 1256, '_wp_attached_file', '2023/08/17-3.webp'),
(9073, 1256, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:875;s:6:"height";i:875;s:4:"file";s:17:"2023/08/17-3.webp";s:8:"filesize";i:51914;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:17:"17-3-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18768;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"17-3-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7706;}s:12:"medium_large";a:5:{s:4:"file";s:17:"17-3-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:59944;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9074, 1257, '_wp_attached_file', '2023/08/18-3.webp'),
(9075, 1257, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:875;s:6:"height";i:875;s:4:"file";s:17:"2023/08/18-3.webp";s:8:"filesize";i:54134;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:17:"18-3-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18928;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"18-3-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7628;}s:12:"medium_large";a:5:{s:4:"file";s:17:"18-3-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:61812;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9076, 1258, '_wp_attached_file', '2023/08/19.webp'),
(9077, 1258, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:875;s:6:"height";i:875;s:4:"file";s:15:"2023/08/19.webp";s:8:"filesize";i:44304;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"19-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:17906;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"19-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7720;}s:12:"medium_large";a:5:{s:4:"file";s:15:"19-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:53484;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9078, 1259, '_wp_attached_file', '2023/08/20.webp'),
(9079, 1259, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:875;s:6:"height";i:875;s:4:"file";s:15:"2023/08/20.webp";s:8:"filesize";i:43794;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"20-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:17972;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"20-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7278;}s:12:"medium_large";a:5:{s:4:"file";s:15:"20-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:59882;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9237, 1277, '_wp_attached_file', '2023/08/16-3.webp'),
(9238, 1277, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:613;s:4:"file";s:17:"2023/08/16-3.webp";s:8:"filesize";i:27826;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"16-3-257x300.webp";s:5:"width";i:257;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:14922;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"16-3-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6684;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9239, 1278, '_wp_attached_file', '2023/08/18-4.webp'),
(9240, 1278, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:613;s:4:"file";s:17:"2023/08/18-4.webp";s:8:"filesize";i:25248;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"18-4-257x300.webp";s:5:"width";i:257;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:13908;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"18-4-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6558;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(9241, 1279, '_wp_attached_file', '2023/08/17-4.webp'),
(9242, 1279, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:525;s:6:"height";i:613;s:4:"file";s:17:"2023/08/17-4.webp";s:8:"filesize";i:34764;s:5:"sizes";a:2:{s:6:"medium";a:5:{s:4:"file";s:17:"17-4-257x300.webp";s:5:"width";i:257;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:16550;}s:9:"thumbnail";a:5:{s:4:"file";s:17:"17-4-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7534;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10846, 1454, '_wp_attached_file', '2023/08/CLIENTS-LOGO-1.png'),
(10847, 1454, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:825;s:6:"height";i:550;s:4:"file";s:26:"2023/08/CLIENTS-LOGO-1.png";s:8:"filesize";i:52160;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:26:"CLIENTS-LOGO-1-300x200.png";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:42105;}s:9:"thumbnail";a:5:{s:4:"file";s:26:"CLIENTS-LOGO-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:15740;}s:12:"medium_large";a:5:{s:4:"file";s:26:"CLIENTS-LOGO-1-768x512.png";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:178798;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10858, 1456, '_wp_attached_file', '2023/08/CLIENTS-LOGO-1.webp'),
(10859, 1456, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:825;s:6:"height";i:550;s:4:"file";s:27:"2023/08/CLIENTS-LOGO-1.webp";s:8:"filesize";i:37454;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:27:"CLIENTS-LOGO-1-300x200.webp";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:12332;}s:9:"thumbnail";a:5:{s:4:"file";s:27:"CLIENTS-LOGO-1-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:5750;}s:12:"medium_large";a:5:{s:4:"file";s:27:"CLIENTS-LOGO-1-768x512.webp";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:40570;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10971, 1469, '_wp_attached_file', '2023/08/36.webp'),
(10972, 1469, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:15:"2023/08/36.webp";s:8:"filesize";i:83622;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"36-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:20166;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"36-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7544;}s:12:"medium_large";a:5:{s:4:"file";s:15:"36-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:75282;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10973, 1470, '_wp_attached_file', '2023/08/35.webp'),
(10974, 1470, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:15:"2023/08/35.webp";s:8:"filesize";i:65492;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"35-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18322;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"35-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6992;}s:12:"medium_large";a:5:{s:4:"file";s:15:"35-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:64456;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10975, 1471, '_wp_attached_file', '2023/08/34.webp'),
(10976, 1471, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:15:"2023/08/34.webp";s:8:"filesize";i:58064;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"34-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:17700;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"34-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7100;}s:12:"medium_large";a:5:{s:4:"file";s:15:"34-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:60058;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10977, 1472, '_wp_attached_file', '2023/08/33.webp'),
(10978, 1472, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:15:"2023/08/33.webp";s:8:"filesize";i:72424;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"33-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:19074;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"33-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:7226;}s:12:"medium_large";a:5:{s:4:"file";s:15:"33-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:69086;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10979, 1473, '_wp_attached_file', '2023/08/32.webp'),
(10980, 1473, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:15:"2023/08/32.webp";s:8:"filesize";i:63772;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"32-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18038;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"32-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6894;}s:12:"medium_large";a:5:{s:4:"file";s:15:"32-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:60526;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10981, 1474, '_wp_attached_file', '2023/08/31.webp'),
(10982, 1474, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:15:"2023/08/31.webp";s:8:"filesize";i:57758;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"31-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:16652;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"31-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6508;}s:12:"medium_large";a:5:{s:4:"file";s:15:"31-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:57738;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(10983, 1475, '_wp_attached_file', '2023/08/30.webp'),
(10984, 1475, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:15:"2023/08/30.webp";s:8:"filesize";i:80136;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:15:"30-300x300.webp";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:18262;}s:9:"thumbnail";a:5:{s:4:"file";s:15:"30-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:6772;}s:12:"medium_large";a:5:{s:4:"file";s:15:"30-768x768.webp";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:68392;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(11074, 738, '_elementor_controls_usage', 'a:17:{s:6:"column";a:3:{s:5:"count";i:29;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:29;s:16:"content_position";i:15;s:5:"align";i:15;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:6:"margin";i:8;s:7:"padding";i:9;}s:15:"section_effects";a:3:{s:34:"motion_fx_translateY_affectedRange";i:3;s:34:"motion_fx_translateX_affectedRange";i:3;s:29:"motion_fx_motion_fx_scrolling";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:19;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:7:{s:6:"layout";i:9;s:16:"content_position";i:10;s:15:"stretch_section";i:9;s:6:"height";i:3;s:13:"custom_height";i:4;s:3:"gap";i:4;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:7;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:3:{s:6:"margin";i:11;s:7:"padding";i:13;s:7:"z_index";i:1;}s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}s:5:"style";a:3:{s:18:"section_background";a:14:{s:21:"background_background";i:8;s:16:"background_image";i:5;s:19:"background_position";i:6;s:21:"background_attachment";i:4;s:17:"background_repeat";i:6;s:15:"background_size";i:6;s:16:"background_color";i:3;s:21:"background_color_stop";i:1;s:18:"background_color_b";i:1;s:23:"background_color_b_stop";i:1;s:40:"background_motion_fx_motion_fx_scrolling";i:2;s:38:"background_motion_fx_mouseTrack_effect";i:2;s:37:"background_motion_fx_mouseTrack_speed";i:2;s:19:"background_bg_width";i:2;}s:26:"section_background_overlay";a:3:{s:29:"background_overlay_background";i:2;s:26:"background_overlay_opacity";i:2;s:24:"background_overlay_color";i:1;}s:21:"section_shape_divider";a:6:{s:17:"shape_divider_top";i:2;s:23:"shape_divider_top_width";i:2;s:24:"shape_divider_top_height";i:2;s:26:"shape_divider_bottom_width";i:1;s:27:"shape_divider_bottom_height";i:1;s:23:"shape_divider_top_color";i:1;}}}}s:6:"slides";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:2:{s:6:"slides";i:2;s:13:"slides_height";i:2;}s:22:"section_slider_options";a:1:{s:14:"autoplay_speed";i:1;}}s:5:"style";a:3:{s:20:"section_style_slides";a:2:{s:17:"content_max_width";i:1;s:26:"slides_horizontal_position";i:1;}s:19:"section_style_title";a:4:{s:29:"heading_typography_typography";i:1;s:30:"heading_typography_font_family";i:1;s:30:"heading_typography_font_weight";i:1;s:33:"heading_typography_text_transform";i:1;}s:20:"section_style_button";a:8:{s:11:"button_size";i:1;s:28:"button_typography_typography";i:1;s:29:"button_typography_font_family";i:1;s:29:"button_typography_font_weight";i:1;s:32:"button_typography_text_transform";i:1;s:20:"button_border_radius";i:1;s:23:"button_hover_text_color";i:1;s:25:"button_hover_border_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:9;}}s:5:"style";a:1:{s:13:"section_style";a:8:{s:5:"align";i:9;s:21:"typography_typography";i:9;s:22:"typography_font_family";i:8;s:22:"typography_font_weight";i:9;s:10:"text_color";i:5;s:22:"typography_line_height";i:1;s:20:"typography_font_size";i:2;s:25:"typography_text_transform";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:8:"_padding";i:2;}}}}s:7:"heading";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:8;s:11:"header_size";i:4;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:5:"align";i:8;s:11:"title_color";i:8;s:21:"typography_typography";i:8;s:22:"typography_font_family";i:8;s:20:"typography_font_size";i:8;s:22:"typography_font_weight";i:8;s:25:"typography_text_transform";i:6;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:3:{s:7:"_margin";i:7;s:14:"_element_width";i:7;s:8:"_padding";i:1;}s:15:"section_effects";a:1:{s:29:"motion_fx_motion_fx_scrolling";i:1;}}}}s:23:"elementskit-dual-button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:3:{s:18:"dualbutton_content";a:1:{s:24:"ekit_double_button_align";i:1;}s:23:"ekit_button_one_content";a:3:{s:20:"ekit_button_one_text";i:1;s:20:"ekit_button_one_link";i:1;s:29:"ekit_button_one_icons__switch";i:1;}s:23:"ekit_button_two_content";a:2:{s:20:"ekit_button_two_text";i:1;s:20:"ekit_button_two_link";i:1;}}s:5:"style";a:2:{s:36:"ekit_double_button_one_style_section";a:10:{s:28:"ekit_double_button_one_color";i:1;s:44:"ekit_double_button_one_typography_typography";i:1;s:45:"ekit_double_button_one_typography_font_family";i:1;s:43:"ekit_double_button_one_typography_font_size";i:1;s:45:"ekit_double_button_one_typography_font_weight";i:1;s:44:"ekit_double_button_one_background_background";i:1;s:39:"ekit_double_button_one_background_color";i:1;s:50:"ekit_double_button_one_hover_background_background";i:1;s:45:"ekit_double_button_one_hover_background_color";i:1;s:47:"ekit_double_button_one_hover_background_color_b";i:1;}s:36:"ekit_double_button_two_style_section";a:9:{s:44:"ekit_double_button_two_typography_typography";i:1;s:45:"ekit_double_button_two_typography_font_family";i:1;s:43:"ekit_double_button_two_typography_font_size";i:1;s:45:"ekit_double_button_two_typography_font_weight";i:1;s:44:"ekit_double_button_two_background_background";i:1;s:39:"ekit_double_button_two_background_color";i:1;s:50:"ekit_double_button_two_hover_background_background";i:1;s:45:"ekit_double_button_two_hover_background_color";i:1;s:47:"ekit_double_button_two_hover_background_color_b";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"menu-anchor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_anchor";a:1:{s:6:"anchor";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:20;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:20;s:7:"link_to";i:12;s:4:"link";i:12;s:10:"image_size";i:18;}}s:8:"advanced";a:2:{s:15:"section_effects";a:15:{s:29:"motion_fx_motion_fx_scrolling";i:17;s:17:"_animation_mobile";i:3;s:34:"motion_fx_translateY_affectedRange";i:17;s:26:"motion_fx_mouseTrack_speed";i:3;s:27:"motion_fx_translateY_effect";i:17;s:27:"motion_fx_translateX_effect";i:15;s:34:"motion_fx_translateX_affectedRange";i:16;s:31:"motion_fx_rotateZ_affectedRange";i:7;s:30:"motion_fx_translateX_direction";i:7;s:30:"motion_fx_translateY_direction";i:4;s:24:"motion_fx_rotateZ_effect";i:2;s:24:"motion_fx_tilt_direction";i:3;s:27:"motion_fx_rotateZ_direction";i:3;s:26:"motion_fx_translateY_speed";i:1;s:23:"motion_fx_rotateZ_speed";i:1;}s:14:"_section_style";a:1:{s:21:"_element_width_mobile";i:3;}}}}s:6:"spacer";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_spacer";a:2:{s:5:"space";i:1;s:16:"_ob_spacerat_use";i:1;}}}}s:9:"container";a:3:{s:5:"count";i:10;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:24:"section_layout_container";a:8:{s:5:"width";i:6;s:13:"content_width";i:6;s:14:"flex_direction";i:2;s:16:"flex_align_items";i:2;s:8:"flex_gap";i:2;s:11:"boxed_width";i:2;s:10:"min_height";i:2;s:20:"flex_justify_content";i:2;}s:33:"section_layout_additional_options";a:1:{s:8:"overflow";i:2;}}s:5:"style";a:1:{s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:2;s:29:"background_overlay_color_stop";i:2;s:26:"background_overlay_color_b";i:2;s:31:"background_overlay_color_b_stop";i:2;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}}}s:4:"icon";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:13:"selected_icon";i:1;}}s:5:"style";a:1:{s:18:"section_style_icon";a:2:{s:5:"align";i:1;s:13:"primary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_element_width";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:5:{s:4:"text";i:1;s:13:"selected_icon";i:1;s:10:"icon_align";i:1;s:11:"icon_indent";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:9:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:16:"background_color";i:1;s:13:"border_radius";i:1;s:29:"button_background_hover_color";i:1;s:12:"align_mobile";i:1;}}}}s:14:"image-carousel";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:2:{s:22:"section_image_carousel";a:6:{s:8:"carousel";i:2;s:14:"thumbnail_size";i:2;s:14:"slides_to_show";i:2;s:7:"link_to";i:1;s:4:"link";i:1;s:26:"thumbnail_custom_dimension";i:1;}s:26:"section_additional_options";a:1:{s:14:"autoplay_speed";i:1;}}s:5:"style";a:1:{s:24:"section_style_navigation";a:9:{s:12:"arrows_color";i:1;s:10:"dots_color";i:1;s:23:"_ob_kontrolz_nav_styles";i:1;s:25:"_ob_kontrolz_nav_color_bg";i:1;s:31:"_ob_kontrolz_nav_color_bg_hover";i:1;s:30:"_ob_kontrolz_pagination_styles";i:1;s:29:"_ob_kontrolz_pagination_color";i:1;s:36:"_ob_kontrolz_pagination_color_active";i:1;s:32:"_ob_kontrolz_pagination_bord_rad";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:1;s:6:"weight";i:1;s:3:"gap";i:1;}}s:7:"content";a:1:{s:15:"section_divider";a:1:{s:5:"align";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:3:{s:13:"space_between";i:2;s:10:"icon_align";i:2;s:7:"divider";i:1;}s:18:"section_icon_style";a:4:{s:9:"icon_size";i:2;s:11:"text_indent";i:2;s:10:"icon_color";i:2;s:15:"icon_self_align";i:2;}s:18:"section_text_style";a:6:{s:10:"text_color";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;s:27:"icon_typography_font_weight";i:2;s:27:"icon_typography_font_family";i:1;s:16:"text_color_hover";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"counter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_counter";a:2:{s:13:"ending_number";i:4;s:5:"title";i:4;}}s:5:"style";a:2:{s:14:"section_number";a:4:{s:12:"number_color";i:4;s:28:"typography_number_typography";i:4;s:29:"typography_number_font_family";i:4;s:29:"typography_number_font_weight";i:4;}s:13:"section_title";a:5:{s:11:"title_color";i:4;s:27:"typography_title_typography";i:4;s:28:"typography_title_font_family";i:4;s:26:"typography_title_font_size";i:4;s:28:"typography_title_font_weight";i:4;}}}}s:20:"testimonial-carousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:5:{s:6:"slides";i:1;s:4:"skin";i:1;s:15:"slides_per_view";i:1;s:16:"slides_to_scroll";i:1;s:6:"layout";i:1;}s:26:"section_additional_options";a:1:{s:11:"show_arrows";i:1;}}s:5:"style";a:2:{s:21:"section_content_style";a:13:{s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:30:"content_typography_font_family";i:1;s:28:"content_typography_font_size";i:1;s:30:"content_typography_font_weight";i:1;s:10:"name_color";i:1;s:26:"name_typography_typography";i:1;s:27:"name_typography_font_family";i:1;s:27:"name_typography_font_weight";i:1;s:11:"title_color";i:1;s:27:"title_typography_typography";i:1;s:28:"title_typography_font_family";i:1;s:28:"title_typography_font_weight";i:1;}s:18:"section_skin_style";a:1:{s:16:"background_color";i:1;}}}}}');
INSERT INTO `wpiq_postmeta` VALUES
(11154, 1501, '_elementor_edit_mode', 'builder'),
(11155, 1501, '_elementor_template_type', 'header'),
(11156, 1501, '_elementor_version', '3.15.3'),
(11157, 1501, '_elementor_pro_version', '3.15.1'),
(11162, 1501, '_wp_page_template', 'default'),
(11163, 1501, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(11164, 1501, '_elementor_data', '[{"id":"192af1e3","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"1c66c204","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center"},"elements":[{"id":"5204f76f","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"9dde1b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center"},"elements":[{"id":"78f06935","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-facebook","_id":"5646027","social_icon":{"value":"fab fa-facebook-f","library":"fa-brands"},"__fa4_migrated":{"social_icon":true}},{"social":"fa fa-twitter","_id":"72bc942","social_icon":{"value":"fab fa-twitter","library":"fa-brands"},"__fa4_migrated":{"social_icon":true}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fab fa-google-plus-g","library":"fa-brands"},"__fa4_migrated":{"social_icon":true}},{"social":"fa fa-instagram","_id":"7c2bcc0","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"__fa4_migrated":{"social_icon":true}},{"social":"fa fa-youtube","_id":"4b27cd1","social_icon":{"value":"fab fa-youtube","library":"fa-brands"},"__fa4_migrated":{"social_icon":true}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"21782ef6","elType":"section","settings":{"content_width":{"unit":"px","size":781,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","padding":{"unit":"px","top":"0","right":"0","bottom":"50","left":"0","isLinked":false},"margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5f630ed0","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":33,"content_position":"center"},"elements":[{"id":"5542eb69","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone2","library":"ekiticons"},"title_text":" +(60) 10 238 4742","description_text":"","position":"left","primary_color":"#36861B","icon_space":{"unit":"px","size":5,"sizes":[]},"icon_size":{"unit":"px","size":25,"sizes":[]},"text_align":"left","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_color":"#36861B","title_typography_typography":"custom","title_typography_font_family":"Roboto","title_typography_font_size":{"unit":"px","size":17,"sizes":[]},"title_typography_font_weight":"400","description_color":"#000000","description_typography_typography":"custom","description_typography_font_family":"Roboto","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"400","icon_size_mobile":{"unit":"px","size":18,"sizes":[]},"title_typography_font_size_mobile":{"unit":"px","size":11,"sizes":[]},"link":{"url":"tel:6102384742","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false},{"id":"214c075d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":33},"elements":[{"id":"5b46bc0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/cropped-NEW-LOGO-1.webp","id":741,"alt":"","source":"library"},"image_size":"full","image_custom_dimension":{"width":"100","height":""},"_padding":{"unit":"px","top":"25","right":"25","bottom":"25","left":"25","isLinked":true},"_padding_mobile":{"unit":"px","top":"10","right":"10","bottom":"10","left":"10","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"c4d7a40","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":33,"content_position":"center"},"elements":[{"id":"6b0efa3e","elType":"widget","settings":{"selected_icon":{"value":"icon icon-mail","library":"ekiticons"},"title_text":"omsri99@gmail.com","description_text":"","position":"right","primary_color":"#36861B","icon_space":{"unit":"px","size":13,"sizes":[]},"icon_size":{"unit":"px","size":25,"sizes":[]},"text_align":"right","title_bottom_space":{"unit":"px","size":0,"sizes":[]},"title_color":"#36861B","title_typography_typography":"custom","title_typography_font_family":"Roboto","title_typography_font_size":{"unit":"px","size":17,"sizes":[]},"title_typography_font_weight":"400","description_color":"#000000","description_typography_typography":"custom","description_typography_font_family":"Roboto","description_typography_font_size":{"unit":"px","size":15,"sizes":[]},"description_typography_font_weight":"400","icon_size_mobile":{"unit":"px","size":18,"sizes":[]},"title_typography_font_size_mobile":{"unit":"px","size":11,"sizes":[]},"link":{"url":"mailto:omsri99@gmail.com","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"icon-box"}],"isInner":false}],"isInner":false},{"id":"bd3195a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin_mobile":{"unit":"px","top":"-40","right":0,"bottom":"0","left":0,"isLinked":false},"z_index":20,"margin_tablet":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":0,"vertical":10,"blur":10,"spread":-1,"color":"rgba(0, 0, 0, 0.15)"},"margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","background_background":"classic","__globals__":{"background_color":""}},"elements":[{"id":"71a5644f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"background_background":"classic","background_color":"#189E83"},"elements":[{"id":"66d2faa0","elType":"widget","settings":{"align_items":"center","pointer":"none","indicator":"none","menu_typography_typography":"custom","menu_typography_font_family":"Raleway","menu_typography_font_size":{"unit":"px","size":15,"sizes":[]},"menu_typography_font_weight":"600","menu_typography_text_transform":"uppercase","padding_horizontal_menu_item":{"unit":"px","size":25,"sizes":[]},"padding_vertical_menu_item":{"unit":"px","size":40,"sizes":[]},"menu_space_between":{"unit":"px","size":43,"sizes":[]},"menu":"menu","color_menu_item":"#FFFFFF","color_menu_item_hover":"#000000","color_menu_item_active":"#000000","_background_hover_background":"classic","toggle_color":"#FFFFFF","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"submenu_icon":{"value":"","library":""}},"elements":[],"widgetType":"nav-menu"}],"isInner":false}],"isInner":false}]'),
(11173, 1501, '_elementor_controls_usage', 'a:7:{s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:11:"text_indent";i:1;}s:18:"section_text_style";a:3:{s:10:"text_color";i:1;s:26:"icon_typography_typography";i:1;s:25:"icon_typography_font_size";i:1;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:6;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:6;s:16:"content_position";i:4;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"align";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:4:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:1:{s:13:"content_width";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:2;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:1;s:6:"margin";i:2;s:7:"z_index";i:1;}}}}s:8:"icon-box";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:4:{s:13:"selected_icon";i:2;s:10:"title_text";i:2;s:16:"description_text";i:2;s:4:"link";i:2;}}s:5:"style";a:3:{s:17:"section_style_box";a:4:{s:8:"position";i:2;s:10:"icon_space";i:2;s:10:"text_align";i:2;s:18:"title_bottom_space";i:2;}s:18:"section_style_icon";a:2:{s:13:"primary_color";i:2;s:9:"icon_size";i:2;}s:21:"section_style_content";a:10:{s:11:"title_color";i:2;s:27:"title_typography_typography";i:2;s:28:"title_typography_font_family";i:2;s:26:"title_typography_font_size";i:2;s:28:"title_typography_font_weight";i:2;s:17:"description_color";i:2;s:33:"description_typography_typography";i:2;s:34:"description_typography_font_family";i:2;s:32:"description_typography_font_size";i:2;s:34:"description_typography_font_weight";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:3:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:8:"nav-menu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_layout";a:3:{s:11:"align_items";i:1;s:7:"pointer";i:1;s:12:"submenu_icon";i:1;}}s:5:"style";a:2:{s:23:"section_style_main-menu";a:11:{s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;s:25:"menu_typography_font_size";i:1;s:27:"menu_typography_font_weight";i:1;s:30:"menu_typography_text_transform";i:1;s:28:"padding_horizontal_menu_item";i:1;s:26:"padding_vertical_menu_item";i:1;s:18:"menu_space_between";i:1;s:15:"color_menu_item";i:1;s:21:"color_menu_item_hover";i:1;s:22:"color_menu_item_active";i:1;}s:12:"style_toggle";a:1:{s:12:"toggle_color";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:28:"_background_hover_background";i:1;}s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}'),
(11199, 7, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(11218, 1509, '_elementor_edit_mode', 'builder'),
(11219, 1509, '_elementor_template_type', 'page'),
(11220, 1509, '_elementor_version', '3.15.3'),
(11221, 1509, '_elementor_pro_version', '3.15.1'),
(11226, 1509, '_wp_page_template', 'elementor_header_footer'),
(11227, 1509, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(11228, 1509, '_elementor_data', '[{"id":"1d891cec","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4c63256","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"3a8bb5d5","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"28dfbe9","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"41821081","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ENTERPRISE","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000},"elements":[],"widgetType":"slides"}],"isInner":false}],"isInner":false},{"id":"359accc8","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92000000000000003996802888650563545525074005126953125,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":9,"sizes":[]},"background_color_b":"#0097B2","background_color_b_stop":{"unit":"%","size":68,"sizes":[]},"content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"68119522","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"3de6b234","elType":"widget","settings":{"editor":"<p>WHO WE ARE<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"800","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#FFFFFF"},"elements":[],"widgetType":"text-editor"},{"id":"6e74123","elType":"widget","settings":{"title":"OM SRI SLB","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":70,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1"},"elements":[],"widgetType":"heading"},{"id":"136e7457","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#FFFFFF","typography_line_height":{"unit":"em","size":2.899999999999999911182158029987476766109466552734375,"sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"648bd7b0","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"1ae7bcef","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"71bcae55","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"43194b53","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"3659d1c8","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#36861B","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1"},"elements":[],"widgetType":"heading"},{"id":"36c11ba0","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"740daf05","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1eed335a","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"782a1760","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"2bbb637d","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"24c668fa","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"5e7a265c","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5c603b47","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60194489946&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"506349dc","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2fccf13a","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"1b222421","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"3acd1949","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"4c291fdf","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"76bfd3a9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"536d9b33","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"1962caf0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5e3ed169","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"58e86b8a","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"376af75e","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"6e064c36","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4000000000000003552713678800500929355621337890625,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"1e6570d7","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54000000000000003552713678800500929355621337890625,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"42973c6","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"927c83f","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"3f5ff7e9","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"26c7aa66","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#36861B","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes"},"elements":[],"widgetType":"heading"},{"id":"7fe93ac3","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"70214eac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"2cb5ffb7","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"f255ed8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"65a8e147","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5566c8f7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"1ce66c50","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"44de2811","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"3f47cae8","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"2e5cc222","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"47344c49","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"284092e2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2598b701","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"62e1c161","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"6a0dee16","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"b32443b","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6fb512aa","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"74105ce1","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"3601943","elType":"widget","settings":{"title":"MOST CLIENT COLLABORATE WITH US","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"27c21bd0","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"68094f1d","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/contact\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"}},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"a9386af","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2bec027f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"3fb549da","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"1905df27","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"3","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"4f610dff","elType":"section","settings":{"layout":"full_width","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","padding":{"unit":"px","top":"100","right":"0","bottom":"100","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"3044c446","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"73803dcc","elType":"section","settings":{"gap":"no","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2e52a945","elType":"column","settings":{"_column_size":50,"_inline_size":25,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"content_position":"center","align":"flex-start"},"elements":[{"id":"17ebb83a","elType":"widget","settings":{"title":"Project List","align":"left","title_color":"#36861B","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","link":{"url":"https:\\/\\/omsrislb.my\\/project\\/","is_external":"","nofollow":"","custom_attributes":""}},"elements":[],"widgetType":"heading"}],"isInner":true},{"id":"6d5e0185","elType":"column","settings":{"_column_size":50,"_inline_size":75,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"7c4d52b6","elType":"widget","settings":{"text":"Divider","color":"#36861B","weight":{"unit":"px","size":5,"sizes":[]},"align":"left","gap":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"divider"}],"isInner":true}],"isInner":true},{"id":"258234a2","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","content_position":"middle","padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"865811a","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"68e2bc7b","elType":"widget","settings":{"editor":"<p><span style=\\"font-weight: 400;\\">Our company has experienced in providing insulation services from Boiler Insulation to Superlon Insulation in various projects from various fields including Maggi, YTY, Austin Powder, Empire Damansara, Care Glove and Shangri La Hotel.<\\/span><\\/p>","text_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":14},"typography_font_weight":"300","align_tablet":"center","align_mobile":"left","align":"left","typography_font_family":"Poppins","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":true}],"isInner":true},{"id":"50bb7b3e","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6052f495","elType":"column","settings":{"_column_size":50,"_inline_size":66,"content_position":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"align":"center"},"elements":[{"id":"5ae29c25","elType":"widget","settings":{"carousel":[{"id":680,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.51.jpeg"},{"id":682,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.52-2.jpeg"},{"id":683,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.52.jpeg"},{"id":684,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.53-1.jpeg"},{"id":685,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.53-2.jpeg"},{"id":686,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/05\\/WhatsApp-Image-2021-04-27-at-10.26.53.jpeg"}],"thumbnail_size":"full","thumbnail_custom_dimension":{"width":"500","height":"308"},"slides_to_show":"1","arrows_color":"#FFFFFF","dots_color":"#55B434","_ob_kontrolz_nav_styles":"yes","_ob_kontrolz_nav_color_bg":"#00000000","_ob_kontrolz_nav_color_bg_hover":"#FFCC0000","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","_ob_kontrolz_pagination_styles":"yes","_ob_kontrolz_pagination_color":"#55B434","_ob_kontrolz_pagination_color_active":"#55B434","_ob_kontrolz_pagination_bord_rad":{"unit":"px","top":"11","right":"11","bottom":"11","left":"11","isLinked":true}},"elements":[],"widgetType":"image-carousel"}],"isInner":true},{"id":"6f9339c8","elType":"column","settings":{"_column_size":50,"_inline_size":34,"content_position":"top","align":"center","margin":{"unit":"px","top":"0","right":"20","bottom":"30","left":"20","isLinked":false},"padding":{"unit":"px","top":"80","right":"30","bottom":"0","left":"30","isLinked":false},"background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-06.jpg","id":133},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover"},"elements":[{"id":"794a661d","elType":"widget","settings":{"title":"Project List","header_size":"h4","align":"center","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase"},"elements":[],"widgetType":"heading"},{"id":"50cfeb2a","elType":"widget","settings":{"icon_list":[{"text":"MAGGI ","icon":"","_id":"a3a66d7","selected_icon":{"value":"","library":""}},{"text":"YTY","icon":"","selected_icon":{"value":"","library":""},"_id":"310e92a"},{"text":"AUSTIN POWDER ","icon":"","selected_icon":{"value":"","library":""},"_id":"ef8a511"},{"text":"EMPIRE DAMANSARA ","icon":"","selected_icon":{"value":"","library":""},"_id":"fafaddd"},{"text":"CARE GLOVE ","icon":"","selected_icon":{"value":"","library":""},"_id":"553dc09"},{"text":"SHANGRI LA HOTEL ","icon":"","selected_icon":{"value":"","library":""},"_id":"52ea04f"}],"space_between":{"unit":"px","size":10},"icon_size":{"unit":"px","size":15},"text_color":"#FFFFFF","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":20},"icon_typography_font_weight":"600","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"center","icon_color":"#55B434","icon_self_align":"left","divider":"yes","icon_typography_font_family":"Poppins","text_color_hover":"#A1A1A1"},"elements":[],"widgetType":"icon-list"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"4a05ed4f","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"44ae866","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"2914108e","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"fd07a0","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"2f6bfe8c","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"65da7286","elType":"widget","settings":{"title":"OM Sri SLB is a\\nboiler service company that does\\nrepair service maintenance service\\nand installation service. ","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3000000000000000444089209850062616169452667236328125,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6c498514","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 20 years of experience since 2001 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"3464436a","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"1674d289","elType":"widget","settings":{"editor":"<p>The company''s core staff were primarily engineers and professional employees specialised in the provision of energy industry services. We have a clear understanding of the situation in the sector and keep in close touch with our clients. In addition, we are also proud of our professional know-how with respect to the product we serve. With our knowledge of the business environment and technological competency, our strength in sales &amp; marketing will help direct the organisation towards achieving its target.<\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"715fa269","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"65aa01c2","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-07.jpg","id":144}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"73243102","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#1E590A","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"3130cbd5","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"76e9b939","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"40","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"46a610e4","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"4ef16006","elType":"widget","settings":{"ending_number":20,"title":"Years of Experience","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"3a338ca2","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"21d6f7fe","elType":"widget","settings":{"ending_number":25,"title":"Winning Global Awards","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"662c2a04","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"49cdb88d","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"30c1cec6","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"7a0d7574","elType":"widget","settings":{"ending_number":74,"title":"Happy Local Clients","number_color":"#55B434","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"60af1bc6","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"14d00fb2","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"19bba1f8","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"466b231e","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"53cf9b93","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6ae76901","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1703616","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#55B434","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"6d95d9ac","elType":"section","settings":{"content_width":{"unit":"px","size":1172,"sizes":[]},"height":"min-height","custom_height":{"unit":"px","size":0,"sizes":[]},"content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-180","right":0,"bottom":"-80","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d725d10","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"167c16f","elType":"widget","settings":{"slides":[{"heading":"We Can Insulate & Seal Entire Home.","description":"","button_text":"Get a Quote","background_color":"","_id":"9f99759","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-14.jpg","id":180},"link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"}],"slides_height":{"unit":"px","size":250,"sizes":[]},"content_max_width":{"unit":"%","size":66,"sizes":[]},"slides_horizontal_position":"right","heading_typography_typography":"custom","heading_typography_font_family":"Poppins","heading_typography_font_weight":"600","heading_typography_text_transform":"uppercase","button_size":"md","button_typography_typography":"custom","button_typography_font_family":"Poppins","button_typography_font_weight":"500","button_typography_text_transform":"uppercase","button_border_radius":{"unit":"px","size":0,"sizes":[]},"button_hover_text_color":"#000000","button_hover_border_color":"#000000"},"elements":[],"widgetType":"slides"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(11237, 1509, '_elementor_controls_usage', 'a:17:{s:6:"column";a:3:{s:5:"count";i:29;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:29;s:16:"content_position";i:15;s:5:"align";i:15;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:6:"margin";i:8;s:7:"padding";i:9;}s:15:"section_effects";a:3:{s:34:"motion_fx_translateY_affectedRange";i:3;s:34:"motion_fx_translateX_affectedRange";i:3;s:29:"motion_fx_motion_fx_scrolling";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:21:"background_background";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:19;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:7:{s:6:"layout";i:9;s:16:"content_position";i:10;s:15:"stretch_section";i:9;s:6:"height";i:3;s:13:"custom_height";i:4;s:3:"gap";i:4;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:7;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:3:{s:6:"margin";i:11;s:7:"padding";i:13;s:7:"z_index";i:1;}s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}s:5:"style";a:3:{s:18:"section_background";a:14:{s:21:"background_background";i:8;s:16:"background_image";i:5;s:19:"background_position";i:6;s:21:"background_attachment";i:4;s:17:"background_repeat";i:6;s:15:"background_size";i:6;s:16:"background_color";i:3;s:21:"background_color_stop";i:1;s:18:"background_color_b";i:1;s:23:"background_color_b_stop";i:1;s:40:"background_motion_fx_motion_fx_scrolling";i:2;s:38:"background_motion_fx_mouseTrack_effect";i:2;s:37:"background_motion_fx_mouseTrack_speed";i:2;s:19:"background_bg_width";i:2;}s:26:"section_background_overlay";a:3:{s:29:"background_overlay_background";i:2;s:26:"background_overlay_opacity";i:2;s:24:"background_overlay_color";i:1;}s:21:"section_shape_divider";a:6:{s:17:"shape_divider_top";i:2;s:23:"shape_divider_top_width";i:2;s:24:"shape_divider_top_height";i:2;s:26:"shape_divider_bottom_width";i:1;s:27:"shape_divider_bottom_height";i:1;s:23:"shape_divider_top_color";i:1;}}}}s:6:"slides";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:2:{s:6:"slides";i:2;s:13:"slides_height";i:2;}s:22:"section_slider_options";a:1:{s:14:"autoplay_speed";i:1;}}s:5:"style";a:3:{s:20:"section_style_slides";a:2:{s:17:"content_max_width";i:1;s:26:"slides_horizontal_position";i:1;}s:19:"section_style_title";a:4:{s:29:"heading_typography_typography";i:1;s:30:"heading_typography_font_family";i:1;s:30:"heading_typography_font_weight";i:1;s:33:"heading_typography_text_transform";i:1;}s:20:"section_style_button";a:8:{s:11:"button_size";i:1;s:28:"button_typography_typography";i:1;s:29:"button_typography_font_family";i:1;s:29:"button_typography_font_weight";i:1;s:32:"button_typography_text_transform";i:1;s:20:"button_border_radius";i:1;s:23:"button_hover_text_color";i:1;s:25:"button_hover_border_color";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:9;}}s:5:"style";a:1:{s:13:"section_style";a:8:{s:5:"align";i:9;s:21:"typography_typography";i:9;s:22:"typography_font_family";i:8;s:22:"typography_font_weight";i:9;s:10:"text_color";i:5;s:22:"typography_line_height";i:1;s:20:"typography_font_size";i:2;s:25:"typography_text_transform";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:3;s:8:"_padding";i:2;}}}}s:7:"heading";a:3:{s:5:"count";i:8;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:3:{s:5:"title";i:8;s:11:"header_size";i:4;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:8:{s:5:"align";i:8;s:11:"title_color";i:8;s:21:"typography_typography";i:8;s:22:"typography_font_family";i:8;s:20:"typography_font_size";i:8;s:22:"typography_font_weight";i:8;s:25:"typography_text_transform";i:6;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:3:{s:7:"_margin";i:7;s:14:"_element_width";i:7;s:8:"_padding";i:1;}s:15:"section_effects";a:1:{s:29:"motion_fx_motion_fx_scrolling";i:1;}}}}s:23:"elementskit-dual-button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:3:{s:18:"dualbutton_content";a:1:{s:24:"ekit_double_button_align";i:1;}s:23:"ekit_button_one_content";a:3:{s:20:"ekit_button_one_text";i:1;s:20:"ekit_button_one_link";i:1;s:29:"ekit_button_one_icons__switch";i:1;}s:23:"ekit_button_two_content";a:2:{s:20:"ekit_button_two_text";i:1;s:20:"ekit_button_two_link";i:1;}}s:5:"style";a:2:{s:36:"ekit_double_button_one_style_section";a:10:{s:28:"ekit_double_button_one_color";i:1;s:44:"ekit_double_button_one_typography_typography";i:1;s:45:"ekit_double_button_one_typography_font_family";i:1;s:43:"ekit_double_button_one_typography_font_size";i:1;s:45:"ekit_double_button_one_typography_font_weight";i:1;s:44:"ekit_double_button_one_background_background";i:1;s:39:"ekit_double_button_one_background_color";i:1;s:50:"ekit_double_button_one_hover_background_background";i:1;s:45:"ekit_double_button_one_hover_background_color";i:1;s:47:"ekit_double_button_one_hover_background_color_b";i:1;}s:36:"ekit_double_button_two_style_section";a:9:{s:44:"ekit_double_button_two_typography_typography";i:1;s:45:"ekit_double_button_two_typography_font_family";i:1;s:43:"ekit_double_button_two_typography_font_size";i:1;s:45:"ekit_double_button_two_typography_font_weight";i:1;s:44:"ekit_double_button_two_background_background";i:1;s:39:"ekit_double_button_two_background_color";i:1;s:50:"ekit_double_button_two_hover_background_background";i:1;s:45:"ekit_double_button_two_hover_background_color";i:1;s:47:"ekit_double_button_two_hover_background_color_b";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:11:"menu-anchor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_anchor";a:1:{s:6:"anchor";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:20;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:20;s:7:"link_to";i:12;s:4:"link";i:12;s:10:"image_size";i:18;}}s:8:"advanced";a:2:{s:15:"section_effects";a:15:{s:29:"motion_fx_motion_fx_scrolling";i:17;s:17:"_animation_mobile";i:3;s:34:"motion_fx_translateY_affectedRange";i:17;s:26:"motion_fx_mouseTrack_speed";i:3;s:27:"motion_fx_translateY_effect";i:17;s:27:"motion_fx_translateX_effect";i:15;s:34:"motion_fx_translateX_affectedRange";i:16;s:31:"motion_fx_rotateZ_affectedRange";i:7;s:30:"motion_fx_translateX_direction";i:7;s:30:"motion_fx_translateY_direction";i:4;s:24:"motion_fx_rotateZ_effect";i:2;s:24:"motion_fx_tilt_direction";i:3;s:27:"motion_fx_rotateZ_direction";i:3;s:26:"motion_fx_translateY_speed";i:1;s:23:"motion_fx_rotateZ_speed";i:1;}s:14:"_section_style";a:1:{s:21:"_element_width_mobile";i:3;}}}}s:6:"spacer";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_spacer";a:2:{s:5:"space";i:1;s:16:"_ob_spacerat_use";i:1;}}}}s:9:"container";a:3:{s:5:"count";i:10;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:24:"section_layout_container";a:8:{s:5:"width";i:6;s:13:"content_width";i:6;s:14:"flex_direction";i:2;s:16:"flex_align_items";i:2;s:8:"flex_gap";i:2;s:11:"boxed_width";i:2;s:10:"min_height";i:2;s:20:"flex_justify_content";i:2;}s:33:"section_layout_additional_options";a:1:{s:8:"overflow";i:2;}}s:5:"style";a:1:{s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:2;s:29:"background_overlay_color_stop";i:2;s:26:"background_overlay_color_b";i:2;s:31:"background_overlay_color_b_stop";i:2;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}}}s:4:"icon";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:13:"selected_icon";i:1;}}s:5:"style";a:1:{s:18:"section_style_icon";a:2:{s:5:"align";i:1;s:13:"primary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_element_width";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:5:{s:4:"text";i:1;s:13:"selected_icon";i:1;s:10:"icon_align";i:1;s:11:"icon_indent";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:9:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:16:"background_color";i:1;s:13:"border_radius";i:1;s:29:"button_background_hover_color";i:1;s:12:"align_mobile";i:1;}}}}s:14:"image-carousel";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:2:{s:22:"section_image_carousel";a:6:{s:8:"carousel";i:2;s:14:"thumbnail_size";i:2;s:14:"slides_to_show";i:2;s:7:"link_to";i:1;s:4:"link";i:1;s:26:"thumbnail_custom_dimension";i:1;}s:26:"section_additional_options";a:1:{s:14:"autoplay_speed";i:1;}}s:5:"style";a:1:{s:24:"section_style_navigation";a:9:{s:12:"arrows_color";i:1;s:10:"dots_color";i:1;s:23:"_ob_kontrolz_nav_styles";i:1;s:25:"_ob_kontrolz_nav_color_bg";i:1;s:31:"_ob_kontrolz_nav_color_bg_hover";i:1;s:30:"_ob_kontrolz_pagination_styles";i:1;s:29:"_ob_kontrolz_pagination_color";i:1;s:36:"_ob_kontrolz_pagination_color_active";i:1;s:32:"_ob_kontrolz_pagination_bord_rad";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:1;s:6:"weight";i:1;s:3:"gap";i:1;}}s:7:"content";a:1:{s:15:"section_divider";a:1:{s:5:"align";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:3:{s:13:"space_between";i:2;s:10:"icon_align";i:2;s:7:"divider";i:1;}s:18:"section_icon_style";a:4:{s:9:"icon_size";i:2;s:11:"text_indent";i:2;s:10:"icon_color";i:2;s:15:"icon_self_align";i:2;}s:18:"section_text_style";a:6:{s:10:"text_color";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;s:27:"icon_typography_font_weight";i:2;s:27:"icon_typography_font_family";i:1;s:16:"text_color_hover";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"counter";a:3:{s:5:"count";i:4;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_counter";a:2:{s:13:"ending_number";i:4;s:5:"title";i:4;}}s:5:"style";a:2:{s:14:"section_number";a:4:{s:12:"number_color";i:4;s:28:"typography_number_typography";i:4;s:29:"typography_number_font_family";i:4;s:29:"typography_number_font_weight";i:4;}s:13:"section_title";a:5:{s:11:"title_color";i:4;s:27:"typography_title_typography";i:4;s:28:"typography_title_font_family";i:4;s:26:"typography_title_font_size";i:4;s:28:"typography_title_font_weight";i:4;}}}}s:20:"testimonial-carousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:5:{s:6:"slides";i:1;s:4:"skin";i:1;s:15:"slides_per_view";i:1;s:16:"slides_to_scroll";i:1;s:6:"layout";i:1;}s:26:"section_additional_options";a:1:{s:11:"show_arrows";i:1;}}s:5:"style";a:2:{s:21:"section_content_style";a:13:{s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:30:"content_typography_font_family";i:1;s:28:"content_typography_font_size";i:1;s:30:"content_typography_font_weight";i:1;s:10:"name_color";i:1;s:26:"name_typography_typography";i:1;s:27:"name_typography_font_family";i:1;s:27:"name_typography_font_weight";i:1;s:11:"title_color";i:1;s:27:"title_typography_typography";i:1;s:28:"title_typography_font_family";i:1;s:28:"title_typography_font_weight";i:1;}s:18:"section_skin_style";a:1:{s:16:"background_color";i:1;}}}}}'),
(11623, 1559, '_wp_attached_file', '2023/08/CLIENTS-LOGO-2-2.webp'),
(11624, 1559, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:750;s:6:"height";i:500;s:4:"file";s:29:"2023/08/CLIENTS-LOGO-2-2.webp";s:8:"filesize";i:25832;s:5:"sizes";a:3:{s:6:"medium";a:5:{s:4:"file";s:29:"CLIENTS-LOGO-2-2-300x200.webp";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:15014;}s:9:"thumbnail";a:5:{s:4:"file";s:29:"CLIENTS-LOGO-2-2-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";s:8:"filesize";i:9338;}s:22:"elementor_custom_300x0";a:4:{s:4:"file";s:81:"elementor/thumbs/CLIENTS-LOGO-2-2-qb88roecw97bn0oy1a652mzsirw6qmvy0fiw88joi8.webp";s:5:"width";i:300;s:6:"height";i:0;s:9:"mime-type";s:10:"image/webp";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(11751, 1575, '_elementor_source', 'post'),
(11752, 1575, '_elementor_edit_mode', 'builder'),
(11753, 1575, '_elementor_template_type', 'popup'),
(11754, 1575, '_elementor_version', '3.15.3'),
(11755, 1575, '_elementor_pro_version', '3.15.1'),
(11756, 1575, '_edit_lock', '1692619315:3'),
(11757, 1575, 'ekit_post_views_count', '1'),
(11758, 1575, '_wp_page_template', 'default'),
(11759, 1575, '_elementor_page_settings', 'a:16:{s:5:"width";a:3:{s:4:"unit";s:2:"px";s:4:"size";s:3:"635";s:5:"sizes";a:0:{}}s:11:"height_type";s:6:"custom";s:6:"height";a:3:{s:4:"unit";s:2:"px";s:4:"size";s:3:"764";s:5:"sizes";a:0:{}}s:16:"content_position";s:6:"center";s:18:"entrance_animation";s:6:"fadeIn";s:14:"exit_animation";s:6:"fadeIn";s:21:"background_background";s:7:"classic";s:16:"background_color";s:7:"#FFFFFF";s:24:"overlay_background_color";s:9:"#00000080";s:18:"close_button_color";s:7:"#333333";s:12:"width_tablet";a:3:{s:4:"unit";s:2:"vw";s:4:"size";s:2:"75";s:5:"sizes";a:0:{}}s:12:"width_mobile";a:3:{s:4:"unit";s:2:"vw";s:4:"size";s:3:"100";s:5:"sizes";a:0:{}}s:13:"height_tablet";a:3:{s:4:"unit";s:2:"vh";s:4:"size";s:2:"75";s:5:"sizes";a:0:{}}s:13:"height_mobile";a:3:{s:4:"unit";s:2:"vh";s:4:"size";i:90;s:5:"sizes";a:0:{}}s:24:"vertical_position_mobile";s:6:"center";s:11:"__globals__";a:3:{s:16:"background_color";s:0:"";s:24:"overlay_background_color";s:0:"";s:18:"close_button_color";s:0:"";}}'),
(11760, 1575, '_elementor_data', '[{"id":"54ed22d6","elType":"container","settings":{"boxed_width":{"unit":"px","size":"410","sizes":[]},"flex_gap":{"size":30,"unit":"px"},"padding_mobile":{"unit":"%","top":"0","right":"5","bottom":"0","left":"5","isLinked":false},"_title":"Popup Form","flex_direction":"column","flex_align_items":"stretch","padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"flex_justify_content":"center","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2ea83081","elType":"widget","settings":{"title":"Schedule Appointment","header_size":"h3","align":"center","_padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"__globals__":{"title_color":""},"title_color":"#183C51","typography_typography":"custom","typography_font_family":"Alfa Slab One","typography_font_size":{"unit":"px","size":"28","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"24","sizes":[]},"typography_text_transform":"uppercase","typography_line_height":{"unit":"px","size":"41","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"30","sizes":[]},"typography_letter_spacing":{"unit":"px","size":"1","sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"198f001e","elType":"widget","settings":{"editor":"Fill out the form below, and we will be in touch shortly.","align":"center","_padding_mobile":{"unit":"%","top":"","right":"","bottom":"","left":"","isLinked":true},"text_color":"#3E3E3E","typography_typography":"custom","typography_font_family":"Work Sans","typography_font_size":{"unit":"px","size":"14","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"13","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"12","sizes":[]},"typography_font_weight":"400","typography_text_transform":"none","typography_font_style":"normal","typography_line_height":{"unit":"px","size":"24","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"23","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"22","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"76eb144d","elType":"widget","settings":{"form_name":"Schedule Appointment","form_fields":[{"field_type":"step","_id":"b0bc225","rows":"4","custom_id":"field_b0bc225","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"name","field_type":"html","field_label":"Contact Information","placeholder":"Full Name*","_id":"2d2a30d","required":"true","field_html":"Contact Information","rows":"4","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_6b514f4","field_label":"Name","placeholder":"Full Name*","required":"true","rows":"4","_id":"6b514f4","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"email","field_type":"tel","required":"true","field_label":"phone","placeholder":"phone*","_id":"5dc3d82","rows":"4","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"message","field_type":"email","field_label":"email","placeholder":"email*","_id":"ebf4193","required":"true","rows":"4","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"field_type":"step","rows":"4","custom_id":"field_b6db177","_id":"b6db177","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_9621cc6","field_type":"html","field_label":"Contact Information","placeholder":"Full Name*","required":"true","field_html":"Vehicle Information","rows":"4","_id":"9621cc6","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_ef668a5","field_label":"Vehicle Make","placeholder":"Vehicle Make*","required":"true","rows":"4","_id":"ef668a5","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_8de791d","field_label":"Vehicle model","placeholder":"Vehicle model*","width":"50","required":"true","rows":"4","_id":"8de791d","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_2681392","field_type":"number","field_label":"Vehicle year","placeholder":"Vehicle year*","width":"50","required":"true","rows":"4","_id":"2681392","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_eb4658e","field_label":"Service Requested","placeholder":"Service Requested*","required":"true","rows":"4","_id":"eb4658e","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"field_type":"step","rows":"4","custom_id":"field_2c6b55c","_id":"2c6b55c","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_7a359f6","field_type":"html","field_label":"Contact Information","placeholder":"Full Name*","required":"true","field_html":"Preferred Date and Time Selection","rows":"4","_id":"7a359f6","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_47dd882","field_type":"date","field_label":"date","placeholder":"Choose date*","width":"50","required":"true","rows":"4","_id":"47dd882","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""},{"custom_id":"field_36e83c1","field_type":"time","field_label":"time","placeholder":"Choose time*","width":"50","required":"true","rows":"4","_id":"36e83c1","previous_button":"","next_button":"","file_sizes":"","file_types":"","allow_multiple_upload":"","max_files":"","acceptance_text":"","checked_by_default":"","field_min":"","field_max":"","min_date":"","max_date":"","use_native_date":"","use_native_time":""}],"input_size":"lg","button_align":"end","step_next_label":"Next \\u27f6","step_previous_label":"\\u27f5 back","button_text":"submit \\u27f6","email_content":"[all-fields]","email_content_2":"[all-fields]","success_message":"The form was sent successfully.","error_message":"An error occured.","required_field_message":"This field is required.","invalid_message":"There''s something wrong. The form is invalid.","button_text_padding":{"unit":"px","top":"19","right":"40","bottom":"19","left":"40","isLinked":""},"row_gap":{"unit":"px","size":"16","sizes":[]},"step_icon_shape":"square","label_spacing":{"unit":"px","size":"4","sizes":[]},"steps_gap_mobile":{"unit":"px","size":"10","sizes":[]},"steps_padding_mobile":{"unit":"px","size":"25","sizes":[]},"step_divider_width_mobile":{"unit":"px","size":"1","sizes":[]},"step_divider_gap":{"unit":"px","size":"4","sizes":[]},"step_divider_gap_mobile":{"unit":"px","size":"0","sizes":[]},"show_labels":"","html_spacing":{"unit":"px","size":"16","sizes":[]},"field_background_color":"","field_border_width":{"unit":"px","top":"1","right":"1","bottom":"1","left":"1","isLinked":"1"},"field_border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"1"},"button_hover_color":"","button_border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"1"},"__globals__":{"html_color":"","html_typography_typography":"","field_typography_typography":"","field_text_color":"","field_border_color":"","button_background_color":"","button_text_color":"","button_background_hover_color":"","previous_button_text_color_hover":"","previous_button_background_color":"","previous_button_text_color":"","success_message_color":"","error_message_color":"","inline_message_color":"","step_inactive_primary_color":"","step_active_primary_color":"","step_active_secondary_color":"","step_completed_primary_color":"","step_completed_secondary_color":"","step_inactive_secondary_color":""},"label_color":"#3E3E3E","label_typography_typography":"custom","label_typography_font_family":"Work Sans","label_typography_font_size":{"unit":"px","size":"14","sizes":[]},"label_typography_font_size_tablet":{"unit":"px","size":"13","sizes":[]},"label_typography_font_size_mobile":{"unit":"px","size":"12","sizes":[]},"label_typography_font_weight":"400","label_typography_text_transform":"none","label_typography_font_style":"normal","label_typography_line_height":{"unit":"px","size":"24","sizes":[]},"label_typography_line_height_tablet":{"unit":"px","size":"23","sizes":[]},"label_typography_line_height_mobile":{"unit":"px","size":"22","sizes":[]},"html_color":"#183C51","html_typography_typography":"custom","html_typography_font_family":"Work Sans","html_typography_font_size":{"unit":"px","size":"20","sizes":[]},"html_typography_font_weight":"400","html_typography_text_transform":"capitalize","html_typography_font_style":"normal","html_typography_line_height":{"unit":"px","size":"22.8","sizes":[]},"html_typography_line_height_tablet":{"unit":"px","size":"","sizes":[]},"html_typography_line_height_mobile":{"unit":"px","size":"","sizes":[]},"field_text_color":"#183C51","field_typography_typography":"custom","field_typography_font_family":"Work Sans","field_typography_font_size":{"unit":"px","size":"18","sizes":[]},"field_typography_font_size_tablet":{"unit":"px","size":"16","sizes":[]},"field_typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"field_typography_font_weight":"400","field_typography_text_transform":"capitalize","field_typography_font_style":"normal","field_typography_line_height":{"unit":"px","size":"24","sizes":[]},"field_typography_line_height_tablet":{"unit":"px","size":"23","sizes":[]},"field_typography_line_height_mobile":{"unit":"px","size":"22","sizes":[]},"field_border_color":"#183C51","button_typography_typography":"custom","button_typography_font_family":"Work Sans","button_typography_font_size":{"unit":"px","size":"12","sizes":[]},"button_typography_font_weight":"400","button_typography_text_transform":"uppercase","button_typography_font_style":"normal","button_typography_letter_spacing":{"unit":"px","size":"0.5","sizes":[]},"button_background_color":"#47A7A6","button_text_color":"#FFFFFF","previous_button_background_color":"#02010100","previous_button_text_color":"#183C51","button_background_hover_color":"#6CB9B8","previous_button_text_color_hover":"#47A7A6","message_typography_typography":"custom","message_typography_font_family":"Work Sans","message_typography_font_size":{"unit":"px","size":"14","sizes":[]},"message_typography_font_size_tablet":{"unit":"px","size":"13","sizes":[]},"message_typography_font_size_mobile":{"unit":"px","size":"12","sizes":[]},"message_typography_font_weight":"400","message_typography_text_transform":"none","message_typography_font_style":"normal","message_typography_line_height":{"unit":"px","size":"24","sizes":[]},"message_typography_line_height_tablet":{"unit":"px","size":"23","sizes":[]},"message_typography_line_height_mobile":{"unit":"px","size":"22","sizes":[]},"success_message_color":"#47A7A6","error_message_color":"#333333","inline_message_color":"#183C51","steps_typography_typography":"custom","steps_typography_font_family":"Work Sans","steps_typography_font_size":{"unit":"px","size":"12","sizes":[]},"steps_typography_font_weight":"400","steps_typography_text_transform":"uppercase","steps_typography_font_style":"normal","steps_typography_letter_spacing":{"unit":"px","size":"0.5","sizes":[]},"step_inactive_primary_color":"#183C51","step_inactive_secondary_color":"#02010100","step_active_primary_color":"#FFFFFF","step_active_secondary_color":"#47A7A6","step_completed_primary_color":"#FFFFFF","step_completed_secondary_color":"#47A7A6","mailchimp_fields_map":[],"drip_fields_map":[],"activecampaign_fields_map":[],"getresponse_fields_map":[],"convertkit_fields_map":[],"mailerlite_fields_map":[],"email_to":"daniel@cloudix.my","email_subject":"New message from &quot;Om Sri Slb&quot;","email_from":"email@binawebpro.com","email_from_name":"Om Sri Slb","email_to_2":"daniel@cloudix.my","email_subject_2":"New message from &quot;Om Sri Slb&quot;","email_from_2":"email@binawebpro.com","email_from_name_2":"Om Sri Slb","email_reply_to_2":"daniel@cloudix.my","server_message":"Your submission failed because of a server error."},"elements":[],"widgetType":"form"}],"isInner":false}]'),
(11763, 1575, '_elementor_popup_display_settings', 'a:2:{s:8:"triggers";a:0:{}s:6:"timing";a:0:{}}'),
(12628, 7, '__elementor_forms_snapshot', '[{"id":"97c2073","name":"homepage","fields":[{"id":"name","type":"text","label":"Name"},{"id":"field_88e2006","type":"tel","label":"Phone"},{"id":"email","type":"email","label":"Email"},{"id":"message","type":"radio","label":"","options":["Quotation","Maintenance","Complain","Others"]},{"id":"field_25663fc","type":"textarea","label":"Your Enquiry"}]}]'),
(13061, 27, '_elementor_controls_usage', 'a:6:{s:7:"heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:1;}}s:5:"style";a:1:{s:19:"section_title_style";a:4:{s:11:"title_color";i:1;s:21:"typography_typography";i:1;s:20:"typography_font_size";i:1;s:5:"align";i:1;}}}}s:4:"form";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:6:{s:19:"section_form_fields";a:3:{s:9:"form_name";i:1;s:11:"form_fields";i:1;s:10:"input_size";i:1;}s:15:"section_buttons";a:1:{s:11:"button_size";i:1;}s:19:"section_integration";a:1:{s:14:"submit_actions";i:1;}s:13:"section_email";a:4:{s:8:"email_to";i:1;s:13:"email_subject";i:1;s:10:"email_from";i:1;s:15:"email_from_name";i:1;}s:15:"section_email_2";a:1:{s:12:"email_from_2";i:1;}s:16:"section_redirect";a:1:{s:11:"redirect_to";i:1;}}}}s:9:"container";a:3:{s:5:"count";i:2;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:24:"section_layout_container";a:3:{s:14:"flex_direction";i:1;s:13:"content_width";i:1;s:5:"width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:2;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}s:11:"google_maps";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:11:"section_map";a:2:{s:7:"address";i:1;s:6:"height";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:6:"layout";a:2:{s:14:"section_layout";a:7:{s:3:"gap";i:1;s:13:"custom_height";i:1;s:16:"content_position";i:1;s:6:"layout";i:1;s:6:"height";i:1;s:15:"column_position";i:1;s:8:"overflow";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:1;s:6:"margin";i:1;}}}}}'),
(13112, 1715, '_wp_attached_file', '2023/08/placeholder-282.png'),
(13113, 1715, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:27:"2023/08/placeholder-282.png";s:8:"filesize";i:6146;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:27:"placeholder-282-300x200.png";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:2008;}s:5:"large";a:5:{s:4:"file";s:28:"placeholder-282-1024x683.png";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:7514;}s:9:"thumbnail";a:5:{s:4:"file";s:27:"placeholder-282-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:1207;}s:12:"medium_large";a:5:{s:4:"file";s:27:"placeholder-282-768x512.png";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:5342;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(13114, 1715, '_elementor_source_image_hash', '876ed3c83b0c0a3d3b784213ec979a70927ce946'),
(13115, 1716, '_wp_attached_file', '2023/08/info-box-icon-21.png'),
(13116, 1716, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:54;s:6:"height";i:50;s:4:"file";s:28:"2023/08/info-box-icon-21.png";s:8:"filesize";i:1050;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:{}}}'),
(13117, 1716, '_elementor_source_image_hash', 'ed91d2ce683170bc639199e1a95482b59b7c12f5'),
(13118, 1717, '_wp_attached_file', '2023/08/placeholder-240.png'),
(13119, 1717, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:27:"2023/08/placeholder-240.png";s:8:"filesize";i:3059;s:5:"sizes";a:4:{s:6:"medium";a:5:{s:4:"file";s:27:"placeholder-240-300x200.png";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:5295;}s:5:"large";a:5:{s:4:"file";s:28:"placeholder-240-1024x683.png";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:22343;}s:9:"thumbnail";a:5:{s:4:"file";s:27:"placeholder-240-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:3702;}s:12:"medium_large";a:5:{s:4:"file";s:27:"placeholder-240-768x512.png";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:9:"image/png";s:8:"filesize";i:16712;}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(13120, 1717, '_elementor_source_image_hash', '006f1ac70f942e9ae031811a949685be55ad13dc'),
(13266, 20, '_elementor_controls_usage', 'a:8:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:10:"image_size";i:1;s:5:"image";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:5:"align";i:1;s:5:"width";i:1;s:5:"space";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:7;s:21:"space_between_widgets";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:6;s:6:"margin";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:2;s:11:"header_size";i:2;}}s:5:"style";a:1:{s:19:"section_title_style";a:1:{s:11:"title_color";i:2;}}}}s:11:"text-editor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:5:"align";i:2;s:21:"typography_typography";i:2;s:22:"typography_font_family";i:2;s:22:"typography_font_weight";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:4;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:3;}s:14:"section_layout";a:3:{s:6:"layout";i:1;s:6:"height";i:1;s:13:"custom_height";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:7:"padding";i:2;s:6:"margin";i:2;}}s:5:"style";a:1:{s:18:"section_background";a:5:{s:27:"background_hover_transition";i:1;s:21:"background_background";i:2;s:16:"background_image";i:1;s:16:"background_color";i:1;s:18:"background_color_b";i:1;}}}}s:20:"elementskit-icon-box";a:3:{s:5:"count";i:4;s:15:"control_percent";i:4;s:8:"controls";a:2:{s:7:"content";a:3:{s:13:"ekit_icon_box";a:4:{s:24:"ekit_icon_box_title_text";i:4;s:30:"ekit_icon_box_description_text";i:4;s:26:"ekit_icon_box_header_image";i:4;s:26:"ekit_icon_box_header_icons";i:4;}s:28:"ekit_icon_box_section_button";a:2:{s:24:"ekit_icon_box_enable_btn";i:4;s:24:"ekit_icon_box_icon_align";i:4;}s:30:"ekit_icon_box_section_settings";a:1:{s:27:"ekit_icon_box_icon_position";i:4;}}s:5:"style";a:4:{s:38:"ekit_icon_box_section_background_style";a:7:{s:32:"ekit_icon_box_infobox_bg_padding";i:4;s:41:"ekit_icon_box_infobox_bg_group_background";i:4;s:36:"ekit_icon_box_infobox_bg_group_color";i:4;s:40:"ekit_icon_box_iocnbox_border_group_width";i:4;s:40:"ekit_icon_box_iocnbox_border_group_color";i:4;s:47:"ekit_icon_box_infobox_bg_hover_group_background";i:4;s:42:"ekit_icon_box_infobox_bg_hover_group_color";i:4;}s:32:"ekit_icon_box_section_style_icon";a:10:{s:32:"ekit_icon_box_icon_primary_color";i:4;s:24:"ekit_icon_box_icon_space";i:4;s:26:"ekit_icon_box_border_width";i:4;s:26:"ekit_icon_box_border_color";i:4;s:32:"ekit_icon_box_icon_border_radius";i:4;s:33:"ekit_icon_box_hover_primary_color";i:4;s:37:"ekit_icon_box_border_icon_group_width";i:4;s:37:"ekit_icon_box_border_icon_group_color";i:4;s:30:"ekit_icon_box_icon_line_height";i:4;s:33:"ekit_icon_box_icon_vertical_align";i:4;}s:31:"ekit_icon_section_style_content";a:8:{s:28:"ekit_icon_title_bottom_space";i:4;s:43:"ekit_icon_title_typography_group_typography";i:4;s:42:"ekit_icon_title_typography_group_font_size";i:4;s:20:"ekit_icon_box_margin";i:4;s:21:"ekit_icon_title_color";i:4;s:27:"ekit_icon_title_color_hover";i:4;s:27:"ekit_icon_description_color";i:4;s:33:"ekit_icon_description_color_hover";i:4;}s:37:"ekit_icon_box_section_bg_ovelry_style";a:1:{s:24:"ekit_icon_box_show_image";i:4;}}}}s:6:"spacer";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:0:{}}s:19:"elementskit-heading";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:3:{s:26:"ekit_heading_section_title";a:1:{s:18:"ekit_heading_title";i:1;}s:32:"ekit_heading_section_extra_title";a:2:{s:37:"ekit_heading_section_extra_title_show";i:1;s:24:"ekit_heading_extra_title";i:1;}s:30:"ekit_heading_section_seperator";a:1:{s:28:"ekit_heading_seperator_image";i:1;}}s:5:"style";a:3:{s:28:"ekit_heading_section_general";a:1:{s:24:"ekit_heading_title_align";i:1;}s:32:"ekit_heading_section_title_style";a:4:{s:25:"ekit_heading_title_margin";i:1;s:40:"ekit_heading_title_typography_typography";i:1;s:41:"ekit_heading_title_typography_font_family";i:1;s:39:"ekit_heading_title_typography_font_size";i:1;}s:36:"ekit_heading_section_seperator_style";a:1:{s:28:"ekit_heading_seperator_width";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}'),
(13410, 25, '_elementor_controls_usage', 'a:3:{s:11:"testimonial";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:19:"section_testimonial";a:4:{s:19:"testimonial_content";i:2;s:16:"testimonial_name";i:2;s:15:"testimonial_job";i:2;s:17:"testimonial_image";i:2;}}s:5:"style";a:3:{s:33:"section_style_testimonial_content";a:4:{s:21:"content_content_color";i:1;s:29:"content_typography_typography";i:2;s:30:"content_typography_font_family";i:2;s:30:"content_typography_font_weight";i:2;}s:30:"section_style_testimonial_name";a:1:{s:15:"name_text_color";i:2;}s:29:"section_style_testimonial_job";a:1:{s:14:"job_text_color";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:2;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:2;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:6:"layout";a:1:{s:14:"section_layout";a:7:{s:6:"layout";i:2;s:3:"gap";i:2;s:6:"height";i:2;s:13:"custom_height";i:2;s:16:"content_position";i:2;s:8:"overflow";i:2;s:15:"column_position";i:1;}}s:5:"style";a:1:{s:18:"section_background";a:6:{s:21:"background_background";i:2;s:16:"background_image";i:2;s:19:"background_position";i:2;s:21:"background_attachment";i:2;s:17:"background_repeat";i:2;s:15:"background_size";i:2;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:2;s:7:"padding";i:2;}}}}}'),
(13458, 23, '_elementor_controls_usage', 'a:8:{s:7:"heading";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:9;}}s:5:"style";a:1:{s:19:"section_title_style";a:6:{s:11:"title_color";i:9;s:5:"align";i:8;s:21:"typography_typography";i:8;s:22:"typography_font_family";i:8;s:20:"typography_font_size";i:8;s:22:"typography_font_weight";i:8;}}}}s:11:"text-editor";a:3:{s:5:"count";i:9;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:9;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:9;s:21:"typography_typography";i:9;s:22:"typography_font_family";i:9;s:22:"typography_font_weight";i:9;s:5:"align";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:2:{s:4:"text";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:17:"button_text_color";i:1;s:16:"background_color";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:25;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:2:{s:12:"_inline_size";i:25;s:16:"content_position";i:8;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:17;}}}}s:7:"section";a:3:{s:5:"count";i:17;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:8:{s:6:"layout";i:9;s:3:"gap";i:9;s:6:"height";i:9;s:13:"custom_height";i:9;s:15:"column_position";i:9;s:16:"content_position";i:9;s:8:"overflow";i:9;s:15:"stretch_section";i:9;}s:17:"section_structure";a:1:{s:9:"structure";i:8;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:6:"margin";i:9;s:7:"padding";i:9;}s:19:"_section_responsive";a:4:{s:12:"hide_desktop";i:2;s:11:"hide_tablet";i:2;s:11:"hide_mobile";i:2;s:20:"reverse_order_mobile";i:4;}}s:5:"style";a:1:{s:18:"section_background";a:7:{s:21:"background_background";i:9;s:16:"background_color";i:9;s:16:"background_image";i:5;s:19:"background_position";i:5;s:21:"background_attachment";i:5;s:17:"background_repeat";i:5;s:15:"background_size";i:5;}}}}s:5:"image";a:3:{s:5:"count";i:9;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:13:"section_image";a:1:{s:5:"image";i:9;}}}}s:14:"image-carousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:2:{s:22:"section_image_carousel";a:7:{s:8:"carousel";i:1;s:14:"thumbnail_size";i:1;s:14:"slides_to_show";i:1;s:7:"link_to";i:1;s:4:"link";i:1;s:21:"slides_to_show_mobile";i:1;s:10:"navigation";i:1;}s:26:"section_additional_options";a:1:{s:14:"autoplay_speed";i:1;}}}}s:9:"container";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:0:{}}}'),
(13659, 9, '_elementor_controls_usage', 'a:7:{s:9:"icon-list";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:4:"view";i:1;s:9:"icon_list";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:1:{s:13:"space_between";i:1;}s:18:"section_icon_style";a:2:{s:10:"icon_color";i:1;s:11:"text_indent";i:1;}s:18:"section_text_style";a:3:{s:10:"text_color";i:1;s:26:"icon_typography_typography";i:1;s:25:"icon_typography_font_size";i:1;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:1:{s:6:"layout";a:4:{s:12:"_inline_size";i:5;s:16:"content_position";i:2;s:5:"align";i:1;s:21:"space_between_widgets";i:1;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}s:5:"style";a:1:{s:13:"section_style";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}}}}s:23:"elementskit-header-info";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:16:"ekit_header_info";a:1:{s:21:"ekit_headerinfo_group";i:1;}}s:5:"style";a:1:{s:22:"ekit_header_icon_style";a:4:{s:20:"ekit_info_text_color";i:1;s:41:"elementskit_content_typography_typography";i:1;s:40:"elementskit_content_typography_font_size";i:1;s:42:"elementskit_content_typography_font_weight";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"align";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:4:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:1:{s:13:"content_width";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:2:{s:18:"section_background";a:2:{s:21:"background_background";i:2;s:16:"background_color";i:1;}s:14:"section_border";a:2:{s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:3:{s:7:"padding";i:1;s:6:"margin";i:2;s:7:"z_index";i:1;}}}}s:15:"theme-site-logo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"general";a:1:{s:11:"__dynamic__";a:1:{s:5:"count";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:4:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;s:21:"_element_width_mobile";i:1;}}s:7:"content";a:1:{s:13:"section_image";a:1:{s:5:"image";i:1;}}}}s:8:"nav-menu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_layout";a:3:{s:11:"align_items";i:1;s:7:"pointer";i:1;s:12:"submenu_icon";i:1;}}s:5:"style";a:2:{s:23:"section_style_main-menu";a:11:{s:26:"menu_typography_typography";i:1;s:27:"menu_typography_font_family";i:1;s:25:"menu_typography_font_size";i:1;s:27:"menu_typography_font_weight";i:1;s:30:"menu_typography_text_transform";i:1;s:28:"padding_horizontal_menu_item";i:1;s:26:"padding_vertical_menu_item";i:1;s:18:"menu_space_between";i:1;s:15:"color_menu_item";i:1;s:21:"color_menu_item_hover";i:1;s:22:"color_menu_item_active";i:1;}s:12:"style_toggle";a:1:{s:12:"toggle_color";i:1;}}s:8:"advanced";a:2:{s:19:"_section_background";a:1:{s:28:"_background_hover_background";i:1;}s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}}'),
(13768, 60, '_elementor_controls_usage', 'a:9:{s:5:"image";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:4:{s:7:"general";a:1:{s:11:"__dynamic__";a:1:{s:5:"count";i:1;}}s:7:"content";a:1:{s:13:"section_image";a:5:{s:5:"image";i:1;s:10:"image_size";i:1;s:22:"image_custom_dimension";i:1;s:7:"link_to";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:5:"width";i:1;s:5:"align";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:2;}}s:5:"style";a:1:{s:13:"section_style";a:5:{s:10:"text_color";i:2;s:21:"typography_typography";i:2;s:20:"typography_font_size";i:2;s:22:"typography_font_weight";i:2;s:5:"align";i:2;}}}}s:6:"column";a:3:{s:5:"count";i:6;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:1:{s:7:"padding";i:1;}s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:3;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:3;s:21:"typography_typography";i:3;s:20:"typography_font_size";i:3;s:22:"typography_font_weight";i:3;s:22:"typography_font_family";i:3;}}}}s:7:"divider";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:15:"section_divider";a:1:{s:5:"width";i:2;}}s:5:"style";a:1:{s:21:"section_divider_style";a:3:{s:5:"color";i:2;s:6:"weight";i:2;s:3:"gap";i:2;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:2;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:9:"icon_list";i:2;}}s:5:"style";a:3:{s:17:"section_icon_list";a:3:{s:13:"space_between";i:2;s:10:"icon_align";i:2;s:17:"icon_align_mobile";i:1;}s:18:"section_icon_style";a:4:{s:9:"icon_size";i:2;s:11:"text_indent";i:2;s:10:"icon_color";i:2;s:15:"icon_self_align";i:2;}s:18:"section_text_style";a:5:{s:10:"text_color";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;s:27:"icon_typography_font_weight";i:2;s:27:"icon_typography_font_family";i:1;}}}}s:4:"form";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:2:{s:7:"content";a:5:{s:19:"section_form_fields";a:4:{s:9:"form_name";i:1;s:11:"form_fields";i:1;s:11:"show_labels";i:1;s:10:"input_size";i:1;}s:15:"section_buttons";a:4:{s:11:"button_text";i:1;s:12:"button_width";i:1;s:11:"button_size";i:1;s:20:"selected_button_icon";i:1;}s:20:"section_form_options";a:4:{s:15:"success_message";i:1;s:13:"error_message";i:1;s:22:"required_field_message";i:1;s:15:"invalid_message";i:1;}s:13:"section_email";a:3:{s:8:"email_to";i:1;s:13:"email_subject";i:1;s:10:"email_from";i:1;}s:15:"section_email_2";a:2:{s:15:"email_subject_2";i:1;s:12:"email_from_2";i:1;}}s:5:"style";a:3:{s:18:"section_form_style";a:5:{s:10:"column_gap";i:1;s:7:"row_gap";i:1;s:11:"label_color";i:1;s:27:"label_typography_typography";i:1;s:26:"label_typography_font_size";i:1;}s:19:"section_field_style";a:8:{s:16:"field_text_color";i:1;s:27:"field_typography_typography";i:1;s:26:"field_typography_font_size";i:1;s:28:"field_typography_font_weight";i:1;s:18:"field_border_width";i:1;s:19:"field_border_radius";i:1;s:22:"field_background_color";i:1;s:18:"field_border_color";i:1;}s:20:"section_button_style";a:7:{s:23:"button_background_color";i:1;s:28:"button_typography_typography";i:1;s:27:"button_typography_font_size";i:1;s:29:"button_typography_font_weight";i:1;s:32:"button_typography_text_transform";i:1;s:20:"button_border_radius";i:1;s:29:"button_background_hover_color";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:17:"section_structure";a:1:{s:9:"structure";i:2;}s:14:"section_layout";a:4:{s:16:"content_position";i:1;s:8:"html_tag";i:1;s:6:"layout";i:1;s:15:"stretch_section";i:1;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:2;s:7:"padding";i:3;}}s:5:"style";a:3:{s:18:"section_background";a:9:{s:21:"background_background";i:2;s:16:"background_color";i:2;s:18:"background_color_b";i:1;s:25:"background_gradient_angle";i:1;s:16:"background_image";i:1;s:19:"background_position";i:1;s:21:"background_attachment";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;}s:14:"section_border";a:3:{s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:1;s:24:"background_overlay_color";i:1;s:26:"background_overlay_color_b";i:1;s:26:"background_overlay_opacity";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"align";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:4:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;}}}}}');
INSERT INTO `wpiq_postmeta` VALUES
(14549, 10, 'litespeed-optimize-set', '150x150\n300x300\n768x0\n1024x1024\n1536x1536\n2048x2048'),
(14550, 10, 'litespeed-optimize-size', 'a:4:{s:9:"ori_total";i:6146;s:9:"ori_saved";i:1901;s:10:"webp_total";i:6146;s:10:"webp_saved";i:2610;}'),
(14551, 7, 'litespeed_vpi_list', 'a:1:{i:0;s:18:"cropped-NEW-LOGO-1";}'),
(14552, 7, 'litespeed_vpi_list_mobile', 'a:1:{i:0;s:18:"cropped-NEW-LOGO-1";}'),
(14575, 1883, '_elementor_edit_mode', 'builder'),
(14576, 1883, '_elementor_template_type', 'wp-page'),
(14577, 1883, '_elementor_version', '3.28.0'),
(14578, 1883, '_elementor_pro_version', '3.15.1'),
(14579, 1883, '_wp_page_template', 'elementor_header_footer'),
(14580, 1883, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14581, 1883, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14584, 1884, '_elementor_edit_mode', 'builder'),
(14585, 1884, '_elementor_template_type', 'wp-page'),
(14586, 1884, '_elementor_version', '3.28.0'),
(14587, 1884, '_elementor_pro_version', '3.15.1'),
(14588, 1884, '_wp_page_template', 'elementor_header_footer'),
(14589, 1884, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14590, 1884, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14593, 1885, '_elementor_edit_mode', 'builder'),
(14594, 1885, '_elementor_template_type', 'wp-page'),
(14595, 1885, '_elementor_version', '3.28.0'),
(14596, 1885, '_elementor_pro_version', '3.15.1'),
(14597, 1885, '_wp_page_template', 'elementor_header_footer'),
(14598, 1885, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":21,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14599, 1885, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14603, 1886, '_elementor_edit_mode', 'builder'),
(14604, 1886, '_elementor_template_type', 'wp-page'),
(14605, 1886, '_elementor_version', '3.28.0'),
(14606, 1886, '_elementor_pro_version', '3.15.1'),
(14607, 1886, '_wp_page_template', 'elementor_header_footer'),
(14608, 1886, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b222bef","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg","id":710,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler2.jpg","id":709,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler1.jpg","id":708,"alt":"","source":"library"},"_id":"acc506a"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler5.jpg","id":707,"alt":"","source":"library"},"_id":"75f2e1c"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler4.jpg","id":706,"alt":"","source":"library"},"_id":"874afeb"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]'),
(14611, 1887, '_elementor_edit_mode', 'builder'),
(14612, 1887, '_elementor_template_type', 'wp-page'),
(14613, 1887, '_elementor_version', '3.28.0'),
(14614, 1887, '_elementor_pro_version', '3.15.1'),
(14615, 1887, '_wp_page_template', 'elementor_header_footer'),
(14616, 1887, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b222bef","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg","id":710,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler2.jpg","id":709,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler1.jpg","id":708,"alt":"","source":"library"},"_id":"acc506a"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler5.jpg","id":707,"alt":"","source":"library"},"_id":"75f2e1c"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler4.jpg","id":706,"alt":"","source":"library"},"_id":"874afeb"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]');
INSERT INTO `wpiq_postmeta` VALUES
(14619, 1888, '_elementor_edit_mode', 'builder'),
(14620, 1888, '_elementor_template_type', 'wp-page'),
(14621, 1888, '_elementor_version', '3.28.0'),
(14622, 1888, '_elementor_pro_version', '3.15.1'),
(14623, 1888, '_wp_page_template', 'elementor_header_footer'),
(14624, 1888, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]'),
(14628, 1889, '_elementor_edit_mode', 'builder'),
(14629, 1889, '_elementor_template_type', 'wp-page'),
(14630, 1889, '_elementor_version', '3.28.0'),
(14631, 1889, '_elementor_pro_version', '3.15.1'),
(14632, 1889, '_wp_page_template', 'elementor_header_footer'),
(14633, 1889, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]');
INSERT INTO `wpiq_postmeta` VALUES
(14635, 1890, '_elementor_edit_mode', 'builder'),
(14636, 1890, '_elementor_template_type', 'wp-page'),
(14637, 1890, '_elementor_version', '3.28.0'),
(14638, 1890, '_elementor_pro_version', '3.15.1'),
(14639, 1890, '_wp_page_template', 'elementor_header_footer'),
(14640, 1890, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]'),
(14642, 1891, '_elementor_edit_mode', 'builder'),
(14643, 1891, '_elementor_template_type', 'wp-page'),
(14644, 1891, '_elementor_version', '3.28.0'),
(14645, 1891, '_elementor_pro_version', '3.15.1'),
(14646, 1891, '_wp_page_template', 'elementor_header_footer'),
(14647, 1891, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none","image_spacing":"custom"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]');
INSERT INTO `wpiq_postmeta` VALUES
(14660, 1893, '_elementor_edit_mode', 'builder'),
(14661, 1893, '_elementor_template_type', 'wp-page'),
(14662, 1893, '_elementor_version', '3.28.0'),
(14663, 1893, '_elementor_pro_version', '3.15.1'),
(14664, 1893, '_wp_page_template', 'elementor_header_footer'),
(14665, 1893, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none","image_spacing":"custom"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]'),
(14667, 1894, '_elementor_edit_mode', 'builder'),
(14668, 1894, '_elementor_template_type', 'wp-page'),
(14669, 1894, '_elementor_version', '3.28.0'),
(14670, 1894, '_elementor_pro_version', '3.15.1'),
(14671, 1894, '_wp_page_template', 'elementor_header_footer'),
(14672, 1894, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none","image_spacing":"custom"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"e19dbca","elType":"widget","settings":{"skin":"slideshow","slides":[{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg","id":382,"alt":"","source":"library"},"_id":"44c3913"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/Pu1.jpg","id":711,"alt":"","source":"library"},"_id":"a5e2d8f"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg","id":717,"alt":"","source":"library"},"_id":"07b1451"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete5.jpg","id":716,"alt":"","source":"library"},"_id":"1b2f550"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete4.jpg","id":715,"alt":"","source":"library"},"_id":"4c053b1"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete3.jpg","id":714,"alt":"","source":"library"},"_id":"35a0489"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete2.jpg","id":713,"alt":"","source":"library"},"_id":"35a4d66"},{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete1.jpg","id":712,"alt":"","source":"library"},"_id":"8ae2443"}],"slideshow_slides_per_view":"4","thumbs_ratio":"43","_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%"},"elements":[],"widgetType":"media-carousel"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]');
INSERT INTO `wpiq_postmeta` VALUES
(14674, 1895, '_elementor_edit_mode', 'builder'),
(14675, 1895, '_elementor_template_type', 'wp-page'),
(14676, 1895, '_elementor_version', '3.28.0'),
(14677, 1895, '_elementor_pro_version', '3.15.1'),
(14678, 1895, '_wp_page_template', 'elementor_header_footer'),
(14679, 1895, '_elementor_data', '[{"id":"1eeb4722","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"boiler","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"5e6d2d4d","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"8aefb62","elType":"widget","settings":{"title":"Boiler Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"1e407a41","elType":"widget","settings":{"editor":"<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"3cd20f6","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e8ccb6","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"e2a0159","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"79ba1a87","elType":"column","settings":{"_column_size":"50","background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"ee68403","elType":"widget","settings":{"wp_gallery":[{"id":710,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/boiler3.jpg"},{"id":382,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0090.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none","image_spacing":"custom"},"elements":[],"widgetType":"image-gallery"}],"isInner":""}],"isInner":""},{"id":"2f11677","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"steam","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"d31c5db","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":369,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0011.jpg"},"background_position":"center right","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"background_hover_transition":{"unit":"px","size":0,"sizes":[]}},"elements":[{"id":"031725a","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"c2b3ef3","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"e039081","elType":"widget","settings":{"title":"Steam Pipe Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"08849c5","elType":"widget","settings":{"editor":"<p>Steam is a common energy\\/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"f7176c7","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"e9ed8ef","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>\\n<p>- Calcium Silicate&nbsp;<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"24851dd","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"a5be8f2","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"cold","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-02.png","id":99},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"9db0014","elType":"column","settings":{"_column_size":50,"padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""},"_inline_size":null},"elements":[{"id":"0c32e95","elType":"widget","settings":{"title":"P.U Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"6b10d9f","elType":"widget","settings":{"editor":"<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"578065b","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"6e0dfd8","elType":"widget","settings":{"editor":"<p>- Polyurethane Foam (P.U)<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"c209f1e","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"b11fbab","elType":"column","settings":{"_column_size":50,"background_image":{"id":367,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0044.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"center","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"px","top":"0","right":"20","bottom":"0","left":"20","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]},"_inline_size":null},"elements":[{"id":"ba077da","elType":"widget","settings":{"wp_gallery":[{"id":717,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/12\\/complete6.jpg"}],"thumbnail_size":"full","gallery_columns":"1","gallery_display_caption":"none","gallery_link":"none","image_spacing":"custom"},"elements":[],"widgetType":"image-gallery"}],"isInner":false}],"isInner":""},{"id":"d14f521","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#0B0808E6","_element_id":"calcium","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"c2035ef","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":314,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-11-1.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"b2efb13","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false},{"id":"a028648","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"ce421b7","elType":"widget","settings":{"title":"Rockwool Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"50d2147","elType":"widget","settings":{"editor":"<p>Superlon insulation is engineered with the highest standard.\\u00a0Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market.\\u00a0<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"024adca","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"f130d64","elType":"widget","settings":{"editor":"<ul><li>Calcium Silicate<\\/li><li>Rockwool Slab<\\/li><\\/ul>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"left","align_tablet":"left","text_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"848a799","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434"},"elements":[],"widgetType":"button"}],"isInner":""}],"isInner":""},{"id":"f7828c1","elType":"section","settings":{"layout":"full_width","gap":"no","height":"min-height","custom_height":{"unit":"vh","size":50,"sizes":[]},"column_position":"stretch","content_position":"middle","overflow":"hidden","structure":"20","padding":{"unit":"%","top":"8","right":"8","bottom":"8","left":"8","isLinked":"1"},"_title":"404","custom_height_tablet":{"unit":"vh","size":"56","sizes":[]},"reverse_order_mobile":"reverse-mobile","reverse_order_tablet":"reverse-tablet","margin":{"unit":"%","top":"0","right":"0","bottom":"0","left":"0","isLinked":""},"custom_height_mobile":{"unit":"px","size":"575","sizes":[]},"_timestamp_":"v1MmpvN2hTK05rdURLc1dYSnFMa29LQT09","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","_element_id":"ducting","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"24d54ac","elType":"column","settings":{"_column_size":"50","padding":{"unit":"%","top":"0","right":"14","bottom":"0","left":"15.8","isLinked":""},"space_between_widgets":"0","_inline_size_tablet":"100","padding_tablet":{"unit":"%","top":"14","right":"7","bottom":"14","left":"7","isLinked":""},"padding_mobile":{"unit":"%","top":"8","right":"7","bottom":"20","left":"7","isLinked":""}},"elements":[{"id":"aecd771","elType":"widget","settings":{"title":"Ducting Insulation","title_color":"#55B434","align_mobile":"center","typography_typography":"custom","typography_font_family":"Roboto","typography_font_size_mobile":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","typography_line_height":{"unit":"em","size":1.5,"sizes":[]},"typography_line_height_mobile":{"unit":"em","size":3.1,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"4f9d618","elType":"widget","settings":{"editor":"<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"center","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"5639451","elType":"widget","settings":{"editor":"<h4>Materials:<\\/h4>\\n<p><\\/p>","text_color":"#55B434"},"elements":[],"widgetType":"text-editor"},{"id":"ea642e2","elType":"widget","settings":{"editor":"<p>- Rockwool<\\/p>","_padding":{"unit":"%","top":"0","right":"0","bottom":"6","left":"0","isLinked":""},"_padding_tablet":{"unit":"%","top":"0","right":"0","bottom":"4","left":"0","isLinked":""},"_padding_mobile":{"unit":"%","top":"0","right":"0","bottom":"5","left":"0","isLinked":""},"align_mobile":"justify","align_tablet":"left","text_color":"#000000","typography_typography":"custom","typography_font_family":"Prompt","typography_font_size":{"unit":"px","size":"16","sizes":[]},"typography_font_size_tablet":{"unit":"px","size":"15","sizes":[]},"typography_font_size_mobile":{"unit":"px","size":"14","sizes":[]},"typography_font_weight":"300","typography_line_height":{"unit":"px","size":"22","sizes":[]},"typography_line_height_tablet":{"unit":"px","size":"21","sizes":[]},"typography_line_height_mobile":{"unit":"px","size":"20","sizes":[]}},"elements":[],"widgetType":"text-editor"},{"id":"bde3c76","elType":"widget","settings":{"text":"Talk to Us","link":{"url":"https:\\/\\/wa.me\\/60102384742","is_external":"","nofollow":"","custom_attributes":""},"align":"left","size":"xs","selected_icon":{"value":"far fa-comments","library":"fa-regular"},"background_color":"#55B434","border_border":"solid"},"elements":[],"widgetType":"button"}],"isInner":""},{"id":"47534c6","elType":"column","settings":{"_column_size":"50","background_background":"classic","background_image":{"id":315,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/IMG-20201123-WA0061.jpg"},"background_position":"center center","background_repeat":"no-repeat","background_size":"cover","_inline_size_tablet":"100","background_position_tablet":"initial","content_position":"bottom","space_between_widgets_tablet":"15","space_between_widgets_mobile":"10","background_xpos_tablet":{"unit":"%","size":"0","sizes":[]},"background_ypos_tablet":{"unit":"%","size":"56","sizes":[]},"background_ypos_mobile":{"unit":"px","size":"-88","sizes":[]},"background_size_mobile":"cover","background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":"0.28","sizes":[]},"padding":{"unit":"%","top":"16","right":"16","bottom":"10","left":"16","isLinked":""},"padding_tablet":{"unit":"%","top":"25","right":"30","bottom":"25","left":"30","isLinked":""},"padding_mobile":{"unit":"%","top":"30","right":"0","bottom":"30","left":"0","isLinked":""},"content_position_mobile":"bottom","background_bg_width_mobile":{"unit":"%","size":"200","sizes":[]},"background_xpos_mobile":{"unit":"px","size":"-82","sizes":[]}},"elements":[{"id":"07be3d6","elType":"widget","settings":{"space_tablet":{"unit":"px","size":"0","sizes":[]}},"elements":[],"widgetType":"spacer"}],"isInner":false}],"isInner":""}]'),
(14681, 17, '_elementor_controls_usage', 'a:7:{s:7:"heading";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_title";a:1:{s:5:"title";i:5;}}s:5:"style";a:1:{s:19:"section_title_style";a:5:{s:11:"title_color";i:5;s:21:"typography_typography";i:5;s:22:"typography_font_family";i:5;s:22:"typography_font_weight";i:5;s:22:"typography_line_height";i:4;}}}}s:11:"text-editor";a:3:{s:5:"count";i:15;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:15;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:8:"_padding";i:10;}}s:5:"style";a:1:{s:13:"section_style";a:6:{s:10:"text_color";i:15;s:21:"typography_typography";i:10;s:22:"typography_font_family";i:10;s:20:"typography_font_size";i:10;s:22:"typography_font_weight";i:10;s:22:"typography_line_height";i:10;}}}}s:6:"button";a:3:{s:5:"count";i:5;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:4:{s:4:"text";i:5;s:4:"link";i:5;s:4:"size";i:5;s:13:"selected_icon";i:5;}}s:5:"style";a:1:{s:13:"section_style";a:3:{s:5:"align";i:5;s:16:"background_color";i:5;s:13:"border_border";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:10;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:8:"advanced";a:1:{s:16:"section_advanced";a:1:{s:7:"padding";i:10;}}s:6:"layout";a:1:{s:6:"layout";a:3:{s:21:"space_between_widgets";i:5;s:16:"content_position";i:5;s:12:"_inline_size";i:2;}}s:5:"style";a:2:{s:13:"section_style";a:6:{s:16:"background_image";i:5;s:19:"background_position";i:5;s:17:"background_repeat";i:5;s:15:"background_size";i:5;s:21:"background_background";i:3;s:27:"background_hover_transition";i:1;}s:26:"section_background_overlay";a:2:{s:29:"background_overlay_background";i:5;s:26:"background_overlay_opacity";i:5;}}}}s:13:"image-gallery";a:3:{s:5:"count";i:2;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_gallery";a:5:{s:10:"wp_gallery";i:2;s:14:"thumbnail_size";i:2;s:15:"gallery_columns";i:2;s:23:"gallery_display_caption";i:2;s:12:"gallery_link";i:2;}}s:5:"style";a:1:{s:22:"section_gallery_images";a:1:{s:13:"image_spacing";i:2;}}}}s:7:"section";a:3:{s:5:"count";i:5;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:8:{s:6:"layout";i:5;s:3:"gap";i:5;s:6:"height";i:5;s:13:"custom_height";i:5;s:15:"column_position";i:5;s:16:"content_position";i:5;s:8:"overflow";i:5;s:6:"_title";i:5;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:3:{s:7:"padding";i:5;s:6:"margin";i:5;s:11:"_element_id";i:5;}s:19:"_section_responsive";a:2:{s:20:"reverse_order_mobile";i:3;s:20:"reverse_order_tablet";i:3;}}s:5:"style";a:1:{s:18:"section_background";a:7:{s:21:"background_background";i:5;s:16:"background_image";i:3;s:19:"background_position";i:3;s:21:"background_attachment";i:3;s:17:"background_repeat";i:3;s:15:"background_size";i:3;s:16:"background_color";i:2;}}}}s:6:"spacer";a:3:{s:5:"count";i:3;s:15:"control_percent";i:0;s:8:"controls";a:0:{}}}'),
(14682, 1896, '_elementor_edit_mode', 'builder'),
(14683, 1896, '_elementor_template_type', 'wp-page'),
(14684, 1896, '_elementor_version', '3.28.0'),
(14685, 1896, '_elementor_pro_version', '3.15.1'),
(14686, 1896, '_wp_page_template', 'elementor_header_footer'),
(14687, 1896, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":21,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14688, 1896, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14690, 1897, '_elementor_edit_mode', 'builder'),
(14691, 1897, '_elementor_template_type', 'wp-page'),
(14692, 1897, '_elementor_version', '3.28.0'),
(14693, 1897, '_elementor_pro_version', '3.15.1'),
(14694, 1897, '_wp_page_template', 'elementor_header_footer'),
(14695, 1897, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":21,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14696, 1897, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14698, 1898, '_elementor_edit_mode', 'builder'),
(14699, 1898, '_elementor_template_type', 'wp-page'),
(14700, 1898, '_elementor_version', '3.28.0'),
(14701, 1898, '_elementor_pro_version', '3.15.1'),
(14702, 1898, '_wp_page_template', 'elementor_header_footer'),
(14703, 1898, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14704, 1898, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14707, 1899, '_elementor_edit_mode', 'builder'),
(14708, 1899, '_elementor_template_type', 'wp-page'),
(14709, 1899, '_elementor_version', '3.28.0'),
(14710, 1899, '_elementor_pro_version', '3.15.1'),
(14711, 1899, '_wp_page_template', 'elementor_header_footer'),
(14712, 1899, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14713, 1899, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14715, 1900, '_elementor_edit_mode', 'builder'),
(14716, 1900, '_elementor_template_type', 'wp-page'),
(14717, 1900, '_elementor_version', '3.28.0'),
(14718, 1900, '_elementor_pro_version', '3.15.1'),
(14719, 1900, '_wp_page_template', 'elementor_header_footer'),
(14720, 1900, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14721, 1900, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14723, 1901, '_elementor_edit_mode', 'builder'),
(14724, 1901, '_elementor_template_type', 'wp-page'),
(14725, 1901, '_elementor_version', '3.28.0'),
(14726, 1901, '_elementor_pro_version', '3.15.1'),
(14727, 1901, '_wp_page_template', 'elementor_header_footer'),
(14728, 1901, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14729, 1901, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14733, 1902, '_elementor_edit_mode', 'builder'),
(14734, 1902, '_elementor_template_type', 'wp-page'),
(14735, 1902, '_elementor_version', '3.28.0'),
(14736, 1902, '_elementor_pro_version', '3.15.1'),
(14737, 1902, '_wp_page_template', 'elementor_header_footer'),
(14738, 1902, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14739, 1902, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14741, 1903, '_elementor_edit_mode', 'builder'),
(14742, 1903, '_elementor_template_type', 'wp-page'),
(14743, 1903, '_elementor_version', '3.28.0'),
(14744, 1903, '_elementor_pro_version', '3.15.1'),
(14745, 1903, '_wp_page_template', 'elementor_header_footer'),
(14746, 1903, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14747, 1903, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14749, 1904, '_elementor_edit_mode', 'builder'),
(14750, 1904, '_elementor_template_type', 'wp-page'),
(14751, 1904, '_elementor_version', '3.28.0'),
(14752, 1904, '_elementor_pro_version', '3.15.1'),
(14753, 1904, '_wp_page_template', 'elementor_header_footer'),
(14754, 1904, '_elementor_data', '[{"id":"d170fbf","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"-85","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"z_index":1,"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6c0b3323","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"isInner":false}],"isInner":false},{"id":"42897f5e","elType":"section","settings":{"layout":"full_width","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3e16213f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"7f38a047","elType":"widget","settings":{"slides":[{"heading":"OM SRI SLB ","description":"INSULATION SPECIALIST SINCE 2000","button_text":"GET QUOTE","background_color":"#833ca3","_id":"14f7dbc","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/1-3-scaled.webp","id":818,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"link_click":"button"},{"heading":"WE INSTALL","description":"Our skilled team ensures\\nflawless installation","button_text":"OUR PROJECT","background_color":"#1abc9c","_id":"6158f33","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/2-1-scaled.webp","id":819,"alt":"","source":"library"},"link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""}},{"heading":"WE SUPPLY","description":"A Quality Cutting-Edge Materials ","button_text":"Now More","background_color":"#4054b2","_id":"e9c9c60","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/3-scaled.webp","id":820,"alt":"","source":"library"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Give+me+detail+about+Item+supply+","is_external":"","nofollow":"","custom_attributes":""}}],"slides_height":{"unit":"px","size":600,"sizes":[]},"autoplay_speed":4000,"navigation":"dots","dots_size":{"unit":"px","size":5,"sizes":[]}},"elements":[],"widgetType":"slides"},{"id":"79ef9973","elType":"widget","settings":{"ekit_button_middle_text":"Or","ekit_double_button_align":"center","ekit_button_one_text":"OUR SERVICES","ekit_button_one_link":{"url":"https:\\/\\/omsrislb.my\\/services\\/","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_button_two_text":"WHAT WE SUPPLY","ekit_button_two_link":{"url":"#supply","is_external":false,"nofollow":false,"custom_attributes":""},"ekit_double_button_one_color":"#FFFFFF","ekit_double_button_one_typography_typography":"custom","ekit_double_button_one_typography_font_family":"Poppins","ekit_double_button_one_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_one_typography_font_weight":"600","ekit_double_button_one_background_background":"classic","ekit_double_button_one_background_color":"#55B434","ekit_double_button_one_hover_background_background":"gradient","ekit_double_button_one_hover_background_color":"#C9C9C9","ekit_double_button_one_hover_background_color_b":"#55B434","ekit_double_button_two_typography_typography":"custom","ekit_double_button_two_typography_font_family":"Poppins","ekit_double_button_two_typography_font_size":{"unit":"px","size":20,"sizes":[]},"ekit_double_button_two_typography_font_weight":"600","ekit_double_button_two_background_background":"classic","ekit_double_button_two_background_color":"#717171","ekit_double_button_two_hover_background_background":"gradient","ekit_double_button_two_hover_background_color":"#909090","ekit_double_button_two_hover_background_color_b":"#55B434","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"ekit_button_one_icons__switch":""},"elements":[],"widgetType":"elementskit-dual-button"}],"isInner":false}],"isInner":false},{"id":"5c029060","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","alt":"","source":"library"},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"150","right":"0","bottom":"150","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_opacity":{"unit":"px","size":0.92,"sizes":[]},"height":"min-height","margin":{"unit":"px","top":"-45","right":0,"bottom":"0","left":0,"isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","custom_height":{"unit":"px","size":0,"sizes":[]},"background_color":"#FFFFFF","background_color_stop":{"unit":"%","size":14,"sizes":[]},"background_color_b":"#0097B2","content_width_mobile":{"unit":"px","size":500,"sizes":[]},"custom_height_mobile":{"unit":"px","size":0,"sizes":[]},"background_color_stop_mobile":{"unit":"%","size":67},"background_color_b_stop_mobile":{"unit":"%","size":100},"background_gradient_type":"radial","background_gradient_angle_mobile":{"unit":"deg","size":121},"background_gradient_position_mobile":"top center"},"elements":[{"id":"4e0e31e3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"983a96b","elType":"widget","settings":{"title":"WHO WE ARE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":42,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","typography_font_size_mobile":{"unit":"px","size":43,"sizes":[]},"text_shadow_text_shadow_type":"yes","text_shadow_text_shadow":{"horizontal":0,"vertical":0,"blur":6,"color":"rgba(255, 255, 255, 0.84)"},"_ob_use_harakiri":""},"elements":[],"widgetType":"heading"},{"id":"49459cdc","elType":"widget","settings":{"editor":"<p>INSULATION SPECIALIST SINCE 2000<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"300","_margin_mobile":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"text_color":"#0492ae","typography_line_height":{"unit":"em","size":2.9,"sizes":[]},"_margin":{"unit":"px","top":"50","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_position":"absolute"},"elements":[],"widgetType":"text-editor"},{"id":"257e089","elType":"container","settings":{"container_type":"grid","grid_columns_grid":{"unit":"fr","size":2,"sizes":[]},"grid_rows_grid":{"unit":"fr","size":1,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","presetTitle":"Grid","presetIcon":"eicon-container-grid","margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"margin_mobile":{"unit":"px","top":"050","right":"0","bottom":"0","left":"0","isLinked":false},"background_background":"gradient","background_color":"#CACACA","background_color_b":"#FFFFFF","border_radius":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"box_shadow_box_shadow_type":"yes","box_shadow_box_shadow":{"horizontal":9,"vertical":39,"blur":65,"spread":16,"color":"rgba(0,0,0,0.5)"}},"elements":[{"id":"d845c42","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENGINEERING SDN BHD (1600769-H)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"Presently Running","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_icon_align":"right","ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","ekit_image_box_typography_group_typography":"custom","__globals__":{"ekit_image_box_title_typography_description_typography":"","ekit_image_box_heading_color_description":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"},{"id":"7710891","elType":"widget","settings":{"ekit_image_box_image":{"url":"","id":"","size":""},"ekit_image_box_title_text":"OM SRI SLB ENTRPRRISE (001290233-V)","ekit_image_box_title_size":"h2","ekit_image_box_description_text":"\\nFormally Know As","ekit_image_box_btn_text":"TALK WITH US","ekit_image_box_icons__switch":"","ekit_image_box_title_typography_typography":"custom","ekit_image_box_title_typography_font_size":{"unit":"px","size":34,"sizes":[]},"ekit_image_box_heading_color":"#2AA261","ekit_image_box_title_typography_description_typography":"custom","ekit_image_box_btn_background_group_background":"classic","ekit_image_box_btn_background_group_color":"#2AA261","ekit_image_box_btn_url":{"url":"https:\\/\\/wa.me\\/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I''m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%0A%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%0A%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%0A%E2%80%A2%20Tank%20Insulation%0A%E2%80%A2%20Boiler%20Insulation%0A%E2%80%A2%20Pipe%20Insulation%20Repair%0A%E2%80%A2%20Supply%20of%20Insulation%20Materials","is_external":"","nofollow":"","custom_attributes":""},"ekit_image_box_title_typography_font_size_mobile":{"unit":"px","size":17,"sizes":[]},"ekit_image_box_title_bottom_space_description":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":"true"},"ekit_image_box_title_typography_description_font_family":"Roboto","ekit_image_box_title_typography_description_font_weight":"400","ekit_image_box_heading_color_description":"#007911","__globals__":{"ekit_image_box_title_typography_description_typography":""},"ekit_image_box_heading_color_hover":"#0492af"},"elements":[],"widgetType":"elementskit-image-box"}],"isInner":false}],"isInner":false}],"isInner":false},{"id":"fd8a460","elType":"section","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic"},"elements":[{"id":"72796ff3","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"55eb76fa","elType":"widget","settings":{"anchor":"service"},"elements":[],"widgetType":"menu-anchor"},{"id":"6575b811","elType":"widget","settings":{"title":"OUR EXPERTISE","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"42b4541b","elType":"widget","settings":{"editor":"<p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><strong><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Your Complete Insulation Solution<\\/span><\\/strong><\\/p><p class=\\"_04xlpA direction-ltr align-justify para-style-body\\"><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!<\\/span><\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"}],"isInner":false}],"isInner":false},{"id":"3bf3605e","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_mobile":"hidden-mobile"},"elements":[{"id":"1702bd6f","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"2bf74eac","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"248dc6a8","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"5a057f6d","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"46792a55","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5dc4db5f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}},"motion_fx_translateY_direction":"negative","motion_fx_rotateZ_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"48cf4c02","elType":"column","settings":{"_column_size":33,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"50876eca","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"4231b7e9","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"2bbb6ea2","elType":"section","settings":{"gap":"narrow","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_image_mobile":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/NEW-LOGO-1.jpg","id":1149,"alt":"","source":"library"},"background_position_mobile":"top center","background_repeat_mobile":"repeat","background_size_mobile":"initial","background_bg_width_mobile":{"unit":"px","size":449,"sizes":[]},"background_motion_fx_motion_fx_scrolling":"yes","background_motion_fx_mouseTrack_effect":"yes","background_motion_fx_mouseTrack_speed":{"unit":"px","size":4,"sizes":[]},"background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/WEBSITE-OMSRI-SLB-1.jpg","id":1148,"alt":"","source":"library"},"background_position":"top center","background_size":"initial","background_bg_width":{"unit":"%","size":59,"sizes":[]},"background_repeat":"repeat","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"abbef1","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_column_vert_align_mobile":"inherit","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":45,"end":58}},"motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"4a5a6b65","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/15.webp","id":1254,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#boiler","is_external":"","nofollow":"","custom_attributes":""},"image_size":"full","motion_fx_motion_fx_scrolling":"yes","_animation_mobile":"none","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_mouseTrack_speed":{"unit":"px","size":0,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":51,"end":100}}},"elements":[],"widgetType":"image"},{"id":"54e0f3df","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-3.webp","id":1256,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#ducting","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5ee915c0","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/19.webp","id":1258,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#calcium","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"6c992d61","elType":"column","settings":{"_column_size":50,"_inline_size":null,"_inline_size_mobile":50,"_ob_bbad_is_stalker":"","_ob_teleporter_use":"","motion_fx_motion_fx_scrolling":"yes"},"elements":[{"id":"3e1cc965","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-2.webp","id":1255,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#steam","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"full","_element_width_mobile":"inherit","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_tilt_direction":"negative","motion_fx_rotateZ_direction":"negative","motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"589840e6","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-3.webp","id":1257,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com\\/services\\/#cold","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_direction":"negative","image_size":"full","motion_fx_translateY_effect":"yes","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"},{"id":"5d0e030f","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/20.webp","id":1259,"alt":"","source":"library","size":""},"link_to":"custom","link":{"url":"omsrislb.com","is_external":"","nofollow":"","custom_attributes":""},"motion_fx_motion_fx_scrolling":"yes","image_size":"full","_ob_perspektive_use":"","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":62}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_speed":{"unit":"px","size":8.4,"sizes":[]},"motion_fx_rotateZ_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":83}},"motion_fx_translateY_effect":"yes","motion_fx_rotateZ_effect":"yes","motion_fx_rotateZ_speed":{"unit":"px","size":7,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"7938463d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","padding":{"unit":"px","top":"010","right":"0","bottom":"10","left":"0","isLinked":false},"background_overlay_background":"classic","background_overlay_color":"#FFFFFF","background_overlay_opacity":{"unit":"px","size":0.54,"sizes":[]},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","gap":"no","custom_height":{"unit":"px","size":0,"sizes":[]},"background_image_mobile":{"url":"","id":"","size":"","alt":"","source":"library"},"__globals__":{"background_color":""}},"elements":[{"id":"65df2fe","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center"},"elements":[{"id":"256c117e","elType":"widget","settings":{"space":{"unit":"px","size":144,"sizes":[]},"_ob_spacerat_use":""},"elements":[],"widgetType":"spacer"},{"id":"26854f5f","elType":"widget","settings":{"editor":"<p>SEEKING POTENTIAL SUPPLIERS?<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"2902684f","elType":"widget","settings":{"title":"WE SUPPLY<br>ALL THE INSULATION EQUIPMENT","align":"center","title_color":"#189E83","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"50","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"header_size":"h1","motion_fx_motion_fx_scrolling":"yes","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"},{"id":"620cc184","elType":"widget","settings":{"anchor":"supply"},"elements":[],"widgetType":"menu-anchor"}],"isInner":false}],"isInner":false},{"id":"45b2fa24","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"hide_mobile":"hidden-mobile","boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden"},"elements":[{"id":"227eefa","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"8bd6130","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7c2e0385","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b04dc90","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"4930f0b1","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"3087bcc7","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"75b953ac","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_overlay_background":"gradient","background_overlay_color_stop":{"unit":"%","size":53,"sizes":[]},"background_overlay_color_b":"","background_overlay_color_b_stop":{"unit":"%","size":78,"sizes":[]},"boxed_width_mobile":{"unit":"px","size":500,"sizes":[]},"flex_direction":"row","flex_align_items":"stretch","flex_gap":{"size":10,"unit":"px"},"boxed_width":{"unit":"px","size":1191,"sizes":[]},"min_height":{"unit":"px","size":0,"sizes":[]},"flex_justify_content":"center","overflow":"hidden","hide_desktop":"hidden-desktop","hide_tablet":"hidden-tablet"},"elements":[{"id":"46492811","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"35f648cf","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/17-4.webp","id":1279,"alt":"","source":"library","size":""},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":48,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"image_size":"medium_large","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"7183e106","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"2f505360","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/18-4.webp","id":1278,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative","motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateX_effect":"yes","motion_fx_translateX_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":true},{"id":"1f5d08f2","elType":"container","settings":{"_column_size":33,"width":{"size":null,"unit":"%"},"content_width":"full","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"5214d2bd","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/16-3.webp","id":1277,"alt":"","source":"library","size":""},"image_size":"medium_large","motion_fx_motion_fx_scrolling":"yes","motion_fx_translateY_effect":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}},"motion_fx_translateY_affectedRange":{"unit":"%","size":"","sizes":{"start":50,"end":100}}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":false},{"id":"5d6be263","elType":"section","settings":{"layout":"full_width","height":"min-height","custom_height":{"unit":"px","size":212,"sizes":[]},"stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","background_background":"classic","background_color":"#0097B2","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"margin_mobile":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding_mobile":{"unit":"px","top":"30","right":"0","bottom":"30","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"478e6296","elType":"column","settings":{"_column_size":50,"_inline_size":70,"content_position":"center","align":"center","content_position_mobile":"center","align_mobile":"center","margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"6cbba1e2","elType":"widget","settings":{"selected_icon":{"value":"icon icon-smartphone1","library":"ekiticons"},"align":"left","primary_color":"#FFFFFF","_element_width":"initial","align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"20","left":"0","isLinked":false}},"elements":[],"widgetType":"icon"},{"id":"6da3f722","elType":"widget","settings":{"title":"take a look our premier clients","align":"left","title_color":"#F0F1F1","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":30,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"30","isLinked":false},"_element_width":"initial","align_mobile":"center","typography_font_size_mobile":{"unit":"px","size":30,"sizes":[]},"typography_text_transform":"uppercase","text_shadow_text_shadow_type":"yes"},"elements":[],"widgetType":"heading"}],"isInner":false},{"id":"5541af1c","elType":"column","settings":{"_column_size":50,"_inline_size":30,"content_position":"center","align":"center"},"elements":[{"id":"6d88a487","elType":"widget","settings":{"text":"PORTFOLIO","align":"left","selected_icon":{"value":"icon icon-right-arrow","library":"ekiticons"},"icon_align":"right","icon_indent":{"unit":"px","size":9,"sizes":[]},"typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"500","typography_text_transform":"uppercase","background_color":"#92D40D","border_radius":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"button_background_hover_color":"#A1A1A1","align_mobile":"center","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"__globals__":{"button_text_color":"globals\\/colors?id=secondary"},"button_box_shadow_box_shadow_type":"yes","button_box_shadow_box_shadow":{"horizontal":-10,"vertical":10,"blur":10,"spread":0,"color":"rgba(0,0,0,0.5)"},"_ob_butterbutton_use_it":""},"elements":[],"widgetType":"button"}],"isInner":false}],"isInner":false},{"id":"36e33ae7","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"63c4f474","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-1.webp","id":1456,"size":"","alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"19e6cc04","elType":"container","settings":{"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"gradient","background_image":{"url":"","id":"","size":"","alt":"","source":"library"}},"elements":[{"id":"168e23b","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"6a739ff6","elType":"widget","settings":{"carousel":[{"id":1469,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/36.webp"},{"id":1470,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/35.webp"},{"id":1471,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/34.webp"},{"id":1472,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/33.webp"},{"id":1473,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/32.webp"},{"id":1474,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/31.webp"},{"id":1475,"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/30.webp"}],"thumbnail_size":"full","slides_to_show":"2","link_to":"custom","link":{"url":"https:\\/\\/omsrislb.my\\/project-list\\/","is_external":"","nofollow":"","custom_attributes":""},"autoplay_speed":3000,"_ob_kontrolz_nav_pos_y_alt":"50% - 25px","_ob_kontrolz_nav_pos_x_prev_alt":"0%","_ob_kontrolz_nav_pos_x_next_alt":"0%","slides_to_show_mobile":"1","carousel_name":"Image Carousel"},"elements":[],"widgetType":"image-carousel"}],"isInner":false},{"id":"2810825e","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-08.jpg","id":143},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"2818ec21","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center"},"elements":[{"id":"32d2d13c","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"20","margin":{"unit":"px","top":"100","right":0,"bottom":"100","left":0,"isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"361c03d8","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"374dde2d","elType":"widget","settings":{"editor":"<p><b>about us<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","typography_text_transform":"uppercase"},"elements":[],"widgetType":"text-editor"},{"id":"46738a18","elType":"widget","settings":{"title":"<span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years<\\/span>","align":"left","title_color":"#FFFFFF","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":25,"sizes":[]},"typography_font_weight":"600","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_element_width":"initial","typography_line_height":{"unit":"em","size":1.3,"sizes":[]}},"elements":[],"widgetType":"heading"},{"id":"3b1e4c2e","elType":"widget","settings":{"icon_list":[{"text":"We are located in Ijok, Kuala Selangor ","icon":"","_id":"a3a66d7","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"}},{"text":"Founder of this company is Mr. Muniandy Arunasalam","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"fb989a2"},{"text":"Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. ","icon":"","selected_icon":{"value":"icon icon-checked1","library":"ekiticons"},"_id":"4c4c563"}],"space_between":{"unit":"px","size":9},"icon_size":{"unit":"px","size":15},"text_color":"#ffffff","text_indent":{"unit":"px","size":7},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":14},"icon_typography_font_weight":"300","icon_typography_font_size_tablet":{"unit":"px","size":13},"icon_align":"left","icon_color":"#55B434","icon_self_align":"left","_margin":{"unit":"px","top":"20","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"icon-list"},{"id":"e179aaa","elType":"widget","settings":{"editor":"<p><b>Objectives<\\/b><\\/p>","align":"left","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400","text_color":"#55B434","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"text-editor"},{"id":"4f607863","elType":"widget","settings":{"editor":"<p><span class=\\"OYPEnA text-decoration-none text-strikethrough-none\\">Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.<\\/span><\\/p>","align":"left","text_color":"#ffffff","typography_typography":"custom","typography_font_size":{"unit":"px","size":14,"sizes":[]},"typography_font_weight":"300","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"text-editor"}],"isInner":true},{"id":"1c8f89b3","elType":"column","settings":{"_column_size":50,"_inline_size":null,"content_position":"center","align":"center","padding":{"unit":"px","top":"30","right":"30","bottom":"30","left":"30","isLinked":true}},"elements":[{"id":"66c12081","elType":"widget","settings":{"image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2023\\/08\\/CLIENTS-LOGO-2-2.webp","id":1559,"alt":"","source":"library","size":""}},"elements":[],"widgetType":"image"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"1c24e830","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_color":"#189E83","shape_divider_bottom_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_bottom_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"20","right":"0","bottom":"20","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"dcd28dd","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1b01920a","elType":"section","settings":{"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"6041325d","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3f75d47","elType":"widget","settings":{"ending_number":30,"title":"Years of Experience","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1db8ccde","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"730d35c6","elType":"widget","settings":{"ending_number":25,"title":"Premier Clients","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400","counter-title":"Premier Clients"},"elements":[],"widgetType":"counter"}],"isInner":true},{"id":"1103ecbd","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"3105baba","elType":"widget","settings":{"ending_number":99,"title":"Complete Total Projects","number_color":"#F1F1F1","typography_number_typography":"custom","typography_number_font_family":"Poppins","typography_number_font_weight":"600","title_color":"#FFFFFF","typography_title_typography":"custom","typography_title_font_family":"Poppins","typography_title_font_size":{"unit":"px","size":15,"sizes":[]},"typography_title_font_weight":"400"},"elements":[],"widgetType":"counter"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"652aac0d","elType":"section","settings":{"layout":"full_width","content_position":"middle","stretch_section":"section-stretched","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","background_background":"classic","background_image":{"url":"https:\\/\\/omsrislb.my\\/wp-content\\/uploads\\/2021\\/01\\/asset-03.png","id":168},"background_position":"center center","background_attachment":"fixed","background_repeat":"no-repeat","background_size":"cover","shape_divider_top":"triangle","shape_divider_top_color":"#1E590A","shape_divider_top_width":{"unit":"%","size":10,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":50,"sizes":[]},"margin":{"unit":"px","top":"-3","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"100","right":"0","bottom":"250","left":"0","isLinked":false},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"4de7216f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"content_position":"center","align":"center","margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"5b5b15c1","elType":"widget","settings":{"editor":"<p>WHAT WE DO<\\/p>","align":"center","typography_typography":"custom","typography_font_family":"Poppins","typography_font_weight":"400"},"elements":[],"widgetType":"text-editor"},{"id":"5c0ff04f","elType":"widget","settings":{"title":"What Our Clients Say","align":"center","title_color":"#000000","typography_typography":"custom","typography_font_family":"Poppins","typography_font_size":{"unit":"px","size":40,"sizes":[]},"typography_font_weight":"600","typography_text_transform":"uppercase","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_element_width":"initial","_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"heading"},{"id":"5e6c0c97","elType":"section","settings":{"content_position":"middle","_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":true},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_ob_bbad_inner_width":"100%","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"411dc17b","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"1ae034ab","elType":"widget","settings":{"slides":[{"content":"They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \\n\\n","name":"Belala Philips","title":"Service Woman","_id":"bec1d7f"},{"content":"A real professional engineers and easy to work with. It\\u2019s a correct decision to contact Om Sri SLB for installing insulation in my factory.\\n\\n","name":"Maimai Chow","title":"Business Woman","_id":"c6d118c"}],"skin":"bubble","slides_per_view":"2","slides_to_scroll":"2","show_arrows":"","content_color":"#FFFFFF","content_typography_typography":"custom","content_typography_font_family":"Poppins","content_typography_font_size":{"unit":"px","size":15,"sizes":[]},"content_typography_font_weight":"400","name_color":"#55B434","name_typography_typography":"custom","name_typography_font_family":"Poppins","name_typography_font_weight":"600","title_color":"#A2A2A2","title_typography_typography":"custom","title_typography_font_family":"Poppins","title_typography_font_weight":"400","background_color":"#189E83","layout":"image_above"},"elements":[],"widgetType":"testimonial-carousel"}],"isInner":true}],"isInner":true}],"isInner":false}],"isInner":false},{"id":"341c345","elType":"section","settings":{"content_width":{"unit":"px","size":1600,"sizes":[]},"_ob_glider_nav_pos_y_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%","structure":"30","background_background":"classic","background_color":"#000000","ekit_has_onepagescroll_dot":"","_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px"},"elements":[{"id":"0f5b2e1","elType":"column","settings":{"_column_size":33,"_inline_size":36.823,"content_position":"center"},"elements":[{"id":"8227977","elType":"widget","settings":{"view":"inline","icon_list":[{"text":"Mon - Fri: 9:00 - 18:30","icon":"fa fa-clock-o","_id":"fb1feea","selected_icon":{"value":"far fa-clock","library":"fa-regular"},"__fa4_migrated":{"selected_icon":true}}],"space_between":{"unit":"px","size":28},"icon_color":"#ffffff","text_color":"#ffffff","text_indent":{"unit":"px","size":11},"icon_typography_typography":"custom","icon_typography_font_size":{"unit":"px","size":12},"space_between_mobile":{"unit":"px","size":50},"icon_typography_line_height_mobile":{"unit":"em","size":2},"hide_mobile":"hidden-phone","icon_self_align_mobile":"center","_margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"icon-list"}],"isInner":false},{"id":"84d2421","elType":"column","settings":{"_column_size":33,"_inline_size":24.66,"content_position":"center"},"elements":[],"isInner":false},{"id":"619fdc5","elType":"column","settings":{"_column_size":33,"_inline_size":38.155},"elements":[{"id":"5586bdf","elType":"widget","settings":{"social_icon_list":[{"_id":"695f0c8","social_icon":{"value":"fab fa-whatsapp","library":"fa-brands"},"link":{"url":"https:\\/\\/api.whatsapp.com\\/send?phone=60102384741&text=Hi+Can+I+know+more+about+OM+SRI+SLB+","is_external":"true","nofollow":"","custom_attributes":""}},{"_id":"67572c5","social_icon":{"value":"icon icon-email","library":"ekiticons"},"link":{"url":"mailto:omsrislb99@gmail.com","is_external":"true","nofollow":"","custom_attributes":""}},{"social":"fa fa-google-plus","_id":"96bd910","social_icon":{"value":"fas fa-map-marker-alt","library":"fa-solid"},"__fa4_migrated":{"social_icon":true},"link":{"url":"https:\\/\\/www.google.com\\/maps\\/dir\\/3.1385059,101.6869895\\/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor\\/@3.2200861,101.3968719,11z\\/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu","is_external":"true","nofollow":"","custom_attributes":""}}],"align":"right","icon_color":"custom","icon_primary_color":"rgba(0,0,0,0)","icon_secondary_color":"#ffffff","icon_size":{"unit":"px","size":14},"align_mobile":"center","_element_width":"initial","_element_custom_width":{"unit":"%","size":98.628},"_flex_size":"none"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false},{"id":"c49dad9","elType":"container","settings":{"flex_direction":"row","flex_gap":{"unit":"px","size":0},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"cc3110a","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true},{"id":"1e0aca2","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"50"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[{"id":"b5165e4","elType":"widget","settings":{"text":"Divider","color":"#0000001F","custom_css":"display: flex;\\njustify-content: center;\\nalign-items: center;"},"elements":[],"widgetType":"divider"},{"id":"d80e17d","elType":"widget","settings":{"title":"Get In touch","title_color":"#000000","typography_typography":"custom","typography_font_size":{"unit":"px","size":65},"align_mobile":"center","typography_font_size_tablet":{"unit":"px","size":45},"align":"center"},"elements":[],"widgetType":"heading"},{"id":"9e2ff35","elType":"widget","settings":{"shortcode":"[whatsapp_contact_form]\\n","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[],"widgetType":"shortcode"},{"id":"78ff515","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"},{"id":"5c9c933","elType":"widget","settings":{"text":"Divider","color":"#0000001F"},"elements":[],"widgetType":"divider"}],"isInner":true},{"id":"73cb4d4","elType":"container","settings":{"flex_direction":"column","content_width":"full","width":{"unit":"%","size":"25"},"_ob_glider_nav_pos_y_prev_alt":"50% - 25px","_ob_glider_nav_pos_y_next_alt":"50% - 25px","_ob_glider_nav_pos_x_prev_alt":"0%","_ob_glider_nav_pos_x_next_alt":"0%"},"elements":[],"isInner":true}],"isInner":false}]');
INSERT INTO `wpiq_postmeta` VALUES
(14755, 1904, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(14757, 7, '_elementor_controls_usage', 'a:20:{s:6:"column";a:3:{s:5:"count";i:24;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:24;s:16:"content_position";i:10;s:5:"align";i:8;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:2:{s:6:"margin";i:2;s:7:"padding";i:3;}s:15:"section_effects";a:3:{s:34:"motion_fx_translateY_affectedRange";i:3;s:34:"motion_fx_translateX_affectedRange";i:3;s:29:"motion_fx_motion_fx_scrolling";i:5;}}}}s:7:"section";a:3:{s:5:"count";i:15;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:7:{s:6:"layout";i:8;s:16:"content_position";i:8;s:15:"stretch_section";i:7;s:6:"height";i:2;s:13:"custom_height";i:3;s:3:"gap";i:3;s:13:"content_width";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:6;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:3:{s:6:"margin";i:8;s:7:"padding";i:8;s:7:"z_index";i:1;}s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}s:5:"style";a:3:{s:18:"section_background";a:14:{s:21:"background_background";i:10;s:16:"background_image";i:5;s:19:"background_position";i:6;s:21:"background_attachment";i:4;s:17:"background_repeat";i:6;s:15:"background_size";i:6;s:16:"background_color";i:4;s:21:"background_color_stop";i:1;s:18:"background_color_b";i:1;s:24:"background_gradient_type";i:1;s:40:"background_motion_fx_motion_fx_scrolling";i:2;s:38:"background_motion_fx_mouseTrack_effect";i:2;s:37:"background_motion_fx_mouseTrack_speed";i:2;s:19:"background_bg_width";i:2;}s:26:"section_background_overlay";a:3:{s:29:"background_overlay_background";i:2;s:26:"background_overlay_opacity";i:2;s:24:"background_overlay_color";i:1;}s:21:"section_shape_divider";a:6:{s:17:"shape_divider_top";i:2;s:23:"shape_divider_top_width";i:2;s:24:"shape_divider_top_height";i:2;s:26:"shape_divider_bottom_width";i:1;s:27:"shape_divider_bottom_height";i:1;s:23:"shape_divider_top_color";i:1;}}}}s:6:"slides";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:2:{s:6:"slides";i:1;s:13:"slides_height";i:1;}s:22:"section_slider_options";a:2:{s:14:"autoplay_speed";i:1;s:10:"navigation";i:1;}}s:5:"style";a:1:{s:24:"section_style_navigation";a:1:{s:9:"dots_size";i:1;}}}}s:23:"elementskit-dual-button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:3:{s:7:"content";a:3:{s:18:"dualbutton_content";a:1:{s:24:"ekit_double_button_align";i:1;}s:23:"ekit_button_one_content";a:3:{s:20:"ekit_button_one_text";i:1;s:20:"ekit_button_one_link";i:1;s:29:"ekit_button_one_icons__switch";i:1;}s:23:"ekit_button_two_content";a:2:{s:20:"ekit_button_two_text";i:1;s:20:"ekit_button_two_link";i:1;}}s:5:"style";a:2:{s:36:"ekit_double_button_one_style_section";a:10:{s:28:"ekit_double_button_one_color";i:1;s:44:"ekit_double_button_one_typography_typography";i:1;s:45:"ekit_double_button_one_typography_font_family";i:1;s:43:"ekit_double_button_one_typography_font_size";i:1;s:45:"ekit_double_button_one_typography_font_weight";i:1;s:44:"ekit_double_button_one_background_background";i:1;s:39:"ekit_double_button_one_background_color";i:1;s:50:"ekit_double_button_one_hover_background_background";i:1;s:45:"ekit_double_button_one_hover_background_color";i:1;s:47:"ekit_double_button_one_hover_background_color_b";i:1;}s:36:"ekit_double_button_two_style_section";a:9:{s:44:"ekit_double_button_two_typography_typography";i:1;s:45:"ekit_double_button_two_typography_font_family";i:1;s:43:"ekit_double_button_two_typography_font_size";i:1;s:45:"ekit_double_button_two_typography_font_weight";i:1;s:44:"ekit_double_button_two_background_background";i:1;s:39:"ekit_double_button_two_background_color";i:1;s:50:"ekit_double_button_two_hover_background_background";i:1;s:45:"ekit_double_button_two_hover_background_color";i:1;s:47:"ekit_double_button_two_hover_background_color_b";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}}}}s:7:"heading";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_title";a:2:{s:5:"title";i:7;s:11:"header_size";i:3;}}s:5:"style";a:1:{s:19:"section_title_style";a:11:{s:5:"align";i:7;s:11:"title_color";i:7;s:21:"typography_typography";i:7;s:22:"typography_font_family";i:6;s:20:"typography_font_size";i:7;s:22:"typography_font_weight";i:6;s:25:"typography_text_transform";i:5;s:28:"text_shadow_text_shadow_type";i:4;s:23:"text_shadow_text_shadow";i:1;s:16:"_ob_use_harakiri";i:1;s:22:"typography_line_height";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:3:{s:7:"_margin";i:6;s:14:"_element_width";i:6;s:8:"_padding";i:1;}s:15:"section_effects";a:1:{s:29:"motion_fx_motion_fx_scrolling";i:1;}}}}s:11:"text-editor";a:3:{s:5:"count";i:7;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:14:"section_editor";a:1:{s:6:"editor";i:7;}}s:5:"style";a:1:{s:13:"section_style";a:8:{s:5:"align";i:7;s:21:"typography_typography";i:7;s:22:"typography_font_family";i:6;s:22:"typography_font_weight";i:7;s:10:"text_color";i:3;s:22:"typography_line_height";i:1;s:25:"typography_text_transform";i:2;s:20:"typography_font_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:7:"_margin";i:3;s:8:"_padding";i:2;s:9:"_position";i:1;}}}}s:21:"elementskit-image-box";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:3:{s:39:"ekit_image_box_section_infoboxwithimage";a:1:{s:20:"ekit_image_box_image";i:2;}s:38:"ekit_image_box_section_for_image_title";a:3:{s:25:"ekit_image_box_title_text";i:2;s:25:"ekit_image_box_title_size";i:2;s:31:"ekit_image_box_description_text";i:2;}s:29:"ekit_image_box_section_button";a:4:{s:23:"ekit_image_box_btn_text";i:2;s:28:"ekit_image_box_icons__switch";i:2;s:22:"ekit_image_box_btn_url";i:2;s:25:"ekit_image_box_icon_align";i:1;}}s:5:"style";a:2:{s:33:"ekit_image_box_style_body_section";a:9:{s:42:"ekit_image_box_title_typography_typography";i:2;s:41:"ekit_image_box_title_typography_font_size";i:2;s:28:"ekit_image_box_heading_color";i:2;s:54:"ekit_image_box_title_typography_description_typography";i:2;s:55:"ekit_image_box_title_typography_description_font_family";i:2;s:55:"ekit_image_box_title_typography_description_font_weight";i:2;s:40:"ekit_image_box_heading_color_description";i:2;s:34:"ekit_image_box_heading_color_hover";i:2;s:45:"ekit_image_box_title_bottom_space_description";i:1;}s:28:"ekit_image_box_section_style";a:3:{s:46:"ekit_image_box_btn_background_group_background";i:2;s:41:"ekit_image_box_btn_background_group_color";i:2;s:42:"ekit_image_box_typography_group_typography";i:1;}}}}s:9:"container";a:3:{s:5:"count";i:15;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:24:"section_layout_container";a:11:{s:14:"container_type";i:1;s:17:"grid_columns_grid";i:1;s:14:"grid_rows_grid";i:1;s:5:"width";i:9;s:13:"content_width";i:9;s:14:"flex_direction";i:6;s:16:"flex_align_items";i:2;s:8:"flex_gap";i:3;s:11:"boxed_width";i:2;s:10:"min_height";i:2;s:20:"flex_justify_content";i:2;}s:33:"section_layout_additional_options";a:1:{s:8:"overflow";i:2;}}s:8:"advanced";a:2:{s:14:"section_layout";a:1:{s:6:"margin";i:1;}s:19:"_section_responsive";a:3:{s:11:"hide_mobile";i:1;s:12:"hide_desktop";i:1;s:11:"hide_tablet";i:1;}}s:5:"style";a:3:{s:18:"section_background";a:4:{s:21:"background_background";i:2;s:16:"background_color";i:1;s:18:"background_color_b";i:1;s:16:"background_image";i:1;}s:14:"section_border";a:3:{s:13:"border_radius";i:1;s:26:"box_shadow_box_shadow_type";i:1;s:21:"box_shadow_box_shadow";i:1;}s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:2;s:29:"background_overlay_color_stop";i:2;s:26:"background_overlay_color_b";i:2;s:31:"background_overlay_color_b_stop";i:2;}}}}s:11:"menu-anchor";a:3:{s:5:"count";i:2;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_anchor";a:1:{s:6:"anchor";i:2;}}}}s:5:"image";a:3:{s:5:"count";i:20;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:7:"content";a:1:{s:13:"section_image";a:4:{s:5:"image";i:20;s:7:"link_to";i:12;s:4:"link";i:12;s:10:"image_size";i:18;}}s:8:"advanced";a:2:{s:15:"section_effects";a:15:{s:29:"motion_fx_motion_fx_scrolling";i:17;s:17:"_animation_mobile";i:3;s:34:"motion_fx_translateY_affectedRange";i:17;s:26:"motion_fx_mouseTrack_speed";i:3;s:27:"motion_fx_translateY_effect";i:17;s:27:"motion_fx_translateX_effect";i:15;s:34:"motion_fx_translateX_affectedRange";i:16;s:31:"motion_fx_rotateZ_affectedRange";i:7;s:30:"motion_fx_translateX_direction";i:7;s:30:"motion_fx_translateY_direction";i:4;s:24:"motion_fx_rotateZ_effect";i:2;s:24:"motion_fx_tilt_direction";i:3;s:27:"motion_fx_rotateZ_direction";i:3;s:26:"motion_fx_translateY_speed";i:1;s:23:"motion_fx_rotateZ_speed";i:1;}s:14:"_section_style";a:1:{s:21:"_element_width_mobile";i:3;}}}}s:6:"spacer";a:3:{s:5:"count";i:1;s:15:"control_percent";i:0;s:8:"controls";a:1:{s:7:"content";a:1:{s:14:"section_spacer";a:2:{s:5:"space";i:1;s:16:"_ob_spacerat_use";i:1;}}}}s:4:"icon";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:1:{s:13:"selected_icon";i:1;}}s:5:"style";a:1:{s:18:"section_style_icon";a:2:{s:5:"align";i:1;s:13:"primary_color";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:1:{s:14:"_element_width";i:1;}}}}s:6:"button";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_button";a:5:{s:4:"text";i:1;s:13:"selected_icon";i:1;s:10:"icon_align";i:1;s:11:"icon_indent";i:1;s:4:"link";i:1;}}s:5:"style";a:2:{s:13:"section_style";a:11:{s:5:"align";i:1;s:21:"typography_typography";i:1;s:22:"typography_font_family";i:1;s:22:"typography_font_weight";i:1;s:25:"typography_text_transform";i:1;s:16:"background_color";i:1;s:13:"border_radius";i:1;s:29:"button_background_hover_color";i:1;s:12:"align_mobile";i:1;s:33:"button_box_shadow_box_shadow_type";i:1;s:28:"button_box_shadow_box_shadow";i:1;}s:16:"_ob_butterbutton";a:1:{s:23:"_ob_butterbutton_use_it";i:1;}}}}s:7:"divider";a:3:{s:5:"count";i:4;s:15:"control_percent";i:0;s:8:"controls";a:2:{s:5:"style";a:1:{s:21:"section_divider_style";a:1:{s:5:"color";i:4;}}s:8:"advanced";a:1:{s:18:"section_custom_css";a:1:{s:10:"custom_css";i:1;}}}}s:14:"image-carousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:1:{s:7:"content";a:2:{s:22:"section_image_carousel";a:6:{s:8:"carousel";i:1;s:14:"thumbnail_size";i:1;s:14:"slides_to_show";i:1;s:7:"link_to";i:1;s:4:"link";i:1;s:21:"slides_to_show_mobile";i:1;}s:26:"section_additional_options";a:1:{s:14:"autoplay_speed";i:1;}}}}s:9:"icon-list";a:3:{s:5:"count";i:2;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:12:"section_icon";a:2:{s:9:"icon_list";i:2;s:4:"view";i:1;}}s:5:"style";a:3:{s:17:"section_icon_list";a:2:{s:13:"space_between";i:2;s:10:"icon_align";i:1;}s:18:"section_icon_style";a:4:{s:9:"icon_size";i:1;s:11:"text_indent";i:2;s:10:"icon_color";i:2;s:15:"icon_self_align";i:1;}s:18:"section_text_style";a:4:{s:10:"text_color";i:2;s:26:"icon_typography_typography";i:2;s:25:"icon_typography_font_size";i:2;s:27:"icon_typography_font_weight";i:1;}}s:8:"advanced";a:2:{s:14:"_section_style";a:1:{s:7:"_margin";i:1;}s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:7:"counter";a:3:{s:5:"count";i:3;s:15:"control_percent";i:2;s:8:"controls";a:2:{s:7:"content";a:1:{s:15:"section_counter";a:2:{s:13:"ending_number";i:3;s:5:"title";i:3;}}s:5:"style";a:2:{s:14:"section_number";a:4:{s:12:"number_color";i:3;s:28:"typography_number_typography";i:3;s:29:"typography_number_font_family";i:3;s:29:"typography_number_font_weight";i:3;}s:13:"section_title";a:5:{s:11:"title_color";i:3;s:27:"typography_title_typography";i:3;s:28:"typography_title_font_family";i:3;s:26:"typography_title_font_size";i:3;s:28:"typography_title_font_weight";i:3;}}}}s:20:"testimonial-carousel";a:3:{s:5:"count";i:1;s:15:"control_percent";i:3;s:8:"controls";a:2:{s:7:"content";a:2:{s:14:"section_slides";a:5:{s:6:"slides";i:1;s:4:"skin";i:1;s:15:"slides_per_view";i:1;s:16:"slides_to_scroll";i:1;s:6:"layout";i:1;}s:26:"section_additional_options";a:1:{s:11:"show_arrows";i:1;}}s:5:"style";a:2:{s:21:"section_content_style";a:13:{s:13:"content_color";i:1;s:29:"content_typography_typography";i:1;s:30:"content_typography_font_family";i:1;s:28:"content_typography_font_size";i:1;s:30:"content_typography_font_weight";i:1;s:10:"name_color";i:1;s:26:"name_typography_typography";i:1;s:27:"name_typography_font_family";i:1;s:27:"name_typography_font_weight";i:1;s:11:"title_color";i:1;s:27:"title_typography_typography";i:1;s:28:"title_typography_font_family";i:1;s:28:"title_typography_font_weight";i:1;}s:18:"section_skin_style";a:1:{s:16:"background_color";i:1;}}}}s:12:"social-icons";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:3:{s:16:"social_icon_list";i:1;s:5:"align";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:4:{s:10:"icon_color";i:1;s:18:"icon_primary_color";i:1;s:20:"icon_secondary_color";i:1;s:9:"icon_size";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:3:{s:14:"_element_width";i:1;s:21:"_element_custom_width";i:1;s:10:"_flex_size";i:1;}}}}s:9:"shortcode";a:3:{s:5:"count";i:1;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:7:"content";a:1:{s:17:"section_shortcode";a:1:{s:9:"shortcode";i:1;}}s:8:"advanced";a:1:{s:14:"_section_style";a:2:{s:7:"_margin";i:1;s:8:"_padding";i:1;}}}}}'),
(14759, 4, '_elementor_css', 'a:6:{s:4:"time";i:1742974938;s:5:"fonts";a:2:{i:0;s:6:"Roboto";i:1;s:11:"Roboto Slab";}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14760, 9, '_elementor_css', 'a:6:{s:4:"time";i:1742974938;s:5:"fonts";a:1:{i:0;s:7:"Raleway";}s:5:"icons";a:5:{i:0;s:10:"fa-regular";i:1;s:9:"ekiticons";i:2;s:9:"fa-brands";i:4;s:8:"fa-solid";i:5;s:0:"";}s:20:"dynamic_elements_ids";a:1:{i:0;s:7:"70f22c3";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14761, 60, '_elementor_css', 'a:6:{s:4:"time";i:1742974938;s:5:"fonts";a:2:{i:0;s:7:"Raleway";i:1;s:7:"Poppins";}s:5:"icons";a:3:{i:0;s:9:"ekiticons";i:3;s:9:"fa-brands";i:12;s:8:"fa-solid";}s:20:"dynamic_elements_ids";a:1:{i:0;s:7:"4a44d55";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14762, 7, '_elementor_page_assets', 'a:2:{s:6:"styles";a:13:{i:0;s:12:"e-animations";i:1;s:14:"widget-heading";i:2;s:18:"widget-menu-anchor";i:3;s:12:"widget-image";i:4;s:13:"widget-spacer";i:5;s:14:"widget-divider";i:6;s:8:"e-swiper";i:7;s:21:"widget-image-carousel";i:8;s:16:"widget-icon-list";i:9;s:8:"e-shapes";i:10;s:14:"widget-counter";i:11;s:19:"widget-social-icons";i:12;s:14:"e-apple-webkit";}s:7:"scripts";a:3:{i:0;s:12:"imagesloaded";i:1;s:6:"swiper";i:2;s:16:"jquery-numerator";}}'),
(14763, 7, '_elementor_css', 'a:6:{s:4:"time";i:1742974960;s:5:"fonts";a:2:{i:0;s:7:"Poppins";i:1;s:6:"Roboto";}s:5:"icons";a:5:{i:0;s:0:"";i:1;s:9:"ekiticons";i:8;s:10:"fa-regular";i:9;s:9:"fa-brands";i:11;s:8:"fa-solid";}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14764, 9, '_elementor_page_assets', 'a:2:{s:6:"styles";a:4:{i:0;s:16:"widget-icon-list";i:1;s:19:"widget-social-icons";i:2;s:14:"e-apple-webkit";i:3;s:12:"widget-image";}s:7:"scripts";a:1:{i:0;s:10:"smartmenus";}}'),
(14765, 60, '_elementor_page_assets', 'a:1:{s:6:"styles";a:6:{i:0;s:12:"widget-image";i:1;s:14:"widget-heading";i:2;s:14:"widget-divider";i:3;s:16:"widget-icon-list";i:4;s:19:"widget-social-icons";i:5;s:14:"e-apple-webkit";}}'),
(14766, 17, '_elementor_page_assets', 'a:1:{s:6:"styles";a:3:{i:0;s:14:"widget-heading";i:1;s:20:"widget-image-gallery";i:2;s:13:"widget-spacer";}}'),
(14767, 17, '_elementor_css', 'a:6:{s:4:"time";i:1742975355;s:5:"fonts";a:2:{i:0;s:6:"Roboto";i:1;s:6:"Prompt";}s:5:"icons";a:1:{i:0;s:10:"fa-regular";}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14768, 1, '_elementor_page_assets', 'a:0:{}'),
(14769, 2, '_elementor_page_assets', 'a:0:{}'),
(14770, 20, '_elementor_page_assets', 'a:1:{s:6:"styles";a:3:{i:0;s:12:"widget-image";i:1;s:14:"widget-heading";i:2;s:13:"widget-spacer";}}'),
(14771, 20, '_elementor_css', 'a:6:{s:4:"time";i:1742975369;s:5:"fonts";a:2:{i:0;s:6:"Roboto";i:1;s:4:"Lato";}s:5:"icons";a:1:{i:0;s:0:"";}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14772, 23, '_elementor_page_assets', 'a:2:{s:6:"styles";a:4:{i:0;s:14:"widget-heading";i:1;s:12:"widget-image";i:2;s:8:"e-swiper";i:3;s:21:"widget-image-carousel";}s:7:"scripts";a:1:{i:0;s:6:"swiper";}}'),
(14773, 23, '_elementor_css', 'a:6:{s:4:"time";i:1742975373;s:5:"fonts";a:1:{i:0;s:6:"Roboto";}s:5:"icons";a:1:{i:0;s:0:"";}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14774, 25, '_elementor_page_assets', 'a:1:{s:6:"styles";a:1:{i:0;s:18:"widget-testimonial";}}'),
(14775, 25, '_elementor_css', 'a:6:{s:4:"time";i:1742975376;s:5:"fonts";a:1:{i:0;s:6:"Roboto";}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14776, 27, '_elementor_page_assets', 'a:1:{s:6:"styles";a:2:{i:0;s:14:"widget-heading";i:1;s:18:"widget-google_maps";}}'),
(14777, 27, '_elementor_css', 'a:6:{s:4:"time";i:1742975380;s:5:"fonts";a:0:{}s:5:"icons";a:1:{i:0;s:0:"";}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14778, 738, '_elementor_page_assets', 'a:2:{s:6:"styles";a:11:{i:0;s:12:"e-animations";i:1;s:14:"widget-heading";i:2;s:18:"widget-menu-anchor";i:3;s:12:"widget-image";i:4;s:13:"widget-spacer";i:5;s:8:"e-swiper";i:6;s:21:"widget-image-carousel";i:7;s:14:"widget-divider";i:8;s:16:"widget-icon-list";i:9;s:8:"e-shapes";i:10;s:14:"widget-counter";}s:7:"scripts";a:3:{i:0;s:12:"imagesloaded";i:1;s:6:"swiper";i:2;s:16:"jquery-numerator";}}'),
(14779, 738, '_elementor_css', 'a:6:{s:4:"time";i:1742975383;s:5:"fonts";a:1:{i:0;s:7:"Poppins";}s:5:"icons";a:2:{i:0;s:0:"";i:1;s:9:"ekiticons";}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(14780, 7, '_elementor_edit_mode', 'builder');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_posts`
--

CREATE TABLE `wpiq_posts` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint 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`),
  KEY `type_status_author` (`post_type`,`post_status`,`post_author`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_posts`
--

INSERT INTO `wpiq_posts` VALUES
(1, 1, '2021-01-13 03:53:37', '2021-01-13 03:53:37', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2021-01-13 03:53:37', '2021-01-13 03:53:37', '', 0, 'https://box5166/cgi/addon_GT.cgi?s=GT::WP::Install::EIG+%28utvegymy%29+-+10.0.87.64+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+294%3b+Hosting::gap_call]/?p=1', 0, 'post', '', 1),
(2, 1, '2021-01-13 03:53:37', '2021-01-13 03:53:37', '<!-- 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://box5166/cgi/addon_GT.cgi?s=GT::WP::Install::EIG+%28utvegymy%29+-+10.0.87.64+%5BWordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+294%3b+Hosting::gap_call%5D/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2021-01-13 03:53:37', '2021-01-13 03:53:37', '', 0, 'https://box5166/cgi/addon_GT.cgi?s=GT::WP::Install::EIG+%28utvegymy%29+-+10.0.87.64+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+294%3b+Hosting::gap_call]/?page_id=2', 0, 'page', '', 0),
(3, 1, '2021-01-13 03:53:37', '2021-01-13 03:53:37', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://box5166/cgi/addon_GT.cgi?s=GT::WP::Install::EIG+%28utvegymy%29+-+10.0.87.64+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+294%3b+Hosting::gap_call].</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {"level":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {"level":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2021-01-13 03:53:37', '2021-01-13 03:53:37', '', 0, 'https://box5166/cgi/addon_GT.cgi?s=GT::WP::Install::EIG+%28utvegymy%29+-+10.0.87.64+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+294%3b+Hosting::gap_call]/?page_id=3', 0, 'page', '', 0),
(4, 1, '2021-01-13 05:14:51', '2021-01-13 05:14:51', '', 'Default Kit', '', 'publish', 'closed', 'closed', '', 'default-kit', '', '', '2023-08-19 01:44:32', '2023-08-19 01:44:32', '', 0, 'https://omsrislb.my/?elementor_library=default-kit', 0, 'elementor_library', '', 0),
(7, 1, '2021-01-13 13:39:49', '2021-01-13 13:39:49', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2025-05-17 07:55:51', '2025-05-17 07:55:51', '', 0, 'https://omsrislb.my/?page_id=7', 0, 'page', '', 0),
(9, 1, '2021-01-13 13:40:34', '2021-01-13 13:40:34', '<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n			        <ul>\n                                    <li>\n                            <a href="mailto:omsrislb99@gmail.com" target="_blank" rel="nofollow noopener"> \n                                                                omsrislb99gmail.com                            </a>\n                        </li>\n                            </ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank" rel="noopener">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank" rel="noopener">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank" rel="noopener">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>', 'header', '', 'publish', 'closed', 'closed', '', 'header', '', '', '2023-08-22 13:05:25', '2023-08-22 13:05:25', '', 0, 'https://omsrislb.my/?post_type=elementor_library&#038;p=9', 0, 'elementor_library', '', 0),
(10, 1, '2021-01-13 13:42:29', '2021-01-13 13:42:29', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png', '', '', '2021-01-13 13:42:29', '2021-01-13 13:42:29', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/placeholder.png', 0, 'attachment', 'image/png', 0),
(13, 1, '2021-01-13 13:58:07', '2021-01-13 13:58:07', '', 'logo', '', 'inherit', 'open', 'closed', '', 'logo', '', '', '2021-01-13 13:58:07', '2021-01-13 13:58:07', '', 4, 'https://omsrislb.my/wp-content/uploads/2021/01/logo.png', 0, 'attachment', 'image/png', 0),
(17, 1, '2021-01-13 14:00:07', '2021-01-13 14:00:07', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="494" height="655" src="https://omsrislb.my/wp-content/uploads/2021/12/complete6.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/complete6.jpg 494w, https://omsrislb.my/wp-content/uploads/2021/12/complete6-226x300.jpg 226w" sizes="(max-width: 494px) 100vw, 494px" />\n			</figure>\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2025-03-26 07:28:19', '2025-03-26 07:28:19', '', 0, 'https://omsrislb.my/?page_id=17', 0, 'page', '', 0),
(20, 1, '2021-01-13 14:04:26', '2021-01-13 14:04:26', '<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			<h4>Who are we?</h4>		\n		<p>OM Sri SLB is a boiler service company that does repair service maintenance service and installation service. Founder of OM SRI SLB is Mr. Muniandy Arunasalam. OM SRI SLB has 30 years of experience where we''re able to give full complete service.</p>		\n			<h4>Objective</h4>		\n		<p>The company’s core staff were primarily engineers and professional employees specialised in the provision of energy industry services. We have a clear understanding of the situation in the sector and keep in close touch with our clients. In addition, we are also proud of our professional know-how with respect to the product we serve. With our knowledge of the business environment and technological competency, our strength in sales &amp; marketing will help direct the organisation towards achieving its target.</p>		\n			        <!-- link opening -->\n                <a href="#" target="_self" rel="noopener">\n                <!-- end link opening -->\n                            <h3>\n                    VISSION 1                </h3>\n                        		  <p>Installation Services of Insulation Pipe\nOur vision for insulation pipe installation services is to be the industry leader in creating insulated systems that set new benchmarks for efficiency and sustainability. We envision a future where our expert installation team transforms projects into exemplars of thermal performance, ensuring reduced energy waste, increased cost savings, and a lasting positive impact on the environment.</p>\n                </a>\n			        <!-- link opening -->\n                <a href="#" target="_self" rel="noopener">\n                <!-- end link opening -->\n                            <h3>\n                    VISSION 2                </h3>\n                        		  <p>Supplying Insulation Pipe Material\nOur vision for supplying insulation pipe materials is to be the foremost provider of innovative and high-performance insulation solutions. We aspire to revolutionize industries by offering a comprehensive range of cutting-edge materials that redefine energy conservation, enabling businesses to create environmentally responsible infrastructure while maximizing operational efficiency.</p>\n                </a>\n			        <!-- link opening -->\n                <a href="#" target="_self" rel="noopener">\n                <!-- end link opening -->\n                            <h3>\n                    MISSION 1                </h3>\n                        		  <p>Installation Services of Insulation Pipe\nOur mission for insulation pipe installation services is to execute flawless and efficient installations that embody the pinnacle of insulation technology. We commit to delivering exceptional craftsmanship, meticulous attention to detail, and a seamless integration of insulation systems. By doing so, we aim to optimize energy usage, improve thermal performance, and contribute significantly to the overall efficiency and success of our clients'' projects.</p>\n                </a>\n			        <!-- link opening -->\n                <a href="#" target="_self" rel="noopener">\n                <!-- end link opening -->\n                            <h3>\n                    MISSION 2                </h3>\n                        		  <p>Supplying Insulation Pipe Material\nOur mission for supplying insulation pipe materials is to consistently provide a diverse range of top-quality, high-performance insulation solutions. We are dedicated to partnering with industries to enhance energy efficiency, minimize heat loss, and reduce environmental impact. Through relentless innovation, rigorous testing, and customer collaboration, we strive to enable businesses to achieve their sustainability and operational goals.\n</p>\n                </a>\n			<h2>KNWOW MORE ABOUT US</h2>				\n					<p>Welcome to our company, a leading provider of insulation pipe work solutions that ensure optimal energy efficiency and climate control in various industrial and commercial settings. With a passion for sustainability and innovation, we specialize in offering high-quality insulation products and professional installation services that cater to the unique needs of our clients.</p>\n<p><strong>Our Company''s Core Features:</strong></p>\n<p><strong>Quality Products:</strong> We source and supply top-notch insulation materials that are carefully selected to meet the highest industry standards. Our products are known for their durability, thermal performance, and ability to effectively reduce heat transfer and prevent condensation.</p>\n<p><strong>Expert Installation:</strong> Our team of experienced technicians excels in the proper installation of insulation pipe work. We take into account the specific requirements of each project, ensuring a seamless and efficient installation process that guarantees long-lasting performance.</p>\n<p><strong>Custom Solutions:</strong> We understand that every project is unique. Whether it''s for industrial facilities, commercial buildings, or specialized applications, we offer tailor-made insulation solutions that address the specific challenges and demands of each environment.</p>\n<p><strong>Energy Efficiency:</strong> We are dedicated to promoting energy conservation and sustainability. Our insulation solutions play a vital role in reducing heat loss and minimizing energy consumption, thereby helping clients lower their operational costs and environmental footprint.</p>\n<p><strong>Timely Execution: </strong>We recognize the significance of timely project completion. Our efficient project management ensures that we deliver on schedule without compromising on quality.</p>\n<p><strong>Long-Term Benefits:</strong> Investing in our insulation pipe work solutions offers numerous long-term benefits, including extended equipment lifespan, reduced maintenance costs, improved comfort, and enhanced productivity.</p>\n<p><strong>Continuous Improvement</strong>: As technology and materials evolve, so do our solutions. We are committed to continuous improvement, seeking out the latest advancements in insulation technology to provide our clients with cutting-edge solutions.</p>\n<p>In summary, our company is dedicated to providing high-quality insulation pipe work solutions that prioritize energy efficiency, sustainability, and client satisfaction. From product selection to installation and beyond, we are your trusted partner in creating well-insulated, environmentally responsible, and cost-effective systems for various applications.</p>', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2023-08-22 01:13:50', '2023-08-22 01:13:50', '', 0, 'https://omsrislb.my/?page_id=20', 0, 'page', '', 0),
(23, 1, '2021-01-13 14:08:35', '2021-01-13 14:08:35', '<h2>Our Projects</h2>		\n		<p><b>We involved in various insulation projects from various fields.</b></p>		\n			<a href="https://omsrislb.my/contact">\n						Contact Us\n					</a>\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n			<h2>CARLSBERG</h2>		\n		<ul><li>Calcium Silicate Pipe Cover Insulation</li></ul>		\n			<h2>CARLSBERG</h2>		\n		<ul><li>Calcium Silicate Pipe Cover Insulation </li><li>P.U Foam Insulation</li></ul>		\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0032.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0032.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0032-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0032-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n			<h2>SMART GLOVE</h2>		\n		<ul><li style="text-align: center;">Boiler pipe insulation</li></ul>		\n			<h2>CARE GLOVE</h2>		\n		<ul><li>Boiler pipe insulation and Ducting insulation</li></ul>		\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0068.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0068.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0068-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0068-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n			<h2>EMPIRE DAMANSARA</h2>		\n		<ul><li>Polyurethane (P.U) Foam Insulation</li></ul>		\n			<h2>YTY INDUSTRY</h2>		\n		<ul><li>YTY INDUSTRY.Repair cold pipe insulation (p.u)</li></ul>		\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0075.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0075.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0075-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0075-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0050.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0050.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0050-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0050-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n			<h2>GX Corporation sdn bhd.</h2>		\n		<ul><li style="text-align: center;">Boiler pipe insulation.and tank insulation.</li></ul>		\n			<h2>SHANGRI LA HOTEL</h2>		\n		<ul><li>Boiler Insulation</li></ul>		\n															<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="ac9ad18" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM2LndlYnAiLCJzbGlkZXNob3ciOiJhYzlhZDE4In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="ac9ad18" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM1LndlYnAiLCJzbGlkZXNob3ciOiJhYzlhZDE4In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="ac9ad18" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM0LndlYnAiLCJzbGlkZXNob3ciOiJhYzlhZDE4In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="ac9ad18" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMzLndlYnAiLCJzbGlkZXNob3ciOiJhYzlhZDE4In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="ac9ad18" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMyLndlYnAiLCJzbGlkZXNob3ciOiJhYzlhZDE4In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="ac9ad18" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMxLndlYnAiLCJzbGlkZXNob3ciOiJhYzlhZDE4In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="ac9ad18" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMwLndlYnAiLCJzbGlkZXNob3ciOiJhYzlhZDE4In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />', 'Project List', '', 'publish', 'closed', 'closed', '', 'project-list', '', '', '2023-08-22 01:33:49', '2023-08-22 01:33:49', '', 0, 'https://omsrislb.my/?page_id=23', 0, 'page', '', 0);
INSERT INTO `wpiq_posts` VALUES
(25, 1, '2021-01-13 14:09:34', '2021-01-13 14:09:34', 'They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n														Belala Philips\n																						Service Woman\n							A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n														Maimai Chow\n																						Service Woman', 'Testimonials', '', 'publish', 'closed', 'closed', '', 'testimonials', '', '', '2023-08-22 01:29:49', '2023-08-22 01:29:49', '', 0, 'https://omsrislb.my/?page_id=25', 0, 'page', '', 0),
(27, 1, '2021-01-13 14:10:14', '2021-01-13 14:10:14', '<h2>Get In touch</h2>		\n			<iframe loading="lazy"\n					src="https://maps.google.com/maps?q=OM%20SRI%20SLB&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near"\n					title="OM SRI SLB"\n					aria-label="OM SRI SLB"\n			></iframe>', 'Contact', '', 'publish', 'closed', 'closed', '', 'contact', '', '', '2023-08-22 00:43:04', '2023-08-22 00:43:04', '', 0, 'https://omsrislb.my/?page_id=27', 0, 'page', '', 0),
(32, 1, '2021-01-13 14:21:11', '2021-01-13 14:21:11', ' ', '', '', 'publish', 'closed', 'closed', '', '32', '', '', '2021-01-13 14:30:04', '2021-01-13 14:30:04', '', 0, 'https://omsrislb.my/?p=32', 2, 'nav_menu_item', '', 0),
(33, 1, '2021-01-13 14:21:11', '2021-01-13 14:21:11', ' ', '', '', 'publish', 'closed', 'closed', '', '33', '', '', '2021-01-13 14:30:04', '2021-01-13 14:30:04', '', 0, 'https://omsrislb.my/?p=33', 3, 'nav_menu_item', '', 0),
(34, 1, '2021-01-13 14:21:11', '2021-01-13 14:21:11', ' ', '', '', 'publish', 'closed', 'closed', '', '34', '', '', '2021-01-13 14:30:04', '2021-01-13 14:30:04', '', 0, 'https://omsrislb.my/?p=34', 4, 'nav_menu_item', '', 0),
(35, 1, '2021-01-13 14:21:12', '2021-01-13 14:21:12', ' ', '', '', 'publish', 'closed', 'closed', '', '35', '', '', '2021-01-13 14:30:04', '2021-01-13 14:30:04', '', 0, 'https://omsrislb.my/?p=35', 5, 'nav_menu_item', '', 0),
(36, 1, '2021-01-13 14:21:12', '2021-01-13 14:21:12', ' ', '', '', 'publish', 'closed', 'closed', '', '36', '', '', '2021-01-13 14:30:04', '2021-01-13 14:30:04', '', 0, 'https://omsrislb.my/?p=36', 6, 'nav_menu_item', '', 0),
(38, 1, '2021-01-13 14:30:04', '2021-01-13 14:30:04', ' ', '', '', 'publish', 'closed', 'closed', '', '38', '', '', '2021-01-13 14:30:04', '2021-01-13 14:30:04', '', 0, 'https://omsrislb.my/?p=38', 1, 'nav_menu_item', '', 0),
(44, 1, '2021-01-13 18:22:38', '2021-01-13 18:22:38', '', 'twentytwentyone', '', 'publish', 'closed', 'closed', '', 'twentytwentyone', '', '', '2021-03-03 03:59:28', '2021-03-03 03:59:28', '', 0, 'https://omsrislb.my/twentytwentyone/', 0, 'custom_css', '', 0),
(60, 1, '2021-01-13 18:41:13', '2021-01-13 18:41:13', '<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="auto, (max-width: 750px) 100vw, 750px" />															\n		<p style="text-align: left;">OM SRI SLB is a leading provider of high-quality insulation solutions for pipes and structures. We specialize in insulation material sales and professional installation services.</p>		\n			<h4>Person In-charge</h4>		\n					<ul>\n							<li>\n											<a href="tel:6019648746">\n											MR.MUNIANDY ARUNASALAM (DIRECTOR)\n											</a>\n									</li>\n								<li>\n											<a href="tel:6102384741">\n											MR.SURESH (SALES ENGINEER)\n											</a>\n									</li>\n								<li>\n											<a href="tel:60102384742">\n											MR. M.KANAPATHI  (SALES ENGINEER )\n											</a>\n									</li>\n						</ul>\n			<h4>Subscribe Now</h4>		\n			<h4>Contact Person</h4>		\n					<ul>\n							<li>\n											<a href="https://api.whatsapp.com/send?phone=60196148746&#038;text=Hi,+omsrislb.my+">\n							<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>						\n										019-614 8746 (MR. A. MUNIANDY)\n											</a>\n									</li>\n								<li>\n											<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi,+omsrislb.my+">\n							<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>						\n										010-238 4741 (MR.SURESH)\n											</a>\n									</li>\n								<li>\n											<a href="https://api.whatsapp.com/send?phone=60168888420&#038;text=Hi,+omsrislb.my+">\n							<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>						\n										016-888 8420 (MR. KANAPATHI)\n											</a>\n									</li>\n								<li>\n											<a href="https://api.whatsapp.com/send?phone=60129949244&#038;text=Hi,+omsrislb.my+">\n							<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>						\n										012-9949244 (MRS. A. RENUGAA)\n											</a>\n									</li>\n								<li>\n											<a href="https://api.whatsapp.com/send?phone=60127669949&#038;text=Hi,+omsrislb.my+">\n							<svg aria-hidden="true" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>						\n										012-7669949 (MRS. SITI)\n											</a>\n									</li>\n								<li>\n										omsrislb99@gmail.com\n									</li>\n						</ul>\n		<p>Copyright © 2023 OM SRI SLB</p>		\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>', 'footer', '', 'publish', 'closed', 'closed', '', 'footer', '', '', '2025-03-17 16:03:45', '2025-03-17 16:03:45', '', 0, 'https://omsrislb.my/?post_type=elementor_library&#038;p=60', 0, 'elementor_library', '', 0),
(61, 1, '2021-01-13 18:47:01', '2021-01-13 18:47:01', '', 'asset-09', '', 'inherit', 'open', 'closed', '', 'asset-09', '', '', '2021-01-13 18:47:01', '2021-01-13 18:47:01', '', 60, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-09.jpg', 0, 'attachment', 'image/jpeg', 0),
(62, 1, '2021-01-13 18:48:47', '2021-01-13 18:48:47', '', 'logo-white', '', 'inherit', 'open', 'closed', '', 'logo-white', '', '', '2021-01-13 18:48:47', '2021-01-13 18:48:47', '', 60, 'https://omsrislb.my/wp-content/uploads/2021/01/logo-white.png', 0, 'attachment', 'image/png', 0),
(77, 1, '2021-01-13 19:53:03', '2021-01-13 19:53:03', '', 'asset-05', '', 'inherit', 'open', 'closed', '', 'asset-05', '', '', '2021-01-13 19:53:03', '2021-01-13 19:53:03', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-05.jpg', 0, 'attachment', 'image/jpeg', 0),
(99, 1, '2021-01-13 20:22:11', '2021-01-13 20:22:11', '', 'asset-02', '', 'inherit', 'open', 'closed', '', 'asset-02', '', '', '2021-01-13 20:22:11', '2021-01-13 20:22:11', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-02.png', 0, 'attachment', 'image/png', 0),
(100, 1, '2021-01-13 20:24:02', '2021-01-13 20:24:02', '', 'asset-01', '', 'inherit', 'open', 'closed', '', 'asset-01', '', '', '2021-01-13 20:24:02', '2021-01-13 20:24:02', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-01.jpg', 0, 'attachment', 'image/jpeg', 0),
(105, 1, '2021-01-13 20:28:53', '2021-01-13 20:28:53', '', 'asset-03', '', 'inherit', 'open', 'closed', '', 'asset-03', '', '', '2021-01-13 20:28:53', '2021-01-13 20:28:53', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-03.jpg', 0, 'attachment', 'image/jpeg', 0),
(122, 1, '2021-01-14 01:10:08', '2021-01-14 01:10:08', '', 'asset-10', '', 'inherit', 'open', 'closed', '', 'asset-10', '', '', '2021-01-14 01:10:08', '2021-01-14 01:10:08', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-10.jpg', 0, 'attachment', 'image/jpeg', 0),
(123, 1, '2021-01-14 01:10:49', '2021-01-14 01:10:49', '', 'asset-11', '', 'inherit', 'open', 'closed', '', 'asset-11', '', '', '2021-01-14 01:10:49', '2021-01-14 01:10:49', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-11.jpg', 0, 'attachment', 'image/jpeg', 0),
(127, 1, '2021-01-14 01:23:03', '2021-01-14 01:23:03', '', 'asset-05', '', 'inherit', 'open', 'closed', '', 'asset-05-2', '', '', '2021-01-14 01:23:03', '2021-01-14 01:23:03', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-05-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(128, 1, '2021-01-14 01:25:25', '2021-01-14 01:25:25', '', 'asset-12', '', 'inherit', 'open', 'closed', '', 'asset-12', '', '', '2021-01-14 01:25:25', '2021-01-14 01:25:25', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-12.jpg', 0, 'attachment', 'image/jpeg', 0),
(129, 1, '2021-01-14 01:25:28', '2021-01-14 01:25:28', '', 'asset-13', '', 'inherit', 'open', 'closed', '', 'asset-13', '', '', '2021-01-14 01:25:28', '2021-01-14 01:25:28', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-13.jpg', 0, 'attachment', 'image/jpeg', 0),
(133, 1, '2021-01-14 01:34:47', '2021-01-14 01:34:47', '', 'asset-06', '', 'inherit', 'open', 'closed', '', 'asset-06', '', '', '2021-01-14 01:34:47', '2021-01-14 01:34:47', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-06.jpg', 0, 'attachment', 'image/jpeg', 0),
(143, 1, '2021-01-14 01:39:23', '2021-01-14 01:39:23', '', 'asset-08', '', 'inherit', 'open', 'closed', '', 'asset-08', '', '', '2021-01-14 01:39:23', '2021-01-14 01:39:23', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-08.jpg', 0, 'attachment', 'image/jpeg', 0),
(144, 1, '2021-01-14 01:40:34', '2021-01-14 01:40:34', '', 'asset-07', '', 'inherit', 'open', 'closed', '', 'asset-07', '', '', '2021-01-14 01:40:34', '2021-01-14 01:40:34', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-07.jpg', 0, 'attachment', 'image/jpeg', 0),
(168, 1, '2021-01-14 02:15:24', '2021-01-14 02:15:24', '', 'asset-03', '', 'inherit', 'open', 'closed', '', 'asset-03-2', '', '', '2021-01-14 02:15:24', '2021-01-14 02:15:24', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-03.png', 0, 'attachment', 'image/png', 0),
(180, 1, '2021-01-14 03:08:15', '2021-01-14 03:08:15', '', 'asset-14', '', 'inherit', 'open', 'closed', '', 'asset-14', '', '', '2021-01-14 03:08:15', '2021-01-14 03:08:15', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-14.jpg', 0, 'attachment', 'image/jpeg', 0),
(194, 1, '2021-01-18 15:24:51', '2021-01-18 15:24:51', '', 'icon', '', 'inherit', 'open', 'closed', '', 'icon', '', '', '2021-01-18 15:24:51', '2021-01-18 15:24:51', '', 4, 'https://omsrislb.my/wp-content/uploads/2021/01/icon.png', 0, 'attachment', 'image/png', 0),
(201, 1, '2021-01-19 04:09:17', '2021-01-19 04:09:17', '', '404-hero-pic.jpg', '', 'inherit', 'open', 'closed', '', '404-hero-pic-jpg', '', '', '2021-01-19 04:09:17', '2021-01-19 04:09:17', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/404-hero-pic.jpg', 0, 'attachment', 'image/jpeg', 0),
(299, 1, '2021-01-20 02:47:53', '2021-01-20 02:47:53', '', 'asset-01', '', 'inherit', 'open', 'closed', '', 'asset-01-2', '', '', '2021-01-20 02:47:53', '2021-01-20 02:47:53', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-01-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(303, 1, '2021-01-20 03:00:04', '2021-01-20 03:00:04', '', 'IMG-20201123-WA0010', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0010', '', '', '2021-01-20 03:00:04', '2021-01-20 03:00:04', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0010.jpg', 0, 'attachment', 'image/jpeg', 0),
(304, 1, '2021-01-20 03:01:37', '2021-01-20 03:01:37', '', 'asset-10', '', 'inherit', 'open', 'closed', '', 'asset-10-2', '', '', '2021-01-20 03:01:37', '2021-01-20 03:01:37', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-10-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(308, 1, '2021-01-20 03:07:17', '2021-01-20 03:07:17', '', 'asset-03', '', 'inherit', 'open', 'closed', '', 'asset-03-3', '', '', '2021-01-20 03:07:17', '2021-01-20 03:07:17', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-03-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(314, 1, '2021-01-20 03:13:15', '2021-01-20 03:13:15', '', 'asset-11', '', 'inherit', 'open', 'closed', '', 'asset-11-2', '', '', '2021-01-20 03:13:15', '2021-01-20 03:13:15', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/asset-11-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(315, 1, '2021-01-20 03:16:10', '2021-01-20 03:16:10', '', 'IMG-20201123-WA0061', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0061', '', '', '2021-01-20 03:16:10', '2021-01-20 03:16:10', '', 7, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0061.jpg', 0, 'attachment', 'image/jpeg', 0),
(367, 1, '2021-01-20 04:04:44', '2021-01-20 04:04:44', '', 'IMG-20201123-WA0044', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0044', '', '', '2021-01-20 04:04:44', '2021-01-20 04:04:44', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0044.jpg', 0, 'attachment', 'image/jpeg', 0),
(369, 1, '2021-01-20 04:09:21', '2021-01-20 04:09:21', '', 'IMG-20201123-WA0011', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0011', '', '', '2021-01-20 04:09:21', '2021-01-20 04:09:21', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0011.jpg', 0, 'attachment', 'image/jpeg', 0),
(382, 1, '2021-01-20 04:23:08', '2021-01-20 04:23:08', '', 'IMG-20201123-WA0090', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0090', '', '', '2021-01-20 04:23:08', '2021-01-20 04:23:08', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg', 0, 'attachment', 'image/jpeg', 0),
(383, 1, '2021-01-20 04:29:14', '2021-01-20 04:29:14', '', 'IMG-20201123-WA0089', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0089', '', '', '2021-01-20 04:29:14', '2021-01-20 04:29:14', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0089.jpg', 0, 'attachment', 'image/jpeg', 0),
(399, 1, '2021-01-20 04:37:14', '2021-01-20 04:37:14', '', 'IMG-20201123-WA0009', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0009', '', '', '2021-01-20 04:37:14', '2021-01-20 04:37:14', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0009.jpg', 0, 'attachment', 'image/jpeg', 0),
(406, 1, '2021-01-20 04:44:07', '2021-01-20 04:44:07', '', 'Slider_img.png', '', 'inherit', 'open', 'closed', '', 'slider_img-png', '', '', '2021-01-20 04:44:07', '2021-01-20 04:44:07', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Slider_img.png', 0, 'attachment', 'image/png', 0),
(407, 1, '2021-01-20 04:44:08', '2021-01-20 04:44:08', '', 'agency-banner-bg-dots.png', '', 'inherit', 'open', 'closed', '', 'agency-banner-bg-dots-png', '', '', '2021-01-20 04:44:08', '2021-01-20 04:44:08', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/agency-banner-bg-dots.png', 0, 'attachment', 'image/png', 0),
(408, 1, '2021-01-20 04:44:09', '2021-01-20 04:44:09', '', 'dot-shapes.png', '', 'inherit', 'open', 'closed', '', 'dot-shapes-png', '', '', '2021-01-20 04:44:09', '2021-01-20 04:44:09', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/dot-shapes.png', 0, 'attachment', 'image/png', 0),
(409, 1, '2021-01-20 04:44:09', '2021-01-20 04:44:09', '', 'agency-shapes-dots-corss.png', '', 'inherit', 'open', 'closed', '', 'agency-shapes-dots-corss-png', '', '', '2021-01-20 04:44:09', '2021-01-20 04:44:09', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/agency-shapes-dots-corss.png', 0, 'attachment', 'image/png', 0),
(410, 1, '2021-01-20 04:44:10', '2021-01-20 04:44:10', '', 'Featurs_img-2.png', '', 'inherit', 'open', 'closed', '', 'featurs_img-2-png', '', '', '2021-01-20 04:44:10', '2021-01-20 04:44:10', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Featurs_img-2.png', 0, 'attachment', 'image/png', 0),
(411, 1, '2021-01-20 04:44:10', '2021-01-20 04:44:10', '', 'Featurs_img-1.png', '', 'inherit', 'open', 'closed', '', 'featurs_img-1-png', '', '', '2021-01-20 04:44:10', '2021-01-20 04:44:10', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Featurs_img-1.png', 0, 'attachment', 'image/png', 0),
(412, 1, '2021-01-20 04:44:10', '2021-01-20 04:44:10', '', 'Featurs_img-3.png', '', 'inherit', 'open', 'closed', '', 'featurs_img-3-png', '', '', '2021-01-20 04:44:10', '2021-01-20 04:44:10', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Featurs_img-3.png', 0, 'attachment', 'image/png', 0),
(413, 1, '2021-01-20 04:44:11', '2021-01-20 04:44:11', '', 'about_img.png', '', 'inherit', 'open', 'closed', '', 'about_img-png', '', '', '2021-01-20 04:44:11', '2021-01-20 04:44:11', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/about_img.png', 0, 'attachment', 'image/png', 0),
(414, 1, '2021-01-20 04:44:11', '2021-01-20 04:44:11', '', 'team_6.jpg', '', 'inherit', 'open', 'closed', '', 'team_6-jpg', '', '', '2021-01-20 04:44:11', '2021-01-20 04:44:11', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/team_6.jpg', 0, 'attachment', 'image/jpeg', 0),
(415, 1, '2021-01-20 04:44:11', '2021-01-20 04:44:11', '', 'info-box-img-2.jpg', '', 'inherit', 'open', 'closed', '', 'info-box-img-2-jpg', '', '', '2021-01-20 04:44:11', '2021-01-20 04:44:11', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/info-box-img-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(416, 1, '2021-01-20 04:44:12', '2021-01-20 04:44:12', '', 'popular-post_img-2.jpeg', '', 'inherit', 'open', 'closed', '', 'popular-post_img-2-jpeg', '', '', '2021-01-20 04:44:12', '2021-01-20 04:44:12', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/popular-post_img-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(417, 1, '2021-01-20 04:44:12', '2021-01-20 04:44:12', '', 'tab-team1.jpg', '', 'inherit', 'open', 'closed', '', 'tab-team1-jpg', '', '', '2021-01-20 04:44:12', '2021-01-20 04:44:12', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/tab-team1.jpg', 0, 'attachment', 'image/jpeg', 0),
(418, 1, '2021-01-20 04:44:12', '2021-01-20 04:44:12', '', 'team-1.png', '', 'inherit', 'open', 'closed', '', 'team-1-png', '', '', '2021-01-20 04:44:12', '2021-01-20 04:44:12', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/team-1.png', 0, 'attachment', 'image/png', 0),
(419, 1, '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 'Team-2-1.png', '', 'inherit', 'open', 'closed', '', 'team-2-1-png', '', '', '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Team-2-1.png', 0, 'attachment', 'image/png', 0),
(420, 1, '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 'Team-3.png', '', 'inherit', 'open', 'closed', '', 'team-3-png', '', '', '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Team-3.png', 0, 'attachment', 'image/png', 0),
(421, 1, '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 'team-4.png', '', 'inherit', 'open', 'closed', '', 'team-4-png', '', '', '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/team-4.png', 0, 'attachment', 'image/png', 0),
(422, 1, '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png-2', '', '', '2021-01-20 04:44:13', '2021-01-20 04:44:13', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/placeholder-1.png', 0, 'attachment', 'image/png', 0),
(423, 1, '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 'Partner_img-1-1.png', '', 'inherit', 'open', 'closed', '', 'partner_img-1-1-png', '', '', '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Partner_img-1-1.png', 0, 'attachment', 'image/png', 0),
(424, 1, '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 'Partner_img-2-1.png', '', 'inherit', 'open', 'closed', '', 'partner_img-2-1-png', '', '', '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Partner_img-2-1.png', 0, 'attachment', 'image/png', 0),
(425, 1, '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 'Partner_img-3-1.png', '', 'inherit', 'open', 'closed', '', 'partner_img-3-1-png', '', '', '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Partner_img-3-1.png', 0, 'attachment', 'image/png', 0),
(426, 1, '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 'Partner_img-4-1.png', '', 'inherit', 'open', 'closed', '', 'partner_img-4-1-png', '', '', '2021-01-20 04:44:14', '2021-01-20 04:44:14', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Partner_img-4-1.png', 0, 'attachment', 'image/png', 0),
(427, 1, '2021-01-20 04:44:15', '2021-01-20 04:44:15', '', 'Partner_img-5-1.png', '', 'inherit', 'open', 'closed', '', 'partner_img-5-1-png', '', '', '2021-01-20 04:44:15', '2021-01-20 04:44:15', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Partner_img-5-1.png', 0, 'attachment', 'image/png', 0),
(441, 1, '2021-01-20 05:10:23', '2021-01-20 05:10:23', '', 'Slider_img-1.jpeg', '', 'inherit', 'open', 'closed', '', 'slider_img-1-jpeg', '', '', '2021-01-20 05:10:23', '2021-01-20 05:10:23', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Slider_img-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(442, 1, '2021-01-20 05:10:25', '2021-01-20 05:10:25', '', 'Testimonial_img-1-2.jpeg', '', 'inherit', 'open', 'closed', '', 'testimonial_img-1-2-jpeg', '', '', '2021-01-20 05:10:25', '2021-01-20 05:10:25', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Testimonial_img-1-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(443, 1, '2021-01-20 05:10:25', '2021-01-20 05:10:25', '', 'About_img-1.jpeg', '', 'inherit', 'open', 'closed', '', 'about_img-1-jpeg', '', '', '2021-01-20 05:10:25', '2021-01-20 05:10:25', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/About_img-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(444, 1, '2021-01-20 05:10:26', '2021-01-20 05:10:26', '', 'Call-to-action_img.jpeg', '', 'inherit', 'open', 'closed', '', 'call-to-action_img-jpeg', '', '', '2021-01-20 05:10:26', '2021-01-20 05:10:26', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Call-to-action_img.jpeg', 0, 'attachment', 'image/jpeg', 0),
(445, 1, '2021-01-20 05:10:27', '2021-01-20 05:10:27', '', 'call-back_img.jpeg', '', 'inherit', 'open', 'closed', '', 'call-back_img-jpeg', '', '', '2021-01-20 05:10:27', '2021-01-20 05:10:27', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/call-back_img.jpeg', 0, 'attachment', 'image/jpeg', 0),
(446, 1, '2021-01-20 05:10:27', '2021-01-20 05:10:27', '', 'funfact_img.jpeg', '', 'inherit', 'open', 'closed', '', 'funfact_img-jpeg', '', '', '2021-01-20 05:10:27', '2021-01-20 05:10:27', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/funfact_img.jpeg', 0, 'attachment', 'image/jpeg', 0),
(447, 1, '2021-01-20 05:10:28', '2021-01-20 05:10:28', '', 'Testimonial_img-1.jpeg', '', 'inherit', 'open', 'closed', '', 'testimonial_img-1-jpeg', '', '', '2021-01-20 05:10:28', '2021-01-20 05:10:28', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Testimonial_img-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(448, 1, '2021-01-20 05:10:29', '2021-01-20 05:10:29', '', 'Testimonial_img-2.jpeg', '', 'inherit', 'open', 'closed', '', 'testimonial_img-2-jpeg', '', '', '2021-01-20 05:10:29', '2021-01-20 05:10:29', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Testimonial_img-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(449, 1, '2021-01-20 05:10:29', '2021-01-20 05:10:29', '', 'Testimonial_img-3.jpeg', '', 'inherit', 'open', 'closed', '', 'testimonial_img-3-jpeg', '', '', '2021-01-20 05:10:29', '2021-01-20 05:10:29', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/01/Testimonial_img-3.jpeg', 0, 'attachment', 'image/jpeg', 0),
(450, 1, '2021-01-20 05:12:22', '2021-01-20 05:12:22', '', 'IMG-20201123-WA0030', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0030', '', '', '2021-01-20 05:12:22', '2021-01-20 05:12:22', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0030.jpg', 0, 'attachment', 'image/jpeg', 0),
(451, 1, '2021-01-20 05:17:11', '2021-01-20 05:17:11', '', 'IMG-20201123-WA0023', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0023', '', '', '2021-01-20 05:17:11', '2021-01-20 05:17:11', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0023.jpg', 0, 'attachment', 'image/jpeg', 0),
(452, 1, '2021-01-20 05:17:40', '2021-01-20 05:17:40', '', 'IMG-20201123-WA0028', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0028', '', '', '2021-01-20 05:17:40', '2021-01-20 05:17:40', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028.jpg', 0, 'attachment', 'image/jpeg', 0),
(456, 1, '2021-01-20 05:31:21', '2021-01-20 05:31:21', '', 'IMG-20201123-WA0032', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0032', '', '', '2021-01-20 05:31:21', '2021-01-20 05:31:21', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0032.jpg', 0, 'attachment', 'image/jpeg', 0),
(457, 1, '2021-01-20 05:32:39', '2021-01-20 05:32:39', '', 'IMG-20201123-WA0028', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0028-2', '', '', '2021-01-20 05:32:39', '2021-01-20 05:32:39', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0028-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(458, 1, '2021-01-20 05:33:47', '2021-01-20 05:33:47', '', 'IMG-20201123-WA0068', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0068', '', '', '2021-01-20 05:33:47', '2021-01-20 05:33:47', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0068.jpg', 0, 'attachment', 'image/jpeg', 0),
(459, 1, '2021-01-20 05:34:36', '2021-01-20 05:34:36', '', 'IMG-20201123-WA0053', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0053', '', '', '2021-01-20 05:34:36', '2021-01-20 05:34:36', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0053.jpg', 0, 'attachment', 'image/jpeg', 0),
(460, 1, '2021-01-20 05:35:17', '2021-01-20 05:35:17', '', 'IMG-20201123-WA0029', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0029', '', '', '2021-01-20 05:35:17', '2021-01-20 05:35:17', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0029.jpg', 0, 'attachment', 'image/jpeg', 0),
(461, 1, '2021-01-20 05:35:39', '2021-01-20 05:35:39', '', 'IMG-20201123-WA0063', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0063', '', '', '2021-01-20 05:35:39', '2021-01-20 05:35:39', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0063.jpg', 0, 'attachment', 'image/jpeg', 0),
(462, 1, '2021-01-20 05:36:02', '2021-01-20 05:36:02', '', 'IMG-20201123-WA0050', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0050', '', '', '2021-01-20 05:36:02', '2021-01-20 05:36:02', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0050.jpg', 0, 'attachment', 'image/jpeg', 0),
(463, 1, '2021-01-20 05:36:30', '2021-01-20 05:36:30', '', 'IMG-20201123-WA0039', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0039', '', '', '2021-01-20 05:36:30', '2021-01-20 05:36:30', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0039.jpg', 0, 'attachment', 'image/jpeg', 0),
(464, 1, '2021-01-20 05:37:08', '2021-01-20 05:37:08', '', 'IMG-20201123-WA0075', '', 'inherit', 'open', 'closed', '', 'img-20201123-wa0075', '', '', '2021-01-20 05:37:08', '2021-01-20 05:37:08', '', 23, 'https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0075.jpg', 0, 'attachment', 'image/jpeg', 0),
(601, 1, '2021-03-03 02:59:49', '2021-03-03 02:59:49', '', 'Slb@2x', '', 'inherit', 'open', 'closed', '', 'slb2x', '', '', '2021-03-03 02:59:49', '2021-03-03 02:59:49', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/03/Slb@2x.png', 0, 'attachment', 'image/png', 0),
(602, 1, '2021-03-03 03:00:24', '2021-03-03 03:00:24', 'https://omsrislb.my/wp-content/uploads/2021/03/cropped-Slb@2x.png', 'cropped-Slb@2x.png', '', 'inherit', 'open', 'closed', '', 'cropped-slb2x-png', '', '', '2021-03-03 03:00:24', '2021-03-03 03:00:24', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/03/cropped-Slb@2x.png', 0, 'attachment', 'image/png', 0),
(604, 1, '2021-03-03 03:02:19', '2021-03-03 03:02:19', '', 'slbwhite@2x', '', 'inherit', 'open', 'closed', '', 'slbwhite2x', '', '', '2021-03-03 03:02:19', '2021-03-03 03:02:19', '', 60, 'https://omsrislb.my/wp-content/uploads/2021/01/slbwhite@2x.png', 0, 'attachment', 'image/png', 0),
(680, 1, '2021-05-16 06:10:21', '2021-05-16 06:10:21', '', 'WhatsApp Image 2021-04-27 at 10.26.51', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2021-04-27-at-10-26-51', '', '', '2021-05-16 06:10:21', '2021-05-16 06:10:21', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.51.jpeg', 0, 'attachment', 'image/jpeg', 0),
(681, 1, '2021-05-16 06:10:24', '2021-05-16 06:10:24', '', 'WhatsApp Image 2021-04-27 at 10.26.52 (1)', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2021-04-27-at-10-26-52-1', '', '', '2021-05-16 06:10:24', '2021-05-16 06:10:24', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(682, 1, '2021-05-16 06:10:26', '2021-05-16 06:10:26', '', 'WhatsApp Image 2021-04-27 at 10.26.52 (2)', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2021-04-27-at-10-26-52-2', '', '', '2021-05-16 06:10:26', '2021-05-16 06:10:26', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(683, 1, '2021-05-16 06:10:28', '2021-05-16 06:10:28', '', 'WhatsApp Image 2021-04-27 at 10.26.52', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2021-04-27-at-10-26-52', '', '', '2021-05-16 06:10:28', '2021-05-16 06:10:28', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.52.jpeg', 0, 'attachment', 'image/jpeg', 0),
(684, 1, '2021-05-16 06:10:30', '2021-05-16 06:10:30', '', 'WhatsApp Image 2021-04-27 at 10.26.53 (1)', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2021-04-27-at-10-26-53-1', '', '', '2021-05-16 06:10:30', '2021-05-16 06:10:30', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(685, 1, '2021-05-16 06:10:32', '2021-05-16 06:10:32', '', 'WhatsApp Image 2021-04-27 at 10.26.53 (2)', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2021-04-27-at-10-26-53-2', '', '', '2021-05-16 06:10:32', '2021-05-16 06:10:32', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(686, 1, '2021-05-16 06:10:39', '2021-05-16 06:10:39', '', 'WhatsApp Image 2021-04-27 at 10.26.53', '', 'inherit', 'open', 'closed', '', 'whatsapp-image-2021-04-27-at-10-26-53', '', '', '2021-05-16 06:10:39', '2021-05-16 06:10:39', '', 0, 'https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53.jpeg', 0, 'attachment', 'image/jpeg', 0),
(706, 1, '2021-12-20 02:33:31', '2021-12-20 02:33:31', '', 'boiler4', '', 'inherit', 'open', 'closed', '', 'boiler4', '', '', '2021-12-20 02:33:31', '2021-12-20 02:33:31', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/boiler4.jpg', 0, 'attachment', 'image/jpeg', 0),
(707, 1, '2021-12-20 02:33:32', '2021-12-20 02:33:32', '', 'boiler5', '', 'inherit', 'open', 'closed', '', 'boiler5', '', '', '2021-12-20 02:33:32', '2021-12-20 02:33:32', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/boiler5.jpg', 0, 'attachment', 'image/jpeg', 0),
(708, 1, '2021-12-20 02:33:34', '2021-12-20 02:33:34', '', 'boiler1', '', 'inherit', 'open', 'closed', '', 'boiler1', '', '', '2021-12-20 02:33:34', '2021-12-20 02:33:34', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/boiler1.jpg', 0, 'attachment', 'image/jpeg', 0),
(709, 1, '2021-12-20 02:33:35', '2021-12-20 02:33:35', '', 'boiler2', '', 'inherit', 'open', 'closed', '', 'boiler2', '', '', '2021-12-20 02:33:35', '2021-12-20 02:33:35', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/boiler2.jpg', 0, 'attachment', 'image/jpeg', 0),
(710, 1, '2021-12-20 02:33:36', '2021-12-20 02:33:36', '', 'boiler3', '', 'inherit', 'open', 'closed', '', 'boiler3', '', '', '2021-12-20 02:33:36', '2021-12-20 02:33:36', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg', 0, 'attachment', 'image/jpeg', 0),
(711, 1, '2021-12-20 02:37:15', '2021-12-20 02:37:15', '', 'Pu1', '', 'inherit', 'open', 'closed', '', 'pu1', '', '', '2021-12-20 02:37:15', '2021-12-20 02:37:15', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/Pu1.jpg', 0, 'attachment', 'image/jpeg', 0),
(712, 1, '2021-12-20 02:38:24', '2021-12-20 02:38:24', '', 'complete1', '', 'inherit', 'open', 'closed', '', 'complete1', '', '', '2021-12-20 02:38:24', '2021-12-20 02:38:24', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/complete1.jpg', 0, 'attachment', 'image/jpeg', 0),
(713, 1, '2021-12-20 02:38:26', '2021-12-20 02:38:26', '', 'complete2', '', 'inherit', 'open', 'closed', '', 'complete2', '', '', '2021-12-20 02:38:26', '2021-12-20 02:38:26', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/complete2.jpg', 0, 'attachment', 'image/jpeg', 0),
(714, 1, '2021-12-20 02:38:27', '2021-12-20 02:38:27', '', 'complete3', '', 'inherit', 'open', 'closed', '', 'complete3', '', '', '2021-12-20 02:38:27', '2021-12-20 02:38:27', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/complete3.jpg', 0, 'attachment', 'image/jpeg', 0),
(715, 1, '2021-12-20 02:38:29', '2021-12-20 02:38:29', '', 'complete4', '', 'inherit', 'open', 'closed', '', 'complete4', '', '', '2021-12-20 02:38:29', '2021-12-20 02:38:29', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/complete4.jpg', 0, 'attachment', 'image/jpeg', 0),
(716, 1, '2021-12-20 02:38:30', '2021-12-20 02:38:30', '', 'complete5', '', 'inherit', 'open', 'closed', '', 'complete5', '', '', '2021-12-20 02:38:30', '2021-12-20 02:38:30', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/complete5.jpg', 0, 'attachment', 'image/jpeg', 0),
(717, 1, '2021-12-20 02:38:32', '2021-12-20 02:38:32', '', 'complete6', '', 'inherit', 'open', 'closed', '', 'complete6', '', '', '2021-12-20 02:38:32', '2021-12-20 02:38:32', '', 17, 'https://omsrislb.my/wp-content/uploads/2021/12/complete6.jpg', 0, 'attachment', 'image/jpeg', 0),
(738, 3, '2023-08-19 01:29:14', '2023-08-19 01:29:14', 'OM SRI SLB ENTERPRISEINSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a>WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECTWE SUPPLYA Quality Cutting-Edge Materials Now More				\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous slide\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next slide\n		<p>WHO WE ARE</p>		\n			<h1>OM SRI SLB</h1>		\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n			<h1>OUR EXPERTISE</h1>		\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="https://omsrislb.my/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60194489946&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n			<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>		\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n			<h2>MOST CLIENT COLLABORATE WITH US</h2>		\n			<a href="https://omsrislb.my/contact/">\n						PORTFOLIO\n					</a>\n															<img width="580" height="387" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 580px) 100vw, 580px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="b178c31" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM2LndlYnAiLCJzbGlkZXNob3ciOiJiMTc4YzMxIn0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="b178c31" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM1LndlYnAiLCJzbGlkZXNob3ciOiJiMTc4YzMxIn0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="b178c31" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM0LndlYnAiLCJzbGlkZXNob3ciOiJiMTc4YzMxIn0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="b178c31" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMzLndlYnAiLCJzbGlkZXNob3ciOiJiMTc4YzMxIn0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="b178c31" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMyLndlYnAiLCJzbGlkZXNob3ciOiJiMTc4YzMxIn0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="b178c31" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMxLndlYnAiLCJzbGlkZXNob3ciOiJiMTc4YzMxIn0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="b178c31" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMwLndlYnAiLCJzbGlkZXNob3ciOiJiMTc4YzMxIn0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n			<h2><a href="https://omsrislb.my/project/">Project List</a></h2>		\n		<p>Our company has experienced in providing insulation services from Boiler Insulation to Superlon Insulation in various projects from various fields including Maggi, YTY, Austin Powder, Empire Damansara, Care Glove and Shangri La Hotel.</p>		\n								<figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.51.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.51" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-2.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.52 (2)" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.52.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.52" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-1.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.53 (1)" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-2.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.53 (2)" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.53" /></figure>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n			<h4>Project List</h4>		\n					<ul>\n							<li>\n										MAGGI \n									</li>\n								<li>\n										YTY\n									</li>\n								<li>\n										AUSTIN POWDER \n									</li>\n								<li>\n										EMPIRE DAMANSARA \n									</li>\n								<li>\n										CARE GLOVE \n									</li>\n								<li>\n										SHANGRI LA HOTEL \n									</li>\n						</ul>\n		<p><b>about us</b></p>		\n			<h2>OM Sri SLB is a\nboiler service company that does\nrepair service maintenance service\nand installation service. </h2>		\n					<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 20 years of experience since 2001 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>The company''s core staff were primarily engineers and professional employees specialised in the provision of energy industry services. We have a clear understanding of the situation in the sector and keep in close touch with our clients. In addition, we are also proud of our professional know-how with respect to the product we serve. With our knowledge of the business environment and technological competency, our strength in sales &amp; marketing will help direct the organisation towards achieving its target.</p>		\n															<img width="544" height="544" src="https://omsrislb.my/wp-content/uploads/2021/01/asset-07.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/asset-07.jpg 544w, https://omsrislb.my/wp-content/uploads/2021/01/asset-07-300x300.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/asset-07-150x150.jpg 150w" sizes="(max-width: 544px) 100vw, 544px" />															\n				0\n							Years of Experience\n				0\n							Winning Global Awards\n				0\n							Complete Total Projects\n				0\n							Happy Local Clients\n		<p>WHAT WE DO</p>		\n			<h2>What Our Clients Say</h2>		\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n										We Can Insulate & Seal Entire Home.<a href="https://wa.me/60102384742">Get a Quote</a>', 'Home New', '', 'publish', 'closed', 'closed', '', 'home-2', '', '', '2023-08-21 02:04:25', '2023-08-21 02:04:25', '', 0, 'https://omsrislb.my/?page_id=738', 0, 'page', '', 0);
INSERT INTO `wpiq_posts` VALUES
(739, 3, '2023-08-19 01:38:14', '2023-08-19 01:38:14', '', 'NEW LOGO', '', 'inherit', 'open', 'closed', '', 'new-logo', '', '', '2023-08-19 01:38:14', '2023-08-19 01:38:14', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/NEW-LOGO.webp', 0, 'attachment', 'image/webp', 0),
(740, 3, '2023-08-19 01:43:40', '2023-08-19 01:43:40', '', 'NEW LOGO (1)', '', 'inherit', 'open', 'closed', '', 'new-logo-1', '', '', '2023-08-19 01:43:40', '2023-08-19 01:43:40', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/NEW-LOGO-1.webp', 0, 'attachment', 'image/webp', 0),
(741, 3, '2023-08-19 01:43:49', '2023-08-19 01:43:49', 'https://omsrislb.my/wp-content/uploads/2023/08/cropped-NEW-LOGO-1.webp', 'cropped-NEW-LOGO-1.webp', '', 'inherit', 'open', 'closed', '', 'cropped-new-logo-1-webp', '', '', '2023-08-19 01:43:49', '2023-08-19 01:43:49', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/cropped-NEW-LOGO-1.webp', 0, 'attachment', 'image/webp', 0),
(806, 3, '2023-08-19 02:57:46', '2023-08-19 02:57:46', '', 'DESKTOP VIEW', '', 'inherit', 'open', 'closed', '', 'desktop-view', '', '', '2023-08-19 02:57:46', '2023-08-19 02:57:46', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/DESKTOP-VIEW.webp', 0, 'attachment', 'image/webp', 0),
(818, 3, '2023-08-19 03:50:57', '2023-08-19 03:50:57', '', '1 (3)', '', 'inherit', 'open', 'closed', '', '1-3', '', '', '2023-08-19 03:50:57', '2023-08-19 03:50:57', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/1-3.webp', 0, 'attachment', 'image/webp', 0),
(819, 3, '2023-08-19 03:51:07', '2023-08-19 03:51:07', '', '2 (1)', '', 'inherit', 'open', 'closed', '', '2-1', '', '', '2023-08-19 03:51:07', '2023-08-19 03:51:07', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/2-1.webp', 0, 'attachment', 'image/webp', 0),
(820, 3, '2023-08-19 03:51:10', '2023-08-19 03:51:10', '', '3', '', 'inherit', 'open', 'closed', '', '3', '', '', '2023-08-19 03:51:10', '2023-08-19 03:51:10', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/3.webp', 0, 'attachment', 'image/webp', 0),
(839, 3, '2023-08-19 04:06:04', '2023-08-19 04:06:04', '', 'DESKTOP VIEW (1) (1)', '', 'inherit', 'open', 'closed', '', 'desktop-view-1-1', '', '', '2023-08-19 04:06:04', '2023-08-19 04:06:04', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/DESKTOP-VIEW-1-1.webp', 0, 'attachment', 'image/webp', 0),
(886, 3, '2023-08-19 07:26:42', '2023-08-19 07:26:42', '', '14', '', 'inherit', 'open', 'closed', '', '14', '', '', '2023-08-19 07:26:42', '2023-08-19 07:26:42', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/14.webp', 0, 'attachment', 'image/webp', 0),
(887, 3, '2023-08-19 07:26:43', '2023-08-19 07:26:43', '', '13', '', 'inherit', 'open', 'closed', '', '13', '', '', '2023-08-19 07:26:43', '2023-08-19 07:26:43', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/13.webp', 0, 'attachment', 'image/webp', 0),
(888, 3, '2023-08-19 07:26:44', '2023-08-19 07:26:44', '', '12', '', 'inherit', 'open', 'closed', '', '12', '', '', '2023-08-19 07:26:44', '2023-08-19 07:26:44', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/12.webp', 0, 'attachment', 'image/webp', 0),
(889, 3, '2023-08-19 07:26:44', '2023-08-19 07:26:44', '', '11', '', 'inherit', 'open', 'closed', '', '11', '', '', '2023-08-19 07:26:44', '2023-08-19 07:26:44', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/11.webp', 0, 'attachment', 'image/webp', 0),
(890, 3, '2023-08-19 07:26:45', '2023-08-19 07:26:45', '', '10', '', 'inherit', 'open', 'closed', '', '10', '', '', '2023-08-19 07:26:45', '2023-08-19 07:26:45', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/10.webp', 0, 'attachment', 'image/webp', 0),
(952, 3, '2023-08-19 08:34:22', '2023-08-19 08:34:22', '', 'WEBSITE OMSRI SLB (600 × 1200px)', '', 'inherit', 'open', 'closed', '', 'website-omsri-slb-600-x-1200px-2', '', '', '2023-08-19 08:34:22', '2023-08-19 08:34:22', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/WEBSITE-OMSRI-SLB-600-×-1200px-1.webp', 0, 'attachment', 'image/webp', 0),
(965, 3, '2023-08-19 08:43:52', '2023-08-19 08:43:52', '', '17', '', 'inherit', 'open', 'closed', '', '17', '', '', '2023-08-19 08:43:52', '2023-08-19 08:43:52', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/17.webp', 0, 'attachment', 'image/webp', 0),
(966, 3, '2023-08-19 08:43:54', '2023-08-19 08:43:54', '', '18', '', 'inherit', 'open', 'closed', '', '18', '', '', '2023-08-19 08:43:54', '2023-08-19 08:43:54', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/18.webp', 0, 'attachment', 'image/webp', 0),
(993, 3, '2023-08-20 01:53:57', '2023-08-20 01:53:57', '', '14 (2)', '', 'inherit', 'open', 'closed', '', '14-2', '', '', '2023-08-20 01:53:57', '2023-08-20 01:53:57', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/14-2.webp', 0, 'attachment', 'image/webp', 0),
(994, 3, '2023-08-20 01:53:58', '2023-08-20 01:53:58', '', '13 (2)', '', 'inherit', 'open', 'closed', '', '13-2', '', '', '2023-08-20 01:53:58', '2023-08-20 01:53:58', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/13-2.webp', 0, 'attachment', 'image/webp', 0),
(995, 3, '2023-08-20 01:53:59', '2023-08-20 01:53:59', '', '12 (2)', '', 'inherit', 'open', 'closed', '', '12-2', '', '', '2023-08-20 01:53:59', '2023-08-20 01:53:59', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/12-2.webp', 0, 'attachment', 'image/webp', 0),
(996, 3, '2023-08-20 01:53:59', '2023-08-20 01:53:59', '', '11 (2)', '', 'inherit', 'open', 'closed', '', '11-2', '', '', '2023-08-20 01:53:59', '2023-08-20 01:53:59', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/11-2.webp', 0, 'attachment', 'image/webp', 0),
(997, 3, '2023-08-20 01:54:00', '2023-08-20 01:54:00', '', '10 (2)', '', 'inherit', 'open', 'closed', '', '10-2', '', '', '2023-08-20 01:54:00', '2023-08-20 01:54:00', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/10-2.webp', 0, 'attachment', 'image/webp', 0),
(1023, 3, '2023-08-20 02:32:45', '2023-08-20 02:32:45', '', 'WEBSITE OMSRI SLB (1) (1)', '', 'inherit', 'open', 'closed', '', 'website-omsri-slb-1-1', '', '', '2023-08-20 02:32:45', '2023-08-20 02:32:45', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/WEBSITE-OMSRI-SLB-1-1.webp', 0, 'attachment', 'image/webp', 0),
(1148, 3, '2023-08-20 04:14:49', '2023-08-20 04:14:49', '', 'WEBSITE OMSRI SLB (1)', '', 'inherit', 'open', 'closed', '', 'website-omsri-slb-1', '', '', '2023-08-20 04:14:49', '2023-08-20 04:14:49', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/WEBSITE-OMSRI-SLB-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(1149, 3, '2023-08-20 04:19:55', '2023-08-20 04:19:55', '', 'NEW LOGO (1)', '', 'inherit', 'open', 'closed', '', 'new-logo-1-2', '', '', '2023-08-20 04:19:55', '2023-08-20 04:19:55', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/NEW-LOGO-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(1235, 3, '2023-08-20 06:27:03', '2023-08-20 06:27:03', '', '18 (1)', '', 'inherit', 'open', 'closed', '', '18-1', '', '', '2023-08-20 06:27:03', '2023-08-20 06:27:03', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/18-1.webp', 0, 'attachment', 'image/webp', 0),
(1236, 3, '2023-08-20 06:27:05', '2023-08-20 06:27:05', '', '17 (1)', '', 'inherit', 'open', 'closed', '', '17-1', '', '', '2023-08-20 06:27:05', '2023-08-20 06:27:05', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/17-1.webp', 0, 'attachment', 'image/webp', 0),
(1237, 3, '2023-08-20 06:27:06', '2023-08-20 06:27:06', '', '16', '', 'inherit', 'open', 'closed', '', '16', '', '', '2023-08-20 06:27:06', '2023-08-20 06:27:06', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/16.webp', 0, 'attachment', 'image/webp', 0),
(1244, 3, '2023-08-20 06:30:20', '2023-08-20 06:30:20', '', '16 (1)', '', 'inherit', 'open', 'closed', '', '16-1', '', '', '2023-08-20 06:30:20', '2023-08-20 06:30:20', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/16-1.webp', 0, 'attachment', 'image/webp', 0),
(1245, 3, '2023-08-20 06:30:33', '2023-08-20 06:30:33', '', '18 (2)', '', 'inherit', 'open', 'closed', '', '18-2', '', '', '2023-08-20 06:30:33', '2023-08-20 06:30:33', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/18-2.webp', 0, 'attachment', 'image/webp', 0),
(1246, 3, '2023-08-20 06:30:47', '2023-08-20 06:30:47', '', '17 (2)', '', 'inherit', 'open', 'closed', '', '17-2', '', '', '2023-08-20 06:30:47', '2023-08-20 06:30:47', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/17-2.webp', 0, 'attachment', 'image/webp', 0),
(1254, 3, '2023-08-20 06:55:24', '2023-08-20 06:55:24', '', '15', '', 'inherit', 'open', 'closed', '', '15', '', '', '2023-08-20 06:55:24', '2023-08-20 06:55:24', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/15.webp', 0, 'attachment', 'image/webp', 0),
(1255, 3, '2023-08-20 06:55:46', '2023-08-20 06:55:46', '', '16 (2)', '', 'inherit', 'open', 'closed', '', '16-2', '', '', '2023-08-20 06:55:46', '2023-08-20 06:55:46', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp', 0, 'attachment', 'image/webp', 0),
(1256, 3, '2023-08-20 06:58:02', '2023-08-20 06:58:02', '', '17 (3)', '', 'inherit', 'open', 'closed', '', '17-3', '', '', '2023-08-20 06:58:02', '2023-08-20 06:58:02', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp', 0, 'attachment', 'image/webp', 0),
(1257, 3, '2023-08-20 06:58:56', '2023-08-20 06:58:56', '', '18 (3)', '', 'inherit', 'open', 'closed', '', '18-3', '', '', '2023-08-20 06:58:56', '2023-08-20 06:58:56', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp', 0, 'attachment', 'image/webp', 0),
(1258, 3, '2023-08-20 06:59:17', '2023-08-20 06:59:17', '', '19', '', 'inherit', 'open', 'closed', '', '19', '', '', '2023-08-20 06:59:17', '2023-08-20 06:59:17', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/19.webp', 0, 'attachment', 'image/webp', 0),
(1259, 3, '2023-08-20 06:59:39', '2023-08-20 06:59:39', '', '20', '', 'inherit', 'open', 'closed', '', '20', '', '', '2023-08-20 06:59:39', '2023-08-20 06:59:39', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/20.webp', 0, 'attachment', 'image/webp', 0),
(1277, 3, '2023-08-20 07:17:13', '2023-08-20 07:17:13', '', '16 (3)', '', 'inherit', 'open', 'closed', '', '16-3', '', '', '2023-08-20 07:17:13', '2023-08-20 07:17:13', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp', 0, 'attachment', 'image/webp', 0),
(1278, 3, '2023-08-20 07:17:27', '2023-08-20 07:17:27', '', '18 (4)', '', 'inherit', 'open', 'closed', '', '18-4', '', '', '2023-08-20 07:17:27', '2023-08-20 07:17:27', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp', 0, 'attachment', 'image/webp', 0),
(1279, 3, '2023-08-20 07:17:52', '2023-08-20 07:17:52', '', '17 (4)', '', 'inherit', 'open', 'closed', '', '17-4', '', '', '2023-08-20 07:17:52', '2023-08-20 07:17:52', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp', 0, 'attachment', 'image/webp', 0),
(1395, 0, '2023-08-20 08:31:59', '2023-08-20 08:31:59', '<!-- wp:navigation-link {"label":"Home","type":"page","id":7,"url":"https://omsrislb.my/","kind":"post-type"} /-->\n\n<!-- wp:navigation-link {"label":"Services","type":"page","description":"","url":"https://omsrislb.my/services/","title":"","kind":"post-type","className":" menu-item menu-item-type-post_type menu-item-object-page"} /-->\n\n<!-- wp:navigation-link {"label":"About","type":"page","description":"","url":"https://omsrislb.my/about/","title":"","kind":"post-type","className":" menu-item menu-item-type-post_type menu-item-object-page"} /-->\n\n<!-- wp:navigation-link {"label":"Project List","type":"page","description":"","url":"https://omsrislb.my/project-list/","title":"","kind":"post-type","className":" menu-item menu-item-type-post_type menu-item-object-page"} /-->\n\n<!-- wp:navigation-link {"label":"Testimonials","type":"page","description":"","url":"https://omsrislb.my/testimonials/","title":"","kind":"post-type","className":" menu-item menu-item-type-post_type menu-item-object-page"} /-->\n\n<!-- wp:navigation-link {"label":"Contact","type":"page","description":"","url":"https://omsrislb.my/contact/","title":"","kind":"post-type","className":" menu-item menu-item-type-post_type menu-item-object-page"} /-->', 'menu', '', 'publish', 'closed', 'closed', '', 'menu', '', '', '2023-08-21 03:38:25', '2023-08-21 03:38:25', '', 0, 'https://omsrislb.my/menu/', 0, 'wp_navigation', '', 0),
(1450, 3, '2023-08-20 23:05:37', '2023-08-20 23:05:37', '{"version": 2, "isGlobalStylesUserThemeJSON": true }', 'Custom Styles', '', 'publish', 'closed', 'closed', '', 'wp-global-styles-twentytwentythree', '', '', '2023-08-20 23:05:37', '2023-08-20 23:05:37', '', 0, 'https://omsrislb.my/wp-global-styles-twentytwentythree/', 0, 'wp_global_styles', '', 0),
(1454, 3, '2023-08-21 01:00:18', '2023-08-21 01:00:18', '', 'CLIENTS LOGO (1)', '', 'inherit', 'open', 'closed', '', 'clients-logo-1', '', '', '2023-08-21 01:00:18', '2023-08-21 01:00:18', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.png', 0, 'attachment', 'image/png', 0),
(1456, 3, '2023-08-21 01:02:11', '2023-08-21 01:02:11', '', 'CLIENTS LOGO (1)', '', 'inherit', 'open', 'closed', '', 'clients-logo-1-2', '', '', '2023-08-21 01:02:11', '2023-08-21 01:02:11', '', 738, 'https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp', 0, 'attachment', 'image/webp', 0),
(1469, 3, '2023-08-21 01:48:56', '2023-08-21 01:48:56', '', '36', '', 'inherit', 'open', 'closed', '', '36-2', '', '', '2023-08-21 01:48:56', '2023-08-21 01:48:56', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/36.webp', 0, 'attachment', 'image/webp', 0),
(1470, 3, '2023-08-21 01:48:58', '2023-08-21 01:48:58', '', '35', '', 'inherit', 'open', 'closed', '', '35-2', '', '', '2023-08-21 01:48:58', '2023-08-21 01:48:58', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/35.webp', 0, 'attachment', 'image/webp', 0),
(1471, 3, '2023-08-21 01:49:00', '2023-08-21 01:49:00', '', '34', '', 'inherit', 'open', 'closed', '', '34-2', '', '', '2023-08-21 01:49:00', '2023-08-21 01:49:00', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/34.webp', 0, 'attachment', 'image/webp', 0),
(1472, 3, '2023-08-21 01:49:02', '2023-08-21 01:49:02', '', '33', '', 'inherit', 'open', 'closed', '', '33-2', '', '', '2023-08-21 01:49:02', '2023-08-21 01:49:02', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/33.webp', 0, 'attachment', 'image/webp', 0),
(1473, 3, '2023-08-21 01:49:04', '2023-08-21 01:49:04', '', '32', '', 'inherit', 'open', 'closed', '', '32-2', '', '', '2023-08-21 01:49:04', '2023-08-21 01:49:04', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/32.webp', 0, 'attachment', 'image/webp', 0),
(1474, 3, '2023-08-21 01:49:06', '2023-08-21 01:49:06', '', '31', '', 'inherit', 'open', 'closed', '', '31', '', '', '2023-08-21 01:49:06', '2023-08-21 01:49:06', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/31.webp', 0, 'attachment', 'image/webp', 0),
(1475, 3, '2023-08-21 01:49:08', '2023-08-21 01:49:08', '', '30', '', 'inherit', 'open', 'closed', '', '30', '', '', '2023-08-21 01:49:08', '2023-08-21 01:49:08', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/30.webp', 0, 'attachment', 'image/webp', 0),
(1501, 3, '2023-08-21 03:25:43', '2023-08-21 03:25:43', '<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a target="_blank" rel="noopener">\n						Facebook-f\n						<svg viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg>					</a>\n					<a target="_blank" rel="noopener">\n						Twitter\n						<svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"></path></svg>					</a>\n					<a target="_blank" rel="noopener">\n						Google-plus-g\n						<svg viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><path d="M386.061 228.496c1.834 9.692 3.143 19.384 3.143 31.956C389.204 370.205 315.599 448 204.8 448c-106.084 0-192-85.915-192-192s85.916-192 192-192c51.864 0 95.083 18.859 128.611 50.292l-52.126 50.03c-14.145-13.621-39.028-29.599-76.485-29.599-65.484 0-118.92 54.221-118.92 121.277 0 67.056 53.436 121.277 118.92 121.277 75.961 0 104.513-54.745 108.965-82.773H204.8v-66.009h181.261zm185.406 6.437V179.2h-56.001v55.733h-55.733v56.001h55.733v55.733h56.001v-55.733H627.2v-56.001h-55.733z"></path></svg>					</a>\n					<a target="_blank" rel="noopener">\n						Instagram\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"></path></svg>					</a>\n					<a target="_blank" rel="noopener">\n						Youtube\n						<svg viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z"></path></svg>					</a>\n				<a href="tel:6102384742">\n								</a>\n				<h3>\n					<a href="tel:6102384742" >\n						 +(60) 10 238 4742					</a>\n				</h3>\n															<img width="563" height="188" src="https://omsrislb.my/wp-content/uploads/2023/08/cropped-NEW-LOGO-1.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/cropped-NEW-LOGO-1.webp 563w, https://omsrislb.my/wp-content/uploads/2023/08/cropped-NEW-LOGO-1-300x100.webp 300w" sizes="(max-width: 563px) 100vw, 563px" />															\n				<a href="mailto:omsri99@gmail.com">\n								</a>\n				<h3>\n					<a href="mailto:omsri99@gmail.com" >\n						omsri99@gmail.com					</a>\n				</h3>', 'header menu 1', '', 'publish', 'closed', 'closed', '', 'header-menu-1', '', '', '2023-08-21 03:25:43', '2023-08-21 03:25:43', '', 0, 'https://omsrislb.my/?elementor_library=header-menu-1', 0, 'elementor_library', '', 0),
(1509, 3, '2023-08-21 03:30:57', '2023-08-21 03:30:57', 'OM SRI SLB ENTERPRISEINSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a>WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECTWE SUPPLYA Quality Cutting-Edge Materials Now More				\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous slide\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next slide\n		<p>WHO WE ARE</p>		\n			<h1>OM SRI SLB</h1>		\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n			<h1>OUR EXPERTISE</h1>		\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="https://omsrislb.my/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60194489946&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://omsrislb.my">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n			<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>		\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n			<h2>MOST CLIENT COLLABORATE WITH US</h2>		\n			<a href="https://omsrislb.my/contact/">\n						PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="1905df27" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM2LndlYnAiLCJzbGlkZXNob3ciOiIxOTA1ZGYyNyJ9" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="1905df27" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM1LndlYnAiLCJzbGlkZXNob3ciOiIxOTA1ZGYyNyJ9" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="1905df27" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzM0LndlYnAiLCJzbGlkZXNob3ciOiIxOTA1ZGYyNyJ9" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="1905df27" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMzLndlYnAiLCJzbGlkZXNob3ciOiIxOTA1ZGYyNyJ9" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="1905df27" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMyLndlYnAiLCJzbGlkZXNob3ciOiIxOTA1ZGYyNyJ9" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="1905df27" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMxLndlYnAiLCJzbGlkZXNob3ciOiIxOTA1ZGYyNyJ9" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="1905df27" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyM1wvMDhcLzMwLndlYnAiLCJzbGlkZXNob3ciOiIxOTA1ZGYyNyJ9" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n			<h2><a href="https://omsrislb.my/project/">Project List</a></h2>		\n		<p>Our company has experienced in providing insulation services from Boiler Insulation to Superlon Insulation in various projects from various fields including Maggi, YTY, Austin Powder, Empire Damansara, Care Glove and Shangri La Hotel.</p>		\n								<figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.51.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.51" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.52-2.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.52 (2)" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.52.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.52" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-1.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.53 (1)" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53-2.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.53 (2)" /></figure><figure><img src="https://omsrislb.my/wp-content/uploads/2021/05/WhatsApp-Image-2021-04-27-at-10.26.53.jpeg" alt="WhatsApp Image 2021-04-27 at 10.26.53" /></figure>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n			<h4>Project List</h4>		\n					<ul>\n							<li>\n										MAGGI \n									</li>\n								<li>\n										YTY\n									</li>\n								<li>\n										AUSTIN POWDER \n									</li>\n								<li>\n										EMPIRE DAMANSARA \n									</li>\n								<li>\n										CARE GLOVE \n									</li>\n								<li>\n										SHANGRI LA HOTEL \n									</li>\n						</ul>\n		<p><b>about us</b></p>		\n			<h2>OM Sri SLB is a\nboiler service company that does\nrepair service maintenance service\nand installation service. </h2>		\n					<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 20 years of experience since 2001 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>The company''s core staff were primarily engineers and professional employees specialised in the provision of energy industry services. We have a clear understanding of the situation in the sector and keep in close touch with our clients. In addition, we are also proud of our professional know-how with respect to the product we serve. With our knowledge of the business environment and technological competency, our strength in sales &amp; marketing will help direct the organisation towards achieving its target.</p>		\n															<img width="544" height="544" src="https://omsrislb.my/wp-content/uploads/2021/01/asset-07.jpg" alt="" loading="lazy" srcset="https://omsrislb.my/wp-content/uploads/2021/01/asset-07.jpg 544w, https://omsrislb.my/wp-content/uploads/2021/01/asset-07-300x300.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/asset-07-150x150.jpg 150w" sizes="(max-width: 544px) 100vw, 544px" />															\n				0\n							Years of Experience\n				0\n							Winning Global Awards\n				0\n							Complete Total Projects\n				0\n							Happy Local Clients\n		<p>WHAT WE DO</p>		\n			<h2>What Our Clients Say</h2>		\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n										We Can Insulate & Seal Entire Home.<a href="https://wa.me/60102384742">Get a Quote</a>', 'body full width', '', 'publish', 'closed', 'closed', '', 'body-full-width', '', '', '2023-08-21 03:30:58', '2023-08-21 03:30:58', '', 0, 'https://omsrislb.my/?elementor_library=body-full-width', 0, 'elementor_library', '', 0),
(1559, 3, '2023-08-21 07:23:49', '2023-08-21 07:23:49', '', 'CLIENTS LOGO (2) (2)', '', 'inherit', 'open', 'closed', '', 'clients-logo-2-2', '', '', '2023-08-21 07:23:49', '2023-08-21 07:23:49', '', 7, 'https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp', 0, 'attachment', 'image/webp', 0),
(1575, 3, '2023-08-21 07:59:09', '0000-00-00 00:00:00', '<h3>Schedule Appointment</h3>		\n		Fill out the form below, and we will be in touch shortly.', 'contact form general', '', 'draft', 'closed', 'closed', '', '', '', '', '2023-08-21 07:59:09', '2023-08-21 07:59:09', '', 0, 'https://omsrislb.my/?post_type=elementor_library&#038;p=1575', 0, 'elementor_library', '', 0),
(1715, 3, '2023-08-22 00:54:48', '2023-08-22 00:54:48', '', 'placeholder-282.png', '', 'inherit', 'open', 'closed', '', 'placeholder-282-png', '', '', '2023-08-22 00:54:48', '2023-08-22 00:54:48', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/placeholder-282.png', 0, 'attachment', 'image/png', 0),
(1716, 3, '2023-08-22 00:54:48', '2023-08-22 00:54:48', '', 'info-box-icon-21.png', '', 'inherit', 'open', 'closed', '', 'info-box-icon-21-png', '', '', '2023-08-22 00:54:48', '2023-08-22 00:54:48', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/info-box-icon-21.png', 0, 'attachment', 'image/png', 0),
(1717, 3, '2023-08-22 00:54:48', '2023-08-22 00:54:48', '', 'placeholder-240.png', '', 'inherit', 'open', 'closed', '', 'placeholder-240-png', '', '', '2023-08-22 00:54:48', '2023-08-22 00:54:48', '', 0, 'https://omsrislb.my/wp-content/uploads/2023/08/placeholder-240.png', 0, 'attachment', 'image/png', 0),
(1883, 1, '2025-03-26 07:12:00', '2025-03-26 07:12:00', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:12:00', '2025-03-26 07:12:00', '', 7, 'https://omsrislb.my/?p=1883', 0, 'revision', '', 0);
INSERT INTO `wpiq_posts` VALUES
(1884, 1, '2025-03-26 07:12:00', '2025-03-26 07:12:00', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:12:00', '2025-03-26 07:12:00', '', 7, 'https://omsrislb.my/?p=1884', 0, 'revision', '', 0),
(1885, 1, '2025-03-26 07:12:01', '2025-03-26 07:12:01', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:12:01', '2025-03-26 07:12:01', '', 7, 'https://omsrislb.my/?p=1885', 0, 'revision', '', 0),
(1886, 1, '2025-03-26 07:21:42', '2025-03-26 07:21:42', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:21:42', '2025-03-26 07:21:42', '', 17, 'https://omsrislb.my/?p=1886', 0, 'revision', '', 0),
(1887, 1, '2025-03-26 07:21:42', '2025-03-26 07:21:42', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:21:42', '2025-03-26 07:21:42', '', 17, 'https://omsrislb.my/?p=1887', 0, 'revision', '', 0);
INSERT INTO `wpiq_posts` VALUES
(1888, 1, '2025-03-26 07:21:42', '2025-03-26 07:21:42', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:21:42', '2025-03-26 07:21:42', '', 17, 'https://omsrislb.my/?p=1888', 0, 'revision', '', 0),
(1889, 1, '2025-03-26 07:22:13', '2025-03-26 07:22:13', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:22:13', '2025-03-26 07:22:13', '', 17, 'https://omsrislb.my/?p=1889', 0, 'revision', '', 0),
(1890, 1, '2025-03-26 07:22:13', '2025-03-26 07:22:13', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:22:13', '2025-03-26 07:22:13', '', 17, 'https://omsrislb.my/?p=1890', 0, 'revision', '', 0),
(1891, 1, '2025-03-26 07:22:14', '2025-03-26 07:22:14', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:22:14', '2025-03-26 07:22:14', '', 17, 'https://omsrislb.my/?p=1891', 0, 'revision', '', 0),
(1893, 1, '2025-03-26 07:28:18', '2025-03-26 07:28:18', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:28:18', '2025-03-26 07:28:18', '', 17, 'https://omsrislb.my/?p=1893', 0, 'revision', '', 0),
(1894, 1, '2025-03-26 07:28:18', '2025-03-26 07:28:18', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>							Previous\n							<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>							Next\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:28:18', '2025-03-26 07:28:18', '', 17, 'https://omsrislb.my/?p=1894', 0, 'revision', '', 0);
INSERT INTO `wpiq_posts` VALUES
(1895, 1, '2025-03-26 07:28:19', '2025-03-26 07:28:19', '<h2>Boiler Insulation</h2>				\n		<p>A boiler is a closed vessel in which fluid (water or steam) is heated. Fluid that is intended to be heated is transported to and enters the boiler via a pipe. The fluid then goes through a heating process and is carried away through pipes to its destination. The fluid-carrying pipes that enter and exit a boiler are called boiler pipes.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="880" height="658" src="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/boiler3.jpg 880w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-300x224.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/12/boiler3-768x574.jpg 768w" sizes="(max-width: 880px) 100vw, 880px" />\n			</figure><figure class=''gallery-item''>\n				<img width="1008" height="468" src="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090.jpg 1008w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-300x139.jpg 300w, https://omsrislb.my/wp-content/uploads/2021/01/IMG-20201123-WA0090-768x357.jpg 768w" sizes="(max-width: 1008px) 100vw, 1008px" />\n			</figure>\n					<h2>Steam Pipe Insulation</h2>				\n		<p>Steam is a common energy/heat source used in a wide variety of manufacturing and Industrial operations. Common uses include freeze protection, process heating, radiant heating (air), hot water heating, cleaning, moisturizing, humidifying, propulsion, power generation, and much more.</p><p> </p><p> </p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>\n<p>- Calcium Silicate&nbsp;</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>P.U Insulation</h2>				\n		<p>Low temperatures are among the most demanding disciplines of insulation technology. When it comes to storing and transporting cold or cryogenic media the insulation is almost always an indispensable part of the operating processes.</p><h4>Materials:</h4>\n<p></p><p>- Polyurethane Foam (P.U)</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n			<figure class=''gallery-item''>\n				<img width="494" height="655" src="https://omsrislb.my/wp-content/uploads/2021/12/complete6.jpg" alt="" decoding="async" srcset="https://omsrislb.my/wp-content/uploads/2021/12/complete6.jpg 494w, https://omsrislb.my/wp-content/uploads/2021/12/complete6-226x300.jpg 226w" sizes="(max-width: 494px) 100vw, 494px" />\n			</figure>\n					<h2>Rockwool Insulation</h2>				\n		<p>Superlon insulation is engineered with the highest standard. Low thermal conductivity and high moisture resistance in Superlon insulation is one of the best thermal conductivity in the market. </p><h4>Materials:</h4>\n<p></p><ul><li>Calcium Silicate</li><li>Rockwool Slab</li></ul>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>\n					<h2>Ducting Insulation</h2>				\n		<p>Ducts that transport cool air also need a good thermal insulation solution. The insulation maintains the lower temperature inside the duct by insulating it from the warmer ambient air temperature. If the cool air in the duct is heated by the surrounding air, the HVAC system functions less effectively and you will need more energy to maintain the duct''s correct temperature. If the ducts are properly insulated, the whole ventilation system will work as designed and you need less equipment calibration.</p><h4>Materials:</h4>\n<p></p><p>- Rockwool</p>		\n					<a href="https://wa.me/60102384742">\n				<svg aria-hidden="true" viewBox="0 0 576 512" xmlns="http://www.w3.org/2000/svg"><path d="M532 386.2c27.5-27.1 44-61.1 44-98.2 0-80-76.5-146.1-176.2-157.9C368.3 72.5 294.3 32 208 32 93.1 32 0 103.6 0 192c0 37 16.5 71 44 98.2-15.3 30.7-37.3 54.5-37.7 54.9-6.3 6.7-8.1 16.5-4.4 25 3.6 8.5 12 14 21.2 14 53.5 0 96.7-20.2 125.2-38.8 9.2 2.1 18.7 3.7 28.4 4.9C208.1 407.6 281.8 448 368 448c20.8 0 40.8-2.4 59.8-6.8C456.3 459.7 499.4 480 553 480c9.2 0 17.5-5.5 21.2-14 3.6-8.5 1.9-18.3-4.4-25-.4-.3-22.5-24.1-37.8-54.8zm-392.8-92.3L122.1 305c-14.1 9.1-28.5 16.3-43.1 21.4 2.7-4.7 5.4-9.7 8-14.8l15.5-31.1L77.7 256C64.2 242.6 48 220.7 48 192c0-60.7 73.3-112 160-112s160 51.3 160 112-73.3 112-160 112c-16.5 0-33-1.9-49-5.6l-19.8-4.5zM498.3 352l-24.7 24.4 15.5 31.1c2.6 5.1 5.3 10.1 8 14.8-14.6-5.1-29-12.3-43.1-21.4l-17.1-11.1-19.9 4.6c-16 3.7-32.5 5.6-49 5.6-54 0-102.2-20.1-131.3-49.7C338 339.5 416 272.9 416 192c0-3.4-.4-6.7-.7-10C479.7 196.5 528 238.8 528 288c0 28.7-16.2 50.6-29.7 64z"></path></svg>			\n									Talk to Us\n					</a>', 'Services', '', 'inherit', 'closed', 'closed', '', '17-revision-v1', '', '', '2025-03-26 07:28:19', '2025-03-26 07:28:19', '', 17, 'https://omsrislb.my/?p=1895', 0, 'revision', '', 0),
(1896, 1, '2025-03-26 07:32:35', '2025-03-26 07:32:35', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:32:35', '2025-03-26 07:32:35', '', 7, 'https://omsrislb.my/?p=1896', 0, 'revision', '', 0),
(1897, 1, '2025-03-26 07:32:35', '2025-03-26 07:32:35', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:32:35', '2025-03-26 07:32:35', '', 7, 'https://omsrislb.my/?p=1897', 0, 'revision', '', 0),
(1898, 1, '2025-03-26 07:32:35', '2025-03-26 07:32:35', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:32:35', '2025-03-26 07:32:35', '', 7, 'https://omsrislb.my/?p=1898', 0, 'revision', '', 0);
INSERT INTO `wpiq_posts` VALUES
(1899, 1, '2025-03-26 07:33:30', '2025-03-26 07:33:30', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:33:30', '2025-03-26 07:33:30', '', 7, 'https://omsrislb.my/?p=1899', 0, 'revision', '', 0),
(1900, 1, '2025-03-26 07:33:30', '2025-03-26 07:33:30', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:33:30', '2025-03-26 07:33:30', '', 7, 'https://omsrislb.my/?p=1900', 0, 'revision', '', 0),
(1901, 1, '2025-03-26 07:33:30', '2025-03-26 07:33:30', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:33:30', '2025-03-26 07:33:30', '', 7, 'https://omsrislb.my/?p=1901', 0, 'revision', '', 0);
INSERT INTO `wpiq_posts` VALUES
(1902, 1, '2025-03-26 07:35:04', '2025-03-26 07:35:04', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:35:04', '2025-03-26 07:35:04', '', 7, 'https://omsrislb.my/?p=1902', 0, 'revision', '', 0),
(1903, 1, '2025-03-26 07:35:04', '2025-03-26 07:35:04', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:35:04', '2025-03-26 07:35:04', '', 7, 'https://omsrislb.my/?p=1903', 0, 'revision', '', 0),
(1904, 1, '2025-03-26 07:35:04', '2025-03-26 07:35:04', 'OM SRI SLB INSULATION SPECIALIST SINCE 2000<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+OM+SRI+SLB+">GET QUOTE</a><a href="https://omsrislb.my/project-list/">WE INSTALLOur skilled team ensures\nflawless installationOUR PROJECT</a><a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Give+me+detail+about+Item+supply+">WE SUPPLYA Quality Cutting-Edge Materials Now More</a>				\n                                    <a href="https://omsrislb.my/services/">\n                    OUR SERVICES                </a>\n            <a href="#supply">\n                    WHAT WE SUPPLY                </a>\n					<h1>WHO WE ARE</h1>				\n		<p>INSULATION SPECIALIST SINCE 2000</p>		\n                                                <h2>\n                        OM SRI SLB ENGINEERING SDN BHD (1600769-H)\n                    </h2>\n                        Presently Running                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n                                                <h2>\n                        OM SRI SLB ENTRPRRISE (001290233-V)\n                    </h2>\nFormally Know As                    \n                                                            <a href="https://wa.me/60102384741?text=Hello%20%F0%9F%98%83%F0%9F%91%8B!%20I&#039;m%20looking%20for%20pipe%20insulation%20services.%20Could%20you%20please%20provide%20more%20information%20or%20a%20quote%20for:%E2%80%A2%20Thermal%20Oil%20Pipe%20Insulation%E2%80%A2%20Cold%20Water%20Pipe%20Insulation%E2%80%A2%20Tank%20Insulation%E2%80%A2%20Boiler%20Insulation%E2%80%A2%20Pipe%20Insulation%20Repair%E2%80%A2%20Supply%20of%20Insulation%20Materials">\n                                    TALK WITH US                                </a>\n					<h1>OUR EXPERTISE</h1>				\n		<p><strong>Your Complete Insulation Solution</strong></p><p>Our skilled team ensures flawless installation, translating materials into effective systems. Choose sustainability, operational excellence, and reliability with InsuFlow. Elevate your projects today!</p>		\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#boiler">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/15.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/15.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/15-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/15-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/15-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#ducting">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/17-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#calcium">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/19.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/19.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/19-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/19-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/19-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#steam">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-2.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/16-2-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com/services/#cold">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-3.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/18-3-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n																<a href="http://omsrislb.com">\n							<img width="875" height="875" src="https://omsrislb.my/wp-content/uploads/2023/08/20.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/20.webp 875w, https://omsrislb.my/wp-content/uploads/2023/08/20-300x300.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/20-150x150.webp 150w, https://omsrislb.my/wp-content/uploads/2023/08/20-768x768.webp 768w" sizes="(max-width: 875px) 100vw, 875px" />								</a>\n		<p>SEEKING POTENTIAL SUPPLIERS?</p>		\n					<h1>WE SUPPLY<br>ALL THE INSULATION EQUIPMENT</h1>				\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/17-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/17-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/18-4.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/18-4-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n															<img width="525" height="613" src="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/16-3.webp 525w, https://omsrislb.my/wp-content/uploads/2023/08/16-3-257x300.webp 257w" sizes="(max-width: 525px) 100vw, 525px" />															\n					<h2>take a look our premier clients</h2>				\n					<a href="https://omsrislb.my/project-list/">\n									PORTFOLIO\n					</a>\n															<img width="825" height="550" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1.webp 825w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-300x200.webp 300w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-1-768x512.webp 768w" sizes="(max-width: 825px) 100vw, 825px" />															\n								<a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="36" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ2OSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzYud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/36.webp" alt="36" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="35" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzUud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/35.webp" alt="35" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="34" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzQud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/34.webp" alt="34" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="33" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MiwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzMud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/33.webp" alt="33" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="32" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3MywidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzIud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/32.webp" alt="32" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="31" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NCwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzEud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/31.webp" alt="31" /></figure></a><a data-elementor-open-lightbox="yes" data-elementor-lightbox-slideshow="6a739ff6" data-elementor-lightbox-title="30" data-e-action-hash="#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6MTQ3NSwidXJsIjoiaHR0cHM6XC9cL29tc3Jpc2xiLm15XC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wOFwvMzAud2VicCIsInNsaWRlc2hvdyI6IjZhNzM5ZmY2In0%3D" href="https://omsrislb.my/project-list/"><figure><img src="https://omsrislb.my/wp-content/uploads/2023/08/30.webp" alt="30" /></figure></a>			\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M646 125C629 125 613 133 604 142L308 442C296 454 292 471 292 487 292 504 296 521 308 533L604 854C617 867 629 875 646 875 663 875 679 871 692 858 704 846 713 829 713 812 713 796 708 779 692 767L438 487 692 225C700 217 708 204 708 187 708 171 704 154 692 142 675 129 663 125 646 125Z"></path></svg>					\n						<svg aria-hidden="true" viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg"><path d="M696 533C708 521 713 504 713 487 713 471 708 454 696 446L400 146C388 133 375 125 354 125 338 125 325 129 313 142 300 154 292 171 292 187 292 204 296 221 308 233L563 492 304 771C292 783 288 800 288 817 288 833 296 850 308 863 321 871 338 875 354 875 371 875 388 867 400 854L696 533Z"></path></svg>					\n		<p><b>about us</b></p>		\n					<h2>SUPPLY AND INSTALLALLATION OF INSULATION work almost 30 years</h2>				\n							<ul>\n							<li>\n										We are located in Ijok, Kuala Selangor \n									</li>\n								<li>\n										Founder of this company is Mr. Muniandy Arunasalam\n									</li>\n								<li>\n										Om Sri SLB has 23 years of experience since 2000 where they''re able to give full complete service. \n									</li>\n						</ul>\n		<p><b>Objectives</b></p><p>Experience excellence with our insulation expertise. We supply and install with precision, offering tailored materials and seamless installation. Trust us for a hassle-free, end-to-end solution that ensures peak performance and energy efficiency. Your top choice for quality insulation work.</p>		\n															<img width="750" height="500" src="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp" alt="" srcset="https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2.webp 750w, https://omsrislb.my/wp-content/uploads/2023/08/CLIENTS-LOGO-2-2-300x200.webp 300w" sizes="(max-width: 750px) 100vw, 750px" />															\n			Years of Experience			\n				0\n			Premier Clients			\n				0\n			Complete Total Projects			\n				0\n		<p>WHAT WE DO</p>		\n					<h2>What Our Clients Say</h2>				\n						They knew what exactly I needed when I told them the problems of my factory. Thank you, Om Sri SLB! \n								<cite>Belala PhilipsService Woman</cite>			\n						A real professional engineers and easy to work with. It’s a correct decision to contact Om Sri SLB for installing insulation in my factory.\n								<cite>Maimai ChowBusiness Woman</cite>			\n							<ul>\n							<li>\n							<svg aria-hidden="true" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>						\n										Mon - Fri: 9:00 - 18:30\n									</li>\n						</ul>\n					<a href="https://api.whatsapp.com/send?phone=60102384741&#038;text=Hi+Can+I+know+more+about+OM+SRI+SLB+" target="_blank">\n						Whatsapp\n						<svg viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"></path></svg>					</a>\n					<a href="mailto:omsrislb99@gmail.com" target="_blank">\n						Icon-email\n											</a>\n					<a href="https://www.google.com/maps/dir/3.1385059,101.6869895/A,PT,+OM+SRI+SLB+ENTERPRISE,+2498,+Jalan+Kuala+Selangor,+Kampung+Baharu,+45600+Kuala+Selangor,+Selangor/@3.2200861,101.3968719,11z/data=!3m1!4b1!4m9!4m8!1m1!4e1!1m5!1m1!1s0x31cc5dcf8817f6e9:0xba4c4246550ca7f2!2m2!1d101.4363805!2d3.3016928?entry=ttu" target="_blank">\n						Map-marker-alt\n						<svg viewBox="0 0 384 512" xmlns="http://www.w3.org/2000/svg"><path d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>					</a>\n					<h2>Get In touch</h2>				\n		[whatsapp_contact_form]', 'Home', '', 'inherit', 'closed', 'closed', '', '7-revision-v1', '', '', '2025-03-26 07:35:04', '2025-03-26 07:35:04', '', 7, 'https://omsrislb.my/?p=1904', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_snippets`
--

CREATE TABLE `wpiq_snippets` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `name` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `code` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tags` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scope` varchar(15) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'global',
  `priority` smallint NOT NULL DEFAULT '10',
  `active` tinyint(1) NOT NULL DEFAULT '0',
  `modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `revision` bigint NOT NULL DEFAULT '1',
  `cloud_id` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `scope` (`scope`),
  KEY `active` (`active`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_snippets`
--

INSERT INTO `wpiq_snippets` VALUES
(1, 'Make upload filenames lowercase', 'Makes sure that image and file uploads have lowercase filenames.\n\nThis is a sample snippet. Feel free to use it, edit it, or remove it.', 'add_filter( ''sanitize_file_name'', ''mb_strtolower'' );', 'sample, media', 'global', 10, 0, '2025-03-19 17:19:45', 2, NULL),
(2, 'Disable admin bar', 'Turns off the WordPress admin bar for everyone except administrators.\n\nThis is a sample snippet. Feel free to use it, edit it, or remove it.', 'add_action( ''wp'', function () {\n	if ( ! current_user_can( ''manage_options'' ) ) {\n		show_admin_bar( false );\n	}\n} );', 'sample, admin-bar', 'front-end', 10, 0, '2025-03-19 17:19:45', 2, NULL),
(3, 'Allow smilies', 'Allows smiley conversion in obscure places.\n\nThis is a sample snippet. Feel free to use it, edit it, or remove it.', 'add_filter( ''widget_text'', ''convert_smilies'' );\nadd_filter( ''the_title'', ''convert_smilies'' );\nadd_filter( ''wp_title'', ''convert_smilies'' );\nadd_filter( ''get_bloginfo'', ''convert_smilies'' );', 'sample', 'global', 10, 0, '2025-03-19 17:19:45', 2, NULL),
(4, 'Current year', 'Shortcode for inserting the current year into a post or page..\n\nThis is a sample snippet. Feel free to use it, edit it, or remove it.', '<?php echo date( ''Y'' ); ?>', 'sample, dates', 'content', 10, 0, '2025-03-19 17:19:45', 2, NULL),
(5, ' whatsapp form', '<p>[whatsapp_contact_form]</p>', 'function whatsapp_contact_form() {\n    ob_start(); ?>\n    <div class="contact-form-wrapper">\n        <div class="contact-form-container">\n            <form id="contactForm" class="whatsapp-form">\n                <label>Name</label>\n                <input type="text" id="name" placeholder="Name" required>\n\n                <label>Phone</label>\n                <input type="tel" id="phone" placeholder="01234...." required>\n\n                <label>Email</label>\n                <input type="email" id="email" placeholder="Email">\n\n                <label>Your Enquiry</label>\n                <div class="radio-group">\n                    <label><input type="radio" name="inquiryType" value="Quotation"> Quotation</label>\n                    <label><input type="radio" name="inquiryType" value="Maintenance"> Maintenance</label>\n                    <label><input type="radio" name="inquiryType" value="Complaint"> Complain</label>\n                    <label><input type="radio" name="inquiryType" value="Others"> Others</label>\n                </div>\n\n                <label>Message</label>\n                <textarea id="message" placeholder="Describe anything here..."></textarea>\n\n                <button type="button" onclick="sendToWhatsApp()">Send</button>\n            </form>\n        </div>\n    </div>\n\n    <script>\n        function sendToWhatsApp() {\n            let name = document.getElementById("name").value;\n            let phone = document.getElementById("phone").value;\n            let email = document.getElementById("email").value;\n            let inquiryType = document.querySelector(''input[name="inquiryType"]:checked'')?.value || "Not specified";\n            let message = document.getElementById("message").value || "No additional details provided";\n\n            let whatsappNumber = "60102384741"; // Admin''s WhatsApp Number\n            let whatsappURL = `https://wa.me/${whatsappNumber}?text=Hello, my name is ${name}.%0A📞 Phone: ${phone}%0A📧 Email: ${email}%0A📝 Inquiry Type: ${inquiryType}%0A💬 Message: ${message}`;\n            \n            window.open(whatsappURL, "_blank");\n        }\n    </script>\n\n    <style>\n        .contact-form-wrapper {\n            display: flex;\n            justify-content: center;\n            align-items: center;\n            width: 100%;\n        }\n\n        .contact-form-container {\n            max-width: 1000px;\n            background: white;\n            padding: 20px;\n            border-radius: 8px;\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\n            font-family: Arial, sans-serif;\n            text-align: left;\n        }\n\n        .whatsapp-form label {\n            font-size: 14px;\n            font-weight: bold;\n            margin-top: 10px;\n            display: block;\n        }\n\n        .whatsapp-form input,\n        .whatsapp-form textarea {\n            width: 100%;\n            padding: 8px;\n            margin-top: 5px;\n            border: 1px solid #ccc;\n            border-radius: 5px;\n        }\n\n        .radio-group {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 10px;\n        }\n\n        .whatsapp-form button {\n            width: 100%;\n            background-color: #28a745;\n            color: white;\n            padding: 10px;\n            border: none;\n            margin-top: 10px;\n            cursor: pointer;\n            font-size: 16px;\n            border-radius: 5px;\n        }\n\n        .whatsapp-form button:hover {\n            background-color: #218838;\n        }\n    </style>\n    <?php\n    return ob_get_clean();\n}\nadd_shortcode(''whatsapp_contact_form'', ''whatsapp_contact_form'');\n', '', 'global', 10, 1, '2025-03-19 17:40:46', 9, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_termmeta`
--

CREATE TABLE `wpiq_termmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_terms`
--

CREATE TABLE `wpiq_terms` (
  `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_terms`
--

INSERT INTO `wpiq_terms` VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'header', 'header', 0),
(3, 'menu', 'menu', 0),
(4, 'footer', 'footer', 0),
(5, 'twentytwentythree', 'twentytwentythree', 0),
(6, 'page', 'page', 0),
(7, 'popup', 'popup', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_term_relationships`
--

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

--
-- Dumping data for table `wpiq_term_relationships`
--

INSERT INTO `wpiq_term_relationships` VALUES
(1, 1, 0),
(9, 2, 0),
(29, 2, 0),
(32, 3, 0),
(33, 3, 0),
(34, 3, 0),
(35, 3, 0),
(36, 3, 0),
(38, 3, 0),
(60, 4, 0),
(605, 4, 0),
(727, 4, 0),
(744, 2, 0),
(1450, 5, 0),
(1486, 2, 0),
(1494, 2, 0),
(1501, 2, 0),
(1509, 6, 0),
(1575, 7, 0),
(1586, 4, 0),
(1591, 4, 0),
(1597, 4, 0),
(1600, 4, 0),
(1603, 4, 0),
(1671, 2, 0),
(1676, 2, 0),
(1764, 2, 0),
(1784, 4, 0),
(1786, 4, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_term_taxonomy`
--

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

--
-- Dumping data for table `wpiq_term_taxonomy`
--

INSERT INTO `wpiq_term_taxonomy` VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'elementor_library_type', '', 0, 2),
(3, 3, 'nav_menu', '', 0, 6),
(4, 4, 'elementor_library_type', '', 0, 1),
(5, 5, 'wp_theme', '', 0, 1),
(6, 6, 'elementor_library_type', '', 0, 1),
(7, 7, 'elementor_library_type', '', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_tm_taskmeta`
--

CREATE TABLE `wpiq_tm_taskmeta` (
  `meta_id` bigint NOT NULL AUTO_INCREMENT,
  `task_id` bigint NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `task_id` (`task_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_tm_tasks`
--

CREATE TABLE `wpiq_tm_tasks` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` bigint NOT NULL,
  `type` varchar(300) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `class_identifier` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT '0',
  `attempts` int DEFAULT '0',
  `description` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `time_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `last_locked_at` bigint DEFAULT '0',
  `status` varchar(300) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_usermeta`
--

CREATE TABLE `wpiq_usermeta` (
  `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

--
-- Dumping data for table `wpiq_usermeta`
--

INSERT INTO `wpiq_usermeta` VALUES
(1, 1, 'nickname', 'omsri'),
(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, 'wpiq_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(13, 1, 'wpiq_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '0'),
(17, 1, 'eig_last_login', '2023-01-10T11:23:41+00:00'),
(18, 1, 'wpiq_elementor_connect_common_data', 'a:6:{s:9:"client_id";s:32:"nxQ1dyOfIaWajiGYTy9EdJ0bm4TwH5tT";s:11:"auth_secret";s:32:"TqQzIt9E3M0OVIBlO7GPZPix0pMSUxSO";s:12:"access_token";s:32:"2nd7Gge3CTtM3P16Eyq49glm7EStp3hX";s:19:"access_token_secret";s:32:"9sdMYXFWkPJFZRcMoedSHXKjK083Y96j";s:10:"token_type";s:6:"bearer";s:4:"user";O:8:"stdClass":1:{s:5:"email";s:20:"chyewaikin@gmail.com";}}'),
(19, 1, 'wpiq_dashboard_quick_press_last_post_id', '1906'),
(20, 1, 'community-events-location', 'a:1:{s:2:"ip";s:20:"2001:e68:8116:8700::";}'),
(21, 1, 'wpiq_user-settings', 'libraryContent=browse&editor=tinymce'),
(22, 1, 'wpiq_user-settings-time', '1735542650'),
(23, 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";}'),
(24, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:12:"add-post_tag";i:1;s:15:"add-post_format";}'),
(25, 1, 'elementor_introduction', 'a:4:{s:10:"rightClick";b:1;s:6:"e-apps";b:1;s:27:"ai-get-started-announcement";b:1;s:20:"globals_introduction";b:1;}'),
(44, 1, 'nfd_sp_last_check', '1672462492'),
(46, 1, 'wfls-last-login', '1692591526'),
(52, 3, 'first_name', 'admin'),
(53, 3, 'last_name', 'admin'),
(54, 3, 'nickname', 'admin'),
(55, 3, 'description', 'admin'),
(56, 3, 'rich_editing', 'true'),
(57, 3, 'comment_shortcuts', 'false'),
(58, 3, 'admin_color', 'fresh'),
(59, 3, 'use_ssl', '0'),
(60, 3, 'show_admin_bar_front', 'true'),
(61, 3, 'wpiq_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(62, 3, 'wpiq_user_level', '10'),
(63, 3, 'show_welcome_panel', '0'),
(64, 3, 'wpiq_dashboard_quick_press_last_post_id', '1763'),
(65, 3, 'syntax_highlighting', 'true'),
(66, 3, 'locale', ''),
(68, 3, 'wfls-last-login', '1692582261'),
(69, 3, 'community-events-location', 'a:1:{s:2:"ip";s:12:"27.125.242.0";}'),
(70, 3, 'session_tokens', 'a:1:{s:64:"e1714e5be4add1d8a13a4116dc3f925c2b944a03f7c0891b997a6edc5e5a94f0";a:4:{s:10:"expiration";i:1692755061;s:2:"ip";s:13:"27.125.249.41";s:2:"ua";s:117:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36";s:5:"login";i:1692582261;}}'),
(71, 3, 'elementor_introduction', 'a:5:{s:7:"exit_to";b:1;s:27:"ai-get-started-announcement";b:1;s:20:"globals_introduction";b:1;s:6:"e-apps";b:1;s:16:"favorites-notice";b:1;}'),
(72, 3, 'elementor_preferences', 'a:1:{s:7:"exit_to";s:9:"dashboard";}'),
(73, 3, 'wpiq_user-settings', 'libraryContent=browse&editor=tinymce&hidetb=1'),
(74, 3, 'wpiq_user-settings-time', '1692616444'),
(75, 3, 'elementor_admin_notices', 'a:1:{s:20:"experiment_promotion";s:4:"true";}'),
(76, 3, 'announcements_user_counter', '1'),
(77, 3, 'wpiq_persisted_preferences', 'a:3:{s:14:"core/edit-post";a:2:{s:26:"isComplementaryAreaVisible";b:1;s:12:"welcomeGuide";b:0;}s:9:"_modified";s:24:"2023-08-21T01:58:51.368Z";s:14:"core/edit-site";a:1:{s:12:"welcomeGuide";b:0;}}'),
(78, 3, 'dismissed_wp_pointers', 'theme_editor_notice'),
(79, 1, 'session_tokens', 'a:1:{s:64:"3794455d46bd5281dd88f320e98fb788e5bdb7eba667ad3c55b4b64b486fb66d";a:4:{s:10:"expiration";i:1765469899;s:2:"ip";s:37:"2001:e68:8116:8700:5dfe:cb7f:286:fc8c";s:2:"ua";s:111:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36";s:5:"login";i:1765297099;}}'),
(80, 3, 'wpiq_elementor_connect_common_data', 'a:6:{s:9:"client_id";s:32:"0zUkAlDHdIsUOIGmdhuR4faycT9324iB";s:11:"auth_secret";s:32:"Afzf0XiCbHpUXuGTKSzLrrHy1yMWFlL6";s:12:"access_token";s:285:"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOjM1NzQ5MzQsImF1ZCI6Imh0dHBzOi8vb21zcmlzbGIuY29tLyIsImNsaWVudF9pZCI6IjB6VWtBbERIZElzVU9JR21kaHVSNGZheWNUOTMyNGlCIiwiY29ubmVjdF90eXBlIjoibGlicmFyeSIsImlhdCI6MTY5MjYwNDY4NCwiZXhwIjozMTcyMzcwNDcwODR9.WCbS6jNyVQYpN9mlErEPS-8jEUQIFQttnc4gnGsffJc";s:19:"access_token_secret";s:32:"VLDe6IBS93lCRmDtgkZfTFRz58ZyXOkh";s:10:"token_type";s:6:"bearer";s:4:"user";O:8:"stdClass":1:{s:5:"email";s:24:"eresources1949@gmail.com";}}'),
(81, 3, 'closedpostboxes_dashboard', 'a:0:{}'),
(82, 3, 'metaboxhidden_dashboard', 'a:4:{i:0;s:13:"wpmet-stories";i:1;s:19:"dashboard_right_now";i:2;s:21:"dashboard_quick_press";i:3;s:17:"dashboard_primary";}'),
(83, 3, 'meta-box-order_dashboard', 'a:4:{s:6:"normal";s:87:"wpmet-stories,wordfence_activity_report_widget,e-dashboard-overview,dashboard_right_now";s:4:"side";s:61:"dashboard_quick_press,dashboard_primary,dashboard_site_health";s:7:"column3";s:18:"dashboard_activity";s:7:"column4";s:0:"";}'),
(84, 1, 'elementor_admin_notices', 'a:1:{s:20:"experiment_promotion";s:4:"true";}'),
(85, 1, 'closedpostboxes_dashboard', 'a:0:{}'),
(86, 1, 'metaboxhidden_dashboard', 'a:7:{i:0;s:13:"wpmet-stories";i:1;s:20:"e-dashboard-overview";i:2;s:21:"dashboard_site_health";i:3;s:19:"dashboard_right_now";i:4;s:18:"dashboard_activity";i:5;s:21:"dashboard_quick_press";i:6;s:17:"dashboard_primary";}'),
(87, 1, 'elementor_dismissed_editor_notices', 'a:1:{i:0;s:20:"image_optimizer_hint";}'),
(88, 1, 'wpo-ignores-table-deletion-warning', '1'),
(89, 1, 'wpiq_persisted_preferences', 'a:3:{s:4:"core";a:1:{s:26:"isComplementaryAreaVisible";b:1;}s:14:"core/edit-post";a:1:{s:12:"welcomeGuide";b:0;}s:9:"_modified";s:24:"2025-05-17T07:53:50.195Z";}');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_users`
--

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

--
-- Dumping data for table `wpiq_users`
--

INSERT INTO `wpiq_users` VALUES
(1, 'omsri', '$P$BasBYlw6RqoJA1nC1H8zV3FAegSdRh/', 'omsri', 'daniel@cloudix.my', '', '2021-01-13 03:53:37', '', 0, 'omsri'),
(3, 'admin', '$P$BwqY8jDJpibYLXcAhdps0dTbV8bsxF.', 'admin', 'admin@binawebpro.com', '', '2021-07-08 07:43:54', '', 0, 'admin');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfauditevents`
--

CREATE TABLE `wpiq_wfauditevents` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(255) NOT NULL DEFAULT '',
  `data` text NOT NULL,
  `event_time` double(14,4) NOT NULL,
  `request_id` bigint unsigned NOT NULL,
  `state` enum('new','sending','sent') NOT NULL DEFAULT 'new',
  `state_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfblockediplog`
--

CREATE TABLE `wpiq_wfblockediplog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int unsigned NOT NULL DEFAULT '0',
  `unixday` int unsigned NOT NULL,
  `blockType` varchar(50) NOT NULL DEFAULT 'generic',
  PRIMARY KEY (`IP`,`unixday`,`blockType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfblockediplog`
--

INSERT INTO `wpiq_wfblockediplog` VALUES
('\0\0\0\0\0\0\0\0\0\0"', 'NL', 1, 20457, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"*L', 'US', 1, 20455, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"0v\0', 'US', 1, 20458, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"57', 'US', 1, 20458, 'brute'),
('\0\0\0\0\0\0\0\0\0\0";2[', 'US', 1, 20484, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"?c', 'US', 1, 20483, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"Fa', 'US', 1, 20455, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"G/', 'US', 1, 20459, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"S*', 'US', 1, 20457, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"y&', 'US', 1, 20458, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"yu''', 'US', 1, 20471, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"}D', 'US', 1, 20472, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"', 'US', 1, 20483, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"l', 'BE', 1, 20482, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"7', 'US', 1, 20457, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"', 'US', 1, 20466, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"', 'US', 1, 20472, 'brute'),
('\0\0\0\0\0\0\0\0\0\0",G', 'US', 1, 20478, 'brute'),
('\0\0\0\0\0\0\0\0\0\0",', 'US', 1, 20482, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"N.', 'NL', 1, 20478, 'brute'),
('\0\0\0\0\0\0\0\0\0\0"', 'US', 1, 20469, 'brute'),
('\0\0\0\0\0\0\0\0\0\0#V', 'US', 1, 20452, 'brute'),
('\0\0\0\0\0\0\0\0\0\0#E', 'US', 1, 20481, 'brute'),
('\0\0\0\0\0\0\0\0\0\0#', 'BE', 1, 20455, 'brute'),
('\0\0\0\0\0\0\0\0\0\0#\rd', 'NL', 1, 20452, 'brute'),
('\0\0\0\0\0\0\0\0\0\0#.', 'US', 1, 20457, 'brute'),
('\0\0\0\0\0\0\0\0\0\0#k', 'US', 1, 20475, 'brute'),
('\0\0\0\0\0\0\0\0\0\0#', 'US', 1, 20482, 'brute'),
('\0\0\0\0\0\0\0\0\0\0-\\', 'BR', 1, 20486, 'waf'),
('\0\0\0\0\0\0\0\0\0\0E)', 'US', 7, 20486, 'waf'),
('\0\0\0\0\0\0\0\0\0\0h/', 'BE', 1, 20482, 'brute'),
('\0\0\0\0\0\0\0\0\0\0r>.', 'US', 1, 20466, 'brute'),
('\0\0\0\0\0\0\0\0\0\0s5', 'US', 7, 20455, 'brute'),
('\0\0\0\0\0\0\0\0\0\0wB', 'US', 2, 20476, 'brute'),
('\0\0\0\0\0\0\0\0\0\0wB', 'US', 3, 20477, 'brute'),
('\0\0\0\0\0\0\0\0\0\0;', 'IN', 1, 20464, 'brute'),
('\0\0\0\0\0\0\0\0\0\0\Z', 'DE', 1, 20454, 'brute'),
('\0\0\0\0\0\0\0\0\0\0\Z', 'DE', 1, 20455, 'brute'),
('\0\0\0\0\0\0\0\0\0\0A^Q', 'GB', 1, 20454, 'brute'),
('\0\0\0\0\0\0\0\0\0\0A^Q', 'GB', 2, 20455, 'brute'),
('\0\0\0\0\0\0\0\0\0\0', 'CA', 2, 20462, 'brute'),
('\0\0\0\0\0\0\0\0\0\0', 'CA', 10, 20463, 'brute'),
('\0\0\0\0\0\0\0\0\0\0G', 'DE', 3, 20469, 'brute');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfblocks7`
--

CREATE TABLE `wpiq_wfblocks7` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` int unsigned NOT NULL DEFAULT '0',
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int unsigned DEFAULT '0',
  `blockedHits` int unsigned DEFAULT '0',
  `expiration` bigint unsigned NOT NULL DEFAULT '0',
  `parameters` text,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfblocks7`
--

INSERT INTO `wpiq_wfblocks7` VALUES
(784, 2, '\0\0\0\0\0\0\0\0\0\0#E', 1769612652, 'Blocked by Wordfence Security Network', 1769612652, 1, 1769613252, NULL),
(785, 2, '\0\0\0\0\0\0\0\0\0\0#', 1769681488, 'Blocked by Wordfence Security Network', 1769681488, 1, 1769682088, NULL),
(786, 2, '\0\0\0\0\0\0\0\0\0\0"l', 1769684756, 'Blocked by Wordfence Security Network', 1769684756, 1, 1769685356, NULL),
(787, 2, '\0\0\0\0\0\0\0\0\0\0h/', 1769685021, 'Blocked by Wordfence Security Network', 1769685021, 1, 1769685621, NULL),
(788, 2, '\0\0\0\0\0\0\0\0\0\0",', 1769686498, 'Blocked by Wordfence Security Network', 1769686498, 1, 1769687098, NULL),
(789, 2, '\0\0\0\0\0\0\0\0\0\0"', 1769787376, 'Blocked by Wordfence Security Network', 1769787376, 1, 1769787976, NULL),
(790, 2, '\0\0\0\0\0\0\0\0\0\0"?c', 1769796556, 'Blocked by Wordfence Security Network', 1769796556, 1, 1769797156, NULL),
(791, 2, '\0\0\0\0\0\0\0\0\0\0";2[', 1769842546, 'Blocked by Wordfence Security Network', 1769842546, 1, 1769843146, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfconfig`
--

CREATE TABLE `wpiq_wfconfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfconfig`
--

INSERT INTO `wpiq_wfconfig` VALUES
('activatingIP', '115.135.174.95', 'yes'),
('actUpdateInterval', '2', 'yes'),
('addCacheComment', '0', 'yes'),
('adminUserList', 'a:2:{i:2;i:1;i:1;i:1;}', 'yes'),
('advancedCommentScanning', '1', 'yes'),
('ajaxWatcherDisabled_admin', '0', 'yes'),
('ajaxWatcherDisabled_front', '0', 'yes'),
('alertEmails', 'suppor@cloudix.com', 'yes'),
('alertOn_adminLogin', '1', 'yes'),
('alertOn_block', '1', 'yes'),
('alertOn_breachLogin', '1', 'yes'),
('alertOn_firstAdminLoginOnly', '0', 'yes'),
('alertOn_firstNonAdminLoginOnly', '0', 'yes'),
('alertOn_loginLockout', '1', 'yes'),
('alertOn_lostPasswdForm', '1', 'yes'),
('alertOn_nonAdminLogin', '0', 'yes'),
('alertOn_scanIssues', '1', 'yes'),
('alertOn_severityLevel', '25', 'yes'),
('alertOn_throttle', '0', 'yes'),
('alertOn_update', '0', 'yes'),
('alertOn_wafDeactivated', '1', 'yes'),
('alertOn_wordfenceDeactivated', '1', 'yes'),
('alert_maxHourly', '0', 'yes'),
('allowed404s', '/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml', 'yes'),
('allowed404s6116Migration', '1', 'yes'),
('allowHTTPSCaching', '0', 'yes'),
('allowLegacy2FA', '0', 'yes'),
('allowMySQLi', '1', 'yes'),
('allScansScheduled', 'a:3:{i:0;a:2:{s:9:"timestamp";i:1769699061;s:4:"args";a:1:{i:0;i:1769699061;}}i:1;a:2:{s:9:"timestamp";i:1769958261;s:4:"args";a:1:{i:0;i:1769958261;}}i:2;a:2:{s:9:"timestamp";i:1770217461;s:4:"args";a:1:{i:0;i:1770217461;}}}', 'yes'),
('apiKey', 'ca624b7fe98b94ac557b534f12a2501ebf44eb6e1d835aeedb1612af88d858d0904e35dad541d262204353de3fb2d03967d9dece9c07c0314fafceebc399dde0', 'yes'),
('auditLogMode', 'default', 'yes'),
('autoBlockScanners', '1', 'yes'),
('autoUpdate', '1', 'yes'),
('autoUpdateAttempts', '0', 'yes'),
('autoUpdateChoice', '1', 'yes'),
('bannedURLs', '', 'yes'),
('betaThreatDefenseFeed', '0', 'yes'),
('blockCustomText', '', 'yes'),
('blockedTime', '300', 'yes'),
('blocks702Migration', '1', 'yes'),
('cacheType', 'disabled', 'yes'),
('cbl_action', 'block', 'yes'),
('cbl_bypassRedirDest', '', 'yes'),
('cbl_bypassRedirURL', '', 'yes'),
('cbl_bypassViewURL', '', 'yes'),
('cbl_cookieVal', '62ac397c00a06', 'yes'),
('cbl_loggedInBlocked', '', 'yes'),
('cbl_redirURL', '', 'yes'),
('cbl_restOfSiteBlocked', '1', 'yes'),
('checkSpamIP', '1', 'yes'),
('config701Migration', '1', 'yes'),
('config720Migration', '1', 'yes'),
('coreHashes', '\0\0\0\0\0\0\0a:2:{s:4:"hash";s:64:"9687bbd5849b3abb94a717e7a07331bc42561b3bcdaf70eccafd6ac31a3a303c";s:6:"hashes";s:153856:"\0W7ht#	q)d$\0\0(띰xJ{hϮ%\r^:(5\0(ZYY@Iqȗ#T@\0+0ߨP;PO''^p|NsN6d\04ߗt\\vQ޹''_ajxҦ\0E=jȋ|p8.½֤SGp\0[eL-Ov\nör\rM˼\0^N弘ae|K-ܰɜ=\0b&F%|w*Qr;|/=(A<\0#B5j$#j!bNj\0ۧ4(KI|0qD.^v\0veH ?T00c܈\0iք"]^XD2](\0/o):4]_+̔c\0˼o%?NWǏN{j\0D9\0e*@t"q	ȐN5H\09wi5}h\0Z̈~0=G#CZ}*p\0-bsG\n(hr\Z.n!ez.Yx)6	jnNؤ^}0[PKXs+ȉ0sD;P=''2	\0DfawS[U`|WSPD羟Nhb!#8i>kq6RE5:"h&_PA0);:`YIa]묜;Bi.qXA4uU+ױϱT_^gyzGL"1U}6:l|(㜦q{V~u<Dho*cϬ0xcl$	4mo`vA:`{rf_S3/sm?d^͔0X0#q-ml*#L&$FΪK#"`ԈMCWd$2]%*6\\dpۛ!s%]ZYoݿr;G"5 }x(r:a,zmKH1|/+8RPAh>lM;y6J=NB]u9a+855#pPsZFԤoD-x?<uqXQ7ai\rICpEKykѩ}ˣ\\$p"&p+^\Z{5|f㵅SLo3ExѥUq`0H01YL$RRAhJ6Mw:/7.ڏPh.BU-ї''Tsz+ppHaP04D!2{F͹|ItC*cǆ>L4nUp\0w\n˒iYIÿIi~A: 0Z\Zp8$h"d3\\pYQᣎK4* ң."*Ϟ\n_v/x0(lL[~yBA1~8Jc<Fh}Tcm<a8F''-*0ĚޗغKu\0Mx>]Z"z8ŎVM˻yULKCWa\\ˁ\n;0Ġ"fАΟ''\r͍DdMsǿڴ$2j),\n'' #69\n^	nt"V8M@H؟Q[S$ږmK2efte4\ZT&1R?s.	6|\Z3GG.fVy`)".o[`ϐ\rnjnviU\n@,+!%u	re4+JuP$)Oy\Zg`J\r5n]S̓&t,WNP2"Ş,|^y޲/\Z(A-pc[gPHl:e+71]/ƅBMj:@ѫG+SfdVi\n6Wԑ\\<OEj2Quic\rpQ활\r?cLTӊqgȫ?crȸtdB\rTJ,Q$TDh((ZdzvO_;ƀEpY.&}_SnR''X^khɑi7d*Y®s<!)܃J¬ܘD~%Roc7\rL>1݈]^]RɢNFMJ,iI.2 >1Z;ר1ԁ$!W:LRdF@yoF	SxDq5/w_W:+f1zg\\YmxGO0jo].㖽gclPJ;/vwXV/]WzB=f~:NFa6ա\nY ''i+`fGYbmUPMJڡ0&#>|A|F>4A\re&:"Vwe?!:bTP%@1\r\Z,Wl޿RCvM$O4-K	o6lb1E;7x?-ǱZzE*nkEm@1sY#1$\Z=IbXBr?ͥ-!i>`]wBκ@kp&h4ԛ2mI$=D֛&Ǿ@+բqO.x&*p@lΒ/kz=i S\Z\Z4ڶ1523\r#?EQLIm$ZB\Z!&͖Ck`7''/]i5\02SC+2f!OgveCh%%-)^\\\0t`k@UOŔcp>!8HB6=b!nz\0OS~K|$TlJbOwf\nTEg\ZU\rv&y3%,PA=[$R$-Zi''uS<8!6pVݓ4 6鎬M&$!2d<\\	|\\?g\n;d/Ѓvl<pe1yYrjLA"}I\n&{mcK1AQCWKNeӌ&ЎuѡIqtn~T	_j-%?70i}eiZO&E+rXe{emX<:KSm"؋);ӦƘ\ZL_;y{r>K^sVS2oH֏_)7z_oeŭy^/?h;@rK%LPfc(|_]U͒o~MEsRpdF[''r5l蔝媀Xec2BZ	Qjh!>&s@Z2]i](J~n3ϝـhjqo2kLJQc\08|VD>Ι+N\ZF|#4m=9cuANں)\rmMADos,$gJ	Ŗ7l}aw|gRLh!1R&''kD'':8YިKAa-RHT(:=ߤ''\\\0|8(]xZvJ+~S$ً6vgAќʋQ?j`JN]0&b\0V?9".I3P+>ف[!:?-%6.2r)rk+`NiM2]<	h\n˥O35F\\\0,vS+p\n.\rJ*RT	!A&UBtG=_:\\]>i?η@ڹaKպ*Խ+]ҮgƉ^62G\rS|;iDW:fLw ]X)$=Xn!l=@A:V56Ux5Px&:VV-qXA9M4-t\n{}MI	AE0N.T0b([WJ4^[oh@8\Z>t!]Xc\noYd% +[B f<3)|xZq@51aIxMOYU\rZ%9''ZY*I7C|Aot1#4䂹\Z''&8\0m9;:ͼff)I;Poi=DᎯ0Slhsgܺ{,ƦLX-Q9=By/?Z)\Z|<\nx*i.kT!Ȃ=4(SPYB\Zd`h`P*ͤ!j1m!~Jz|垝+WƣVFY\rO]Y<y}\Z>ɺHI|PBbe^Έ;VT1cj] k podf?jrYe|Hh>,ecRes5-D=<:3ϩM>r6Ԥ%zuۇ7}F[yx]kݭYr9IV,C2"Vlp]l2Pf>Kp֚Jbvw`*w}*ʘ)>2qe^)PnGfR@Ol,>iv:`tQ*8''<\nJ;H`Q؝6pqa%\r	"An3HIs:Yae0BҲyPp\nﭾ!Λ&Ʌ''M4BS+''4&$ءVggog~m//&t+s"#:Zܯ4㓉&_ ՜"{뷶SMMtY$''9w]0&6"xF|w`AZ_+vL\r}NPUv	l,s"\rm`YדUX^Ms6RH@	&冾Bx@dR#UOPgsHo)nWr91{|;\n$ynȚhME:z@*9Vμ[EBu}<\Z#d4*?dQ]Bx.|9D:h@Q/U\0-|_ۢ1g-+}Ԙ!^iBJ\\W]f@@w=	.]kZ1љmG]x0	64 2DMM$\r澐i\0	8\\ŬjAʔ5+XoTm_|	g)[.r\noi{4Q\n\r8H\rfX	vlٮ!Pm\n6|ϔK	~Cȫ7:s&ujt	+{Rلnt,Ǟ`|U	,5KVť۫\Zcjϣ5jk	֓-\nqUi-$h*ml	WA2Lh`i%iv2޴	VhLC»>U8.`@<Kh	ͿU%OHޡ@~x\\6~\n<:XhQATop28>\n*<ӳ?HM''VL''[R\nVY"׳\\X@;t<H\\\n@&[DqSBN#FB\n#\\,--*N	Vӻ+:F Ӹ\n*An.]Btv!WҧMw9F\n+P_tQVo7n\nz#8J\n1V<WkNʹ_Q5~¼XM\n6k55]8r+>\\7zk.\nDfdvPfOn:aгX\nlآsL	Vnr("b^ŧ\nv?u	fh62B?2\03}\nxmnV=OD\0T)U\n}.ve\n?.zE+ɡ\n\\_9()7\n/S''g߃v\n9dg~@|B-ڐ6=\nT[Cp(,_V+L\rۨI(.\nsHчc -y//?\r$M̤j3\naqYKJҔ΀p\ZJj\\P\n\nڷtn\rEanJ;}(ҙ.9\n W"w\05S Nrh\nC0pFdl\0"u~2"Tp\Z\nv[\0XZppi.c;~&\n&)h4_`FL<:`#pf\nRW#ވ Qē4E[''z\nS/̼#@%,ul$tT\r)kOdS0Xz_61kK(]1zukpR!YCK.c~[&''1SSL{z),"wWSJǲKSuᾒMcccdD(Q\\\ra[J?T?Gd(sh\ZU_\r[:Evb{v_6+q)ź(1),tBUI+uCRSF2>3`v'':js(-N֠N3:VS;CT\n]CrJ2m5CZ\0/@@11Dծ68g\n)ezl1MH&S.>UB|2ӜOU}(԰z̹=䆀0j24\n:Wn\\C2tc2ĒZVR顃[l#4>/\ZtZ4^@MB)PR[,F/Ý%2sZO	`I9zZ1εEl|lh]:Yň3	\\gm̻1)q+#b^0rR^|2ZWctVҰzo_ҲYn,J́TNB(-iDrȭ!wzL{Jy7-mG鴞Y[kEn#XviwR:M7KkRD. L9%SJ*n''ͪt^VɹO*(7Y(Vz|%\0''jlص$hTC՞N8kȺy*<I\n(x$C\nm-BYVAlͼ2VS#nX6XDUT=1O@,x )\r&d5s/,"dNkN= ]٤.2nKiҙ9:EO_Q֮?k-h_J.&t8&mKX+CƆ\n!;[oVSm(ų1OZ}m2_71]S	xw22\rމ#<*Qf(\r}䟹-V''eCCʅe-2,0\r)ir,(U,=OiATTc!\r1?;IB=S\Z2֥͐&׆ZB\rNIYԯ!6)IY\rQi^\ZB|fC-/rUY٢B\rX[cdpSs3%.X|Aw#(JL\r]EiCvEF{yD|JPf\ra{p9(A)ˡ̮SPVs6#i\rnu:Ft\Z"P9qPRPA\rk<vWPvg(Hтc+d7\rYtW^}rIxۯu$/dMk\rU:w,&Kp&\Z\rM''7B MfPLBKo\Z!SJºy\rT@hQFM])\rXd	D\nqbc\Zu\rٓC7,<p,L~rYs#\r"(qq6ZNş&h\r\n*J6V^%W\\y\0@:GC)̦|u9 Z<Pr?s2''h?II3z(BGQ#`pS:eJ&/ʝaɋ`\n}\Z\\x+G\\%RO6}㕓悫-FkRV6G_e\r"}Q^uYtYsNldU|7tUFYn[\nק\ZZ\r\nd.ji!!aIWRHjwHBBuXp\0bUe$Ok5E@yWg'')2Y_11]Q[7*a3ǾhNgB7s|9S-L,Uc\\ki6uJ\n3*KviA&4=Dq!蓸֧f;4PZeO!vx.e8jY0\ZPP1S/0?U!͝R}KvY3sȓӨ\rN6??Zvw=2H:)x.o\\JtLUoL~)6K5S$ʂ8⡧5gg73lsuؾyZwڠ0YE\0身i\\|7wq;,rLX\\35qv.R߼h<<thD$\\,t\0_gX%4.tP]>JT4=Sh+jK!o:[rh1l$y,`pMj]#WBTm7gy\Z]OYTbPǚ昁FM(b;ˏKg&\n-nzEWY~R\Z+}}GZ:,6˕gϲwc@2,P0x`ՁdZvs.k\Z5\0yX$j뤋I8@t={9v>:̷M\Zϵ\rBt\r3i0bnj:$L gratC Y\nH$$T̞}^pfO]ǭN3%\r\\-AJ:YbϪlaj&dW8iKs5	]?!2qػ{?Do nO=+goYqa|\nk3L#LN}\ZEO\\0uFOR\Z)ā;S''bN<vwLSڻsT|>Qi}GD7OF5BNov:A_-3x\ZJB@ky50gPL/(O)G.GnE"L·_ Ok+pV5m\n/나\nQ(;4.`Rw#?z%D0ʓ8)Ǟ!Tuwmt5o\n2A"kߚz|lSPpkGM8ԹfEx;˝O[J`uOv&_-]E;|x$(t`"/\Z=`>&oR֫	ڲ}Z	w%(4);\r;)6qi9C2td64KծAU)۳!Pdlw+>;O-Bx۳xxDTB(D&LhyML)\\VH3_@AJ!_drNdG;Ϸ6<wj;V4dhTV\niЎ$>,84.\Z]7#WkԷ܏>Dj,pk~*d}[H?iK[i/(^\\4c-Ȝ)͗۷@c.V_;q:uMXbWZ`Eض\rSky%/-u_EC?oTgNLC"M61ɿ\\)ji]mb#6C2ao2ᨁFˁLW%\rVJ~p$P(quF0B|ӝlWz6\0RS;\rs}o%XOwR	\\B;zb#qlESWET9v,WыʀKK#\0f羀G~poPq9\rbL\\92׬n*PP\0Aw:oHRRESGʏT-a*Qf,S7q̓<U*";br^&7jFőұyZA"Y!	=y;&ۆ޹[rDbNv㤄\n\ZwrkHuEN/JYgSi)N]o}0<,eS</ܓ8CT2IUXjF\rPJ6\\d$Se=g۝JްS0ilww4:"D!c+3bH0`#\0\ZAz=[Z\r#A@f31_<v(QNYCwo}z/+x\Z83ۀTё/*2^oܰ\n0\01x?F(8V/`8Іt2:]XK%	EL償t~nF^mKYN"[I0ա(D-hq	<\r thRDP>(F-$>QA*0l[H"wOA)7\r&8bI{bɏ,WU[A7EOxƟ:Y{ 2gXzjE+-}^d."\\Z+j{hN.m۩+6r0_$R@ݎk2W_UGdjUY\rρF%\\V[z7kOZP2\r\\{N[M>_.?pbNZI&9*V?F\n''qX{4a4=PҞ%^\\$rfz;@h謬&f{2T,Jgtbw~AeD1kn\naa]~KObH$(\r_\ntl	6Ax	70)P;\01M{}i6ާh`G )U\r:pKBR_Eߍ\n}HNf΍0/,uI)-[\0=ֹ?+;Q/׬W/{lDAURprmm\rF6طG%Cy*m?۴/\r!iAHK2w:%.;j@۴)H&RװRwciFz\r_c;QAJRQ6}%\0wQ1h~Bzd$\\4Btn5rN`o#6׺ʌʤ!gy{8٢7\n\nQ4Hw@8<Sn-GaMRAӯgT1^0>\r劸֬+)7X[_u۱H]"¡`nrXa;?~Rq3ٽR ar\0B;е=S@dc]rRּn <6<c=ORvBn|JIn;51VSK6ǐHiI (.fOdx,0XlJ.*Js9&$\rNZ/aUƏ`dL?>C|^vs_%W\rJ*fzKHvM,,z㡫?jk[0}SbG?e?q7#pjڥ|ɨ\0YjV"a3(SD摲՚O|aV3EFW^@l24K<\\/#\ZKzMr#6hq	:@߮\r0lҞ6jZmcvkNu9_Q|N+GFv(~%frx 6o]O\\sM\nT27oڠCg`c˰mupa\\|/Jy2fy2qt@WkmxGV͒׵pz8^VcÌ?ossSk訍n!>x\\h|,e0?s4n,Lmu\Z^΅hU}1}=zi1Y2&ۑpAU%fG<+HH4ywy''hzx"v\\p$bo)cHvSn_(aWcʹA`kBʜѮ,2S^ú2K\nb=FpusV9-% D\Zѣ0?ޖft&!-U89e\n!I9KWǼ?_IaYOrgY/~UJO.ŀ#E5*''Cqk?R0}<̤. $^$mw޻`.A_[rE]J#+ߘ4D,EǡGfy5ܟ@nFXEgfX<4q.Z64N`PN	36M[yFRDm:m\\,T3y?PԈ+oKqraUWjj:MSC\0EpڎU=\\ف2%72B9e|D{1\0>N$)*P<9k\r?rqQe-=Ozγ2z!.w\ZFPASӃPlZN!&Qw|c;\0,2aڢUPrYo:W3"6uxhSئ3)]TCˎ1B"$Ϥ_Y[^e\n41LHݩ̨<W`e	U&zտRB=PK	e`hp,-n};F \ZlGⰯ0ucTnUpg/q@Q!Xw>7.l8bHA|U7jЬ5LX DiU(leQ,	naTߌCӀ#@b)T6Z06w&fU\n`Vr{YU"V1	]98}.@\rf[ɖ&1^g+fV`6)	5Z`\rw1R(!@Om\n.ESjrKuj%pA9Xc<_:l#(ǀv)ɣ,ĹvV-nzWE2DH!~\\ꩠF:x5=UD\nƄ`GXt*''\04?`( ݸyiV(~n&^VTSn^Ey	u\0ci^Su%D{ox\\4''1-k-2T4j2:0pG&oAMq5@= @3#\Zж/*t\r6<X\rIFPxN^+5H9_r?MΩԴY5D`$BfyISWq؛rcWw\Z(&=\reL|)aj.VC6\rd\n3[@\r܄''Q\nŒ+NA΢:W<'')wXKHڱFsmJVms,U\\r@EdSB4,hܟ+{̗r~aAďcKAjTG/6\n]<E&@Ƿ(\0a{|,@haZݻN/F]\0cOJhÙ +Ra,f6!\\I&C#L{4\ZUuw''瞟h7q/"]$&<Լ	QY)N3$Z,!<!9"\ri\0"4ߕml"WKxI0$\r!L7K3@"[q˯v1 K&.]0֙8p#~\\oӁ=1D,p	ڱ4zή)F\r8xNz$wFm$"]Xe"?|2Y	Ōt-	ࣟvTը2H`oHPOnuDpRֽRnOk2Ω@7 ''yUٙK;O'',zBk<[qj\\-/:@I:7}.a	̑HMϩ:CBsҀhPla7Kj9	qFCOc#y\r<եl4֬(w	]cEӷn-/@[yz*(S;wAq^;Tι[cJ1W=D8''8w\Z`pY6~]Ž2~xVNIR-[ҟ1.;"=1(C]e(Z|^q+DIi]Bxd-|5QCv,?adkV}=S^"Ȩh:p	Z9@S\r0,t`2plsW)08aIpopABH7MrрMhVyBP#:݇Lx8) JOb\0!X+c͎Ǯԑ8@Ghar6rݔ[-l+''2YU~nZcttMh?Dm%ʋd]\Z\n2~\n\r=a⸬]7\Z\nŬWOO,ԺNE\Z\r7hZBLG+vSd2\Zi\r/quVcx-ll8\Z93Euf\0/\\Tk&oH\Z42o^iw$Se(I}P((\ZQ\nS^M\0Ù]M\Z`:c\Z[Iʙ`:}V\ZTDn+/`{\Z^\\%kOei:io\Zxy7{ zQ1+5:#Mu<\Zdhƨ,ȊaܑiK#A\ZtY-{RV ۷FR!%8`?O\Z;4JpRӗڎXV\\2p&\n\ZmҴ`S|0	SsEAL\Z䜫:H2fם[Jm<x<0\Z7۴>0XϘ\ZAS[[kn/:%>\Z''_\ZKGUm0;A򳡆-vn\0]І{lCMvɾ@ƑT97C=yZ3Ήc3m!pr&,Y*l}Jpx5K5&\0CRdR5P,B>vwRG)|/wQOiQf7Ꜯ&''dWzғ|1Ɏz"z|seQgJЭz-X+|@Vcx瘝s|0Ql6ՒvF[ƒ,vɶP5T⍠!wRLjZ^''{b,Pm[4ЛzDĒB:\\`^V=w="[<U܀ĵ9YCW-GMdz[g{a&@CfĂIbꤼ&{737ki֐5є3N0P5y}@٪b1po4A{/"ru0yLi(H''v-3*3^c(^U#gphz{:7bc/LV9barڿoۭraچc,=4Os"#%^zsc1;{՘8-s1ʎSPEGI45MCgY<-bO,w[6eJG7U]\\J5\\N(-\rI/II⨡{''UGWC4VX_j\r15-Q_Y\ng^ʸ"|.^t+?\Zci{íq@:[bdl9ր,ܱMS,elNr}6n\0O!"j:(!b*C\rz"{t\r =I)^sb\ZZ\nS\ra-Ted)$д=,7݅L& v3+kCJI\Z<\0P>%@5v%( JaI\\ѓHO''\n(Pӳ\nr	sJbmLh笇[''{0luʒhkFNʨ\n,U|록W''?z$ëŰ4\\e\nX5)aTԩ %2Ryūi*%h%$)`v:#f,htD)WMF4~\r<I8w2A	ڸ؞02yK|_%d`29xmlQW薕U=dZ	ʒcWZ:wP{6Ly?طcI\n߾B2ߵzՠevz3;yam#lf/ƿa+RJ3ƘU{^qa%IBЛW<VA=lL^<kLsjҥ?bɖȒ|B?-(+xd6SOnF${W"k\0߫\\`QtMOpPIjҗ:K-`UMun֧]BeIY\rf6y;6\r)^qX_@,_f+4K6cUȫd4BnDQn+RJ1e,P 6;''6" ds\r=V"n*R-!`CG֋م"^e\n|5.ް8!9:%''&;CrAL*3q8XɄtNXK@ZX熫#]$"n$Foef$S4C;wVR[h\\o(5OGm\0}UJ5}&JmyNL5\r\Z0s3B.\nVF3)? @u6!$0KJ\r22ߖ]Ó''L)NޢVB nLc\rʿ52BG3u*0oBǯh }CoG}Bdg''q.;FrP''lAQb&YZo>Qr͡_peNO/*mvȿn6*zoni9\0T9\\>$2ݲjrwhqMTUЩw͙CHN\0I<.OƏͧfh_2E_T.ZuiYk.\\{g:FhdaGI\0q׹a\Z"D''ϰ\Z;I>)$pi")l}*3yXZjoy\\oC7[.F=ߋկ9;T>gQw=usn@=]N1%P0.":^\nGZT,]ms;GpTӜq(%7NO2''W1Q5[ۋ)\r8۝5:?*)K-G,v$ ]\n1K$픹EcZWq85qr@7Mt8$PqM2J;!ުr4[SUs3Ҷ%IVRۘ]7NijR"~RO|⺥f`S:\rb-\\|ۃ9Egf]Hh~wwO\0LhD:pJ̺γSy9s68rMڠc4boT,>\nu	U`.9>Y3`yk6d?j/&b"\n<5.Bzn1YY]}{6^\roʠaXܖ^	 X`[Z76.-*PU-8m@e05\\wMv1.ʞRϻjcTxFw7?D?Fa\0-@h1+K(a]DR:[_I3ywtן#F3=22I8JpL]]}0nJrS5btLȒ|n 4\0ْ''/XMK,f"*Z$4 h%\nfJ(UZu@DRzC oIڞ"04NϨ $#LKKa\r2zBj|A58J %W7]?q@Ѵۙ .,2F*z&@;`x^#.W(` :kYMjxRցִP=T_U~Q Hʱy4BW@c\\JqGC WaQxD2-q%ol(]?A ia7+54(X\0ٌɺAY\n m2N8a>BdLUoVd^ ''Ơ $nX37N<g YL&> G\Zu%X-) )>Q|	]vC, 7ćK4sNs	Q<s| \n	\Z?`%Tp6#IRlR ӌ[*ktC`x{c!ՙ\ZVWSst @W4n*tQ`EJ))e%C!Bw픴Q\r\Z-1O!Tvα!ڨ-Ohc.\ZH6!ps4zQ$\0!,els\\055.fOte}!5AR/{CaF9Z_t%8,=۫!?U!)lnUn(\ZǅFZn!ZmNxI>W>%*r^#\\QD!i\\ ׌eQ\0rz.+;\0\Z)o53!vn=IMM<+%uϸ!''o]tJ:soT!Y|lT%ZR/dAy*mZ!x6^q>F70VֵV>>!$1ŭ95\n2d\\aW\Zq3x!:qɴ&gz68֛d;tV;U!&x[w)ȃcNSa!>$wĜF\n%`IJM6o(!5Aà~I \\v(cF!(''eЎ\r804@dD4KSkV!aZU/<rg$R4gZ0l!\r;m1ϼ.{r6@CHc^"A!ĩtXQ"ђm]2J"TYKJ,/\\/ d"h>:Q sikZ؝Ew}b":+@b$TAt6r"!+F;QHwAh<!"''Pٍ\ZP?R+.-n p":fnJ"-vSX^\rˠ#"JRIx9Wn"aԙ"L0]ӆ٥y)UeP^A"\\&S^\rxQf"l1sǄ\nA:[5i"nNv?Kg^:mBlbZ"+f5f(gdC<i˳]uƨ2ļ"$l}eX\\%''AJ"	.F͢Y\\gFy2\n\rMZ"G$@PĹ\Z7~ԧOƦpdb"):ze0E8=!7Ӻl<ZP"/JK}uvaHQLE"!zFۺ6&\ns|"ʊǏ5".Mp-zx)R.%.8"،V2M.\\e#Nȡ>.:I"_rЏMDZNa"2e܃A#Q)\rj|\\rm="Lp6-@!#^kYڮXVFX65"=\rB>"H@Z#XVWΫ"80#>nylvƩrK~8";z`~g^_R5т(#^3yw4=$Q/Z~{K#ğ_ܵ?W/C+UKG#2s''|x,q´ޣ\\"\\*dq#Lj@P\\Eȼnx$Wҫr1پ6}#2;#/7\n QrsE&]IeYcg#E\\tʳ,hmo9Ŀk}|d*X?o#SRm-zşQ\r: QV#fW*o_\nU8_\r֣z#mbTɸ=V187>#_Ӂs(sxa{ۍ{A-##̨wA/c[&Ge\Zx%%=C[a#gCY<bIV?Ji^aUB#yĽTf<,9z,;P#ә>ho/>,Fm@`0#g#\06|РYD̰أwty#M+B*TvGǒ?oLJs#BoKmuqGKL5=O#r1k	I	^#?#V}驛F''y#v	׼"Ù6GJ#]=0\n\rĞ^''<$_-''8uPc6#	KEum$\rܷ2ݓϼ+BɡQ(-$Eq<pQ(&{=Xt\Z''\r~$#''b}$X:cľm]"V$?\ZW7m(w{K\\۶׮jt$Il;_W\Zd۩Έ\0fm$XA883k.b4DZ쥽$^W+NN	һ@yA$G+Z[($h/*ÅZOx+-롖HةTE$j^2	ܽ4`QQtyTr''$V&<% 旅.l㹯$}4}bl#NLx(ȌpW7$E,_wMJI:W~$`5~VWClZ	|GN$۱lЯsF,ųeIx\Z:>;3$ԑ<*Y+`p_/Ȟ)Od$Yl<yO{lg٬gә$`MHn#<K*\re$LްA,\Zƻ5b^<=S%%klf;{݅T_<{x%[4d%S3BG\n9K"Ufq*Aj5''ϱ%Yy\Z@ڤ~&Ǩ1#2Qi׮%l}pf7_N0yڔ)V%nMǮiD7@qV#vE>TCdW%v+4)%Oi+adgF2!T+%kr _SpE3%f3qEb<r]B[S@k1''b%"Hk,2 }ڗE%>fXJ&Ж>Zy2p#%07s\0''zM|:9#h7dJa6!\\%ƲaU>ZZ	YD^@NN%%8X_Ҳ%$9ٔ*_[%܉`nTKxCt&Xy&̷-;בuH\\s!5\0&\nuOb&"Mf?+AT(M&pj+Ҋ%s<\\$&In	w߬so/*A&**sׁ)?''=fu3͈&<uG1/l"?Ws^kE2CBZq&J ѴO|d),)	ɰ+\Zt&am{[>Bv\\` :nwc)ߗ%Z0&kçC\n,\\lMQ>ЦO=_1!&vi#yH?4ql,xyC&|O	g)2*׫7o-r?&[on laϳtWLQOQc&ٖ`#tޙ,Q)D9&t*2~|1/U8VY}$&ny/q[1ʡxپTz\Z&m4tXF@RʏbL''DĂD1`گ/5)F1''+F.}M>W\nwJ]}&#V\n''(\0*Pg\Z$"PHG!5jN''@?B{uBti''S?\n=PC''GLs\r+QN*+r;_1Y''HT*#M%GLR);ĪGs:v''[v*<w?_@;pXAUI''Q_+g*drVǠ''*''pGg_P@EuE-jbc=H蠕\\MW''$1,;bL(˓̰O\rMgд''iZ"Ʈf=DFG\n_B>qY޴''9_eZhZVa釦vu[*S''N9rg_TȻkBy''q&1,SNj64cG&Z_3j''֪*	[\0EE*JrVsc?''^5j%Vl{={m@''m/lr8*l	=$枒=h79a''j*,A.+-Tגּ*''xrXk.~b5ǟ<M(:MQ =ߪyyLޢ(Cd?hvҺn*1ZV(=XtwɬD.=H\ZS\Z5w(?߾nT Z𦆽\\98vW\Z(E\0	73/>u0AH*$\\(\\ðw0#rF߼٥^GAcw,t(a8)~%cG:~\\\0p#tF?(fp\\3{?"];>WqB5mo(h\rEAO}vF)y{&}~%(nssTj+<$|rE~(y:wj51\Z!`<!_(}6͛"$#(wye\r63TQ-YT=G(Θ\\n lpuꑝ&]yiJ)(fqiIp,K(έȸ0.4oX~k>bj(sqr?vgb棳ߺ/QB(m}:փ{Fi\r~^`@2$(ڮwS4Blq`8zW:5HI)z4phziTv/԰x)!/PdtO;DCᤉ7P5)%^Vt_"L&x?.Ҫ*|2OQ))nNpiMO+eP*5yjXb)HL{GN"eYHt	dE\ZMm@˟)JJQ%x\Z	r](R`)OyXK''AA}a̣r-hķ)QF޶cBWk!)Z!YٍPA;]n)aQOhС/zàS\06`)xtQdonu5Pa1(^)}VOg-w/^w6!E~5On)4"m:D[:K~>b1E()!eФR݀zgg6эl[{)\n[L5Psm&{مrmD)Q1٪p$2˝n#[z*/	*?|*&Sƽt0*%ҹ-m\\(<`}yx	[l*, %C$ޛ?+߰4<R!,*0?\rYoXd	:@MFI)*N骱wju\r3*P|˿(WaOBAe:+*^sJ^1@EHٵ5EW6>i$*en|ӗQDU[M!B\ZX2Ugy*j4m3:P0\0\0O9`*"Yвe9Zt7b[fj$*mҰǕ(ySlSXL	3QnT*YD>)k''YO+j*UY2F*(9͌v&5d2|ќo<v8*.C)iXF89ю,*XN{Dݝn$pF*jlJ[ĸدiu*_	*wVS1Y'';n_b6+sfhI7q z}04+%<hat>++BPxP''"XpThw"e+(Oi~.I%ƥ?"~Y之boQ\\Y+EˎR9KB$\Z5ާWd+I* "2:Gflp=+LJc>''W&(S˙@Zv˃z+Y\rV?vYrqK墔ϲY`p''°r+^Hu߲֨nTZ7+u i\rnQ\\24eK9tM,O\Z+kd\Z''ȍ,GwwqN+ZP2lv,,2RV~I+<\ZXep^1JH|F]4+Zr\\azk̧αk+ Wqz"[נ˽_{,\rNMd_z_T3$7Xc.5AX,XمWvY9bԁ''7 }\n,#|xIh܈G:`3{_^c,aY}PR6`)Kfism ,hg8պLɋZ:\Zí>7,m\ZrbJ|&\\"C8)O},1^7\rx6$''.SWF,!\\u|1;8}srE^,lTѕ%P~Ȝxq\r޶f,A&B[^$NΏ<V`ۓr,S\Z\rz˃]Ӭ#pD*tXk,gE^"5¸6FO,ڀ1f,Ms]B#^X=d`,ԀJ`j0A\n*LzG,iS~?:5^:b\\BGQoz!bvE|,㯢/z]_Wpd.f,U{+bzb!U - \0&_K:|▴,Yȴ4UTđ-7bkٚA53gFEk|^ڒn^)-#;ŹDoIYMAu-4akO67ZޡR)&~	-;i\\3.''=Ϗrs''1\0<-@g %uON\\}@lf''-j6\nT1d"t9}Dh#Ϭ=-$''2nIO<ܠ^oPh''-99\\B\rVեȊ(xz~uS_-HP{cܻ:n{2sZq:7A)l-ӌl^.ԫ;	><;nC\\-Վ$"shHpi[[-בt!o_!\Z|ʓ+Ԭ-ת1:c&h	ֳ4VF-,%nb6qs~~-6bitQڴ-,h8faPjgW>q\\q0-vw\\yU+.$aWݕ2.F.(2GKzj",55+%{	W.~\rB|\\}:tJsfZ."wk~?''L-ʅ+?.#$.N.\\"Cuj%HEJֈ^a.%%،kɐTaEQdu8ٍ~3.)y\ZJ\n*Fh,TTuԃ N.KnG''z=_ĨK\nO`r9.Z=??KYZ2\0fSzgG(n+.bV(CQqݬ9B}J]6N	,.d-vۺŒ#u7)ғ{.nz]̿jtD\0CQgU.{fZ%{34`zo<":qe5Ab..I)6Zn)"6\Z]\r3CFZW.^O:Q|n[c32k5jy".)G]C{.=C+[p-R.Bx~Cd\r(olv+k\n.e0"@4Vft ٢:+F=c6.$4ZknK\0M5hÊ9djf.SP*6;]XRCɆ\regf.йhdBiHɀns᝗\\O/^W)H\\y=Z3%1q^QdaH/<E=C$xBHxJ`Jw/#ׄז4$ǽ~r>-h%8X/,b2H=XӲ\0DNb1/.٘ÇKv\\)wS//5+Jm,/E_-;(\0q\Z/70/!BsݒoBͻe}y^/>wi`S{oF:i8/M4H&ol=|@uQD}Wp/P~ĦczV \\ȀĔOyi-F/_9^`5JҼ,YajKEl/f3sa-\\O!I`"D''uJ/o-7`Xf$;,rӍo/v ''I5R/^\nBR701nQ=*Q/|w΅jRzZHcxS Jb͌/YlezIGzzss=\\}/ԣZg\0cVץvdZ/	43sx|"@-8,^F/GO%<"!5Ĩ`0<hCJ/|`zZ\0^\n͎#0"\0@/XŃY]IO/)˲jtS+KUVSx\\/?<@qv4?rcm5/FA@TZ5a )LOfWRl!"t/JtR8֓9HdFأ8/SVS4zlCoӌ\r~/NYA-Ruj>Fu@X/7\0qe\nO^0sԐ@7Ty0C?Bk\0''́<ג+F/&\ZC0o7Ԃ؝^\ZtU:+0COܢ6YyK8<GTJ0&#b93LC\0vX<cɘTX0)5iKejՈT|F$4t0J;;Qx*,Uľ<g_;o-H0X!ލ\nB"`Á6D KP?_0X73S;\03m&)$K>7wtT"0[nڕrwe&E_JC䒈0iG/+UW3Ii\r·8صS 80sa`"*m(|-=9ƄA@0(<~U-t.&]%/w1Ro0i\ZjÈ~3~NU0Q9''j\rpWCmg0bu+<0gк}bIYwe.G0pʊR^=Yo(a*7`0,d9ɘG\n6P$JC97,nH0qeR1:''QDuhVwχ0YiѾc1ˁ\Z[^r0\rHCx^\n#QY4NX1!3Q*\nX}(bz=./1&ZV0c;dClξP`c1.+;e&IF@ЄH(\0?#^1/pJVQ2v앀]L9e?4J15V^,gK|#0Idlo1D;JeDv"gxu޹QCx	1K6]Lݲ]`rS{Ul1\\^8.ljЅ4x]|1]T2J\\+	i6SvS,E1e䅁8oNT:w8<:1u''Y	/%\0B\01-#$p&h5hJm9m.1SP^&! !\r\nO6''R 6a\n-1H"gyц*&\Zb&fK1_X#/I*DN|qx ]\n\\t1B}=\0)	㊢Gu\n1f@g<g-vIP8ၳ1׋0*E3:/2pկ\0K2^(16s4>gHTs*NVB25ǶBV7jb_RnC26?ô%I8#AaW=ҀVONhE2AWB]b}cޏB#2BQb9L''͛BBT2DlyO_!DFjF^=-vQ"T2v2Hs|k-D`]^9c,2Mp=B+6A9 =)2SLb{Xsǅ*@)Q2i˷ si''t/Nw.yE2j/ROQ<w`rѽj0<[7wC2vziM%\\Xt#$e*2{yC$%BE;4>f&b=r2})vD$t2.P엳2AG8Q2%bSO5 ]	Lfǘ\n^2ӆJJ/CC7N֍׌\rji2MmQf!=s*2"!-2ؗČ_g[)@23>,.2SUo	ؠѠ]S5wn2-;/{Maޏû\\uy2ٹ<dI=@M8>4c!^i N3fKfY8~Dh_驪%*&zF0-339DkNd\rF$O2>acc;S3A\Z=qn"kLEI?e3E!ރXO+)\r^gPǁJ3Oj}.j	^W/Q(ϿиhBC3Z:2$FyP7bء: yM3r=	aԅ6~1t}k3i刍Z++<A&n?%3J~wUV.gD%ޠ.P	<Q3A{gh胳uPbWfiU ԝ37H00ԭ*:>a_r`g3լKYCX-kg9[۳҄4E$#i@=!%9(:cltL4P\Z+KibEWВq`r\nQL4\r(HO_)yJwL4K\0$|%ܰ^qB۱&K4,jE6@9&YPd4-;*B_|TB !''o\nQn4R;23[s|\\cQjcTx4We.e>uɑyVc@4^tfX9#T<ٌRDuhTQ4gѓ7G>\\JZl24sk\ZHD.MK{\\a\0%24UQ\r1#_fH*Idl4H}AC{Hh/}sfY4%C]q@m7kDW*_4]]@w:yٺX)%ǀ[btbsm/94jnqn-xuj<mO4%_^^[2ɝis.Ǫ-4ˁY2˽5Mf՞v2,.\\~4\Zr}McP\\GϢl8E58u_#gxTጷ7#l r5\n֚8qW@CHҘ\\eg5c[/8>8g1ZnBȥgx5IwNezվEs-M$g$5#_D؞;}6]&]&ig>W5$;/mkz 𙠓pA5*¨Po;,XȋyE[~5B`DSx|4q|ҭ^]5YY+W4~:j/:ّ,j5ox~,\ZF<H5ͱhYI&BiUI?ґ5p73aa)I>/@5	XxtB\Z}OL=\r6I5<8SIR\rAssf[HD35f`dP&r:]ﰻӏzW#[5`Hֺ>R5EOI5$lB]fE8f,}pQqtBZ1O6%"\\\\4N*F`Γ\rL*=68ό̝+Ժn^V7)z	6=G!J|Gl̣8(xH,Q66G\rkH:\r,6Yէjh=Q$rFa6XW\r2Ya\nND;3>?)?V6k>׺	QHa[ב]{9F6tY~''IY+65}jghy:6RPJÒ2]bD\r\0JnRiZ6}o\ZSuS4̀n\rh6\\楅Tb{)p2u,օɥ!wlb6]pt=V\0XڦfY6嘵h+2P{/c\\6ɕIңMka_G#1m6ռ|d5l¼g40''B`V6UmЖ%?MSA^=X|U7ISXeiNn&役day7\n@3l,UlL԰XfRuDYRsm7MI.-*\r7ȧ\\ݱє@bdx?7)J2,"\ZV#b{7\Z>Q;~ogYF7]UP*2Ҫ#bV EXj7b18!U=ɀm{YQ7m0 䞤3ţK7\nFg0bݕW 7nvhXd"͉Jڈ7qp.}a\r`7nsB}@Ӆv7ق\ZE.E{(YKhd`zk7#q$TT)Foe''&?Prj%o7@lDIR*)UҵR&\0e7|&,SWĦl~e|T5o8,geJ\n-Ft[nw|84د,X-i>X< .f`iPb8Kǖڴ"-??,[{/Ou|Ep8`ѰMU8?i$"O{8o0;ৗPj둪9I(hm~8~/S#WUD~c9uuTv8-%s`NaL	LMʫ)8ux:+H\Z+2O)ڽBx8''[%,-Yl>Jׄ+:rGj8Eۍo''=#2\rpq̨n#8ړ1b;0eR juU``is8~K[MXчd>PgVEnam92gK:raW;''ӎ19>|yɮ,naS>\\S9I<Ra~Te8JG,d[Js29PŠ`8_K#,lSVd*6T3-`~9T-Hȏ :91S\\\rb?FC9Wm\Z XQ?uM\0Gu7nO9e9Dg2[Oe-DqTnoK-9f`Ewo{)Q1W<ɋ9pmRzmAq*Z3V\n-9yԆ&/AXHi{b7frw=m93ԍ8Aϣ=謵V؜97TBR#[\rO:K)X95V]*sꈻjq7˨39æ%!bdV@O GaM㾨\n{d9n~AbHcx;Bo>1<9J|UA6@)Y>$Uٚ駥6b"9~%q2^JD3]Z4qT9$2!躏uΙ)\0Я9qBYaهsdyPù(Cl;]%:Z?SjMa\0yJc/E#8s:\n1.V\\dS="E,vv0|:]}j,N_8u8K`/%3`4-:k6ZJWj?vA^a-YE8.,%:	W[_Omҿr>*y:O3֛KiD--*3K/:j''}!}DD%X6D:I.OHmA(\\͚/^`:me0i7Y,<Yވ-|:d eU&\0WC}>a4:`VA">cBtًu''S\n:Z!IٌK[M:\n[vg%Gpa?>m_k5:U#?_jL2S2UH^;R^y]%a3_);te;#Ax]ޥEծ+\0qmM;JE]Nj.1*EgWM;dߩ,Zz^uXј8}l$Y;glSɹ\0G,i8M\0;qf%()cw$Ad[e;rthؒVg(eg1AH;zmpKm\0'']s\Z)MR!\\U<;\r\0osoB>Ô]ucrբT;\Zm}gO_t%nȅۯw?;0NU-\n$ΡJ;7DnRWN4@Js`I;Pֺv}MZֵ&V<JS;ϟj\\%zv}d83e_;خBX]b +jGݸƖ^g{9;\Z+gE p;wG;@_M-Յ,(gBC''4/;]A(1x&̮^l_k8c<F࠴\0D;PwQtsρ<:G&D]ԃE3 	uݜt< `2!l~sDU=TR@I<!{]wfְz=~SA>nJ<''<''[Oe0Րu!X	g<7SdT	{~}&(94Y_S#+T\Z<?ni6~ϊzӭDzm''={?63T<Z0|rAI~}	jL3ڕi=<m2[gC|0ڌ<x:wLdd|G%N=s<{AkD`0AG&d7=\Z;*ZKO\0<\0͐$5ŵǙ![G7]5+<ms43p-I/8''J }.<H.<1zff:/|5F"<^}<P,vuSk53lD TZ~O<Ό:9/(\\֎tl]ǳ^82<ԫ!q2{Q:΅2U?=>j\r;|sXRL7ŦS=A@5Ӿ;"vkkaϛa⵴.kgE=%x,''}<*puXpsH#r=Mbg`<CX6.4x§{=Qsf#1"C+3b5|<PC=eIqRm\\t`h,i3=ڹ\\0$[#b=$H3f4DVrj!?=M@},JFh1=.	ە &IgCq[OS=dtz\\IgN\nd%?8e%`s2I=R"v>t&MG(ImyF;>\Z]ƚB̏Xvذc.N2NҹЯ>"8*S@-bH"aiEx>"eY-:037,jO>pE;A\nq݃,(2	>rf	/lٸ$\ny+b+0ZH0wbVǝ>@ZHӐǓ9)W|9^~>+1XsVTC>PTϻ7r`K˒#F>EoG0W^ڭ>&in\0Y9>xf?)SvRKZnR>ԹW^;a*qoic>G+GY/Cꕻ܀6r&?	]M.nb4sT+H?ڟ>!dE_5;$~$&Ơ\r?) wYxmN#"( 0wiIٹ2i?''Ѐ|8i{_z_)-2=wmowС?,guV-Ub<eAǩKN?3ͳD[qJŎg*hY?>ec2uu?H''SD><56̧5c#_{8cf?Od6Cu>Jrhte?QOxR"&Z-Cj\r?_6b%㻧֪KxLb͟?w@Q׶wT\Z06\n>=h?h]0\0	BLJ?REƎ2_ۖ4=\ndp?\r۴<~S1.QEm?-KtdޕvjJ3wV?`{W e6W,''=B9?YꝤ;ܮS{Bv,J{9?W^z\0Y*`\\P+-Z lo?E4@+>~_tev\nh@$yZΤT+Ifؒc#pC@vPo4OuY7jѤ@s''b N9E=оS0V{K@kX$ΩPB	=PS@:xcÆPVqt(*@CARA5P}%bI^C3@Lo֟Gj_x0`8C{p@`@SzqqOJå뒙zy8fE@Z=sX/$Xv\0uy8=7@^<۬''=fn+~w;\0@`7ZǛbvP2t@hlqҀ@qbjuO ;x\Z{%y	*]@vKިk%~|``<5P.@|INAY:_I⡤a*)gF@~bR鏒Z^g4t\\E[]x.@ll4w2lq3P"@\nfK{L:z2Ər%D0@F3\\;e0ہNQP\Z@ny\\gGBs5w>l\\k@;ExS\r=KA-py@\0!\0,:/퉔*6K`@@ɦ =Kwٸ\rk)\\Xsʑ] ܈@Q4PlN،F!KA$0jg\03dhfGTG)̷!A#	m@obm{p1f	S}lSA92!Z9^v*\0D8\Z=Qy\ZAbA:(xʶղo!VGpYkf/PAP\n֫Tbc)q8JzByd?MAv{/Gg^6~F\nĖSA	AzCGFs3ՍO¡M<A5Nkj(W{l9XIk.Q"#Ac76QN^"Bz͍NAZ%6PÙH[h\n@ <A/eʣP3sEbz%xK#TAjڱ]Uf89byFvw1$eAć|iqvWj^<w''5AN~mDD*W \ne\Z^Dhu]A@z$zYumpܔ^6/bA8OвOzyK\Zt\\Aiߤ^fW͊ßv#\ZgaAJnbӿv(/DȝlstA)6.k#a\rUAe[	v̛3kg\n"݌A^KU~szp~*`AK=kAA%%㒔	_yŧiAtx</YD:=o	uAR<K!tDJN]F!ƚ|\rjB\07r\n75HτK~+DBoB5}\r}dT/ШȐ؎,BBI\\ccx|c\rwHN,4?B!!$ケք!V[]ǐQ''B*/zn-TfYzO|EVB?]̵[zH2JMHLNBq\\uM.ejfIߨq@ 8}pZb\0BV\n,O{Ƃ9Ң,BMZrDgKZy{!dVB=;7+Z.V71ZeǓtFB<=P''\rl5hhH@Cp32ɭvCcBR*8ŘT/]s.9T(BۥD~ǖܬB>\\_EqlOxy\naB\nġ?}VxqAaIwA''6BIq0q\Z* Z>%C!lBf!!VpJE\0$B˛G{VgVF@4S#<C6m菛ml 2}$\\A/Ci\rﶤ*Ϡh`>dlC>0,cJvy욓(T݄ICN6Z:cz15(Es{(MC7g>֨''={D4.)p2Cjᥥ-DX\rHKqM`oCnUc]L]Ģ6C1rCt[P9o&іcvCǡb;C]U:3<v=\r\\G)Cvm9)wlNd?>oC4)iǌ<1u"CO5XW	NJ6C]ת.7fbʹo	$LpDC~r2B8\nInnC3(`e#b3Տ~;o4TCjU#HL\\Y%"rS{tʪCyԊJDoHy$+|COW%tߏY|&0V\\C*$nPJC%^-9^:Dg9ե+ww''YJED2Pwr8IeW})sn\0D?j^*{2	Wc| ]ytDC\\N\ZK`ao2LJSw5:LTDHoBT"/T[hN;*wo^DLSggݨ?猑ϞY1ћ hDX{L96Ef=k=7:#JY#sΉeDk52o+פI0Dp"bPmEN}^[:qfDTE)$Gets̮E\nDq3<W͵\n\0KІ:JBD"KꖌT+qr9tJv!!D5R?;\Z%}z\0)r`D%}ImF2=(''+AXD"e9VIm425CAP%_DƎ6SxhjﰌG]ii_DTX6_8T&\ZUc\Z~@Q3gTDz\nr#o8]q˩8gwD\nDKbu4iQ'':-!:	2Wi\\DN-I00?4zf<HnE\rע4/X!3~\0]E(ڏK"y69=a1c30mE*h5|y;f\rka퓤~NrE08L}qe%vB|:hwE73~K\027r"U%-_:E:kfdtps*H@+I35_\Zr3E=C(b}7{7$;.lOWJ\\SwE@̣Bnb8ϜNW%EG-=|6W +xA0Icq_+EHϬ)mou+Q\0b\r''iEJVU2b7jMy8]nF}Z?4E}ZnՍ.G{$X(jyqo=E6x7nojah.e5E''%Xm-QsĊKebbXpbE-8\nuT/§Ώixr& 3EЈ\ZT׵$;QE!!ͥ)r;n6EkS1$`^EǰĎpbreO@E(vi\n.Kw''6QE]"-@Yb$~\ra1%F ͥZZ(5JCk"|dwqFǾ''T%c*|kȃu\ZNMFkfSGK#:ݒmSk%FhޙHmkܲ=FwسY=!B\rJ9F!	P\r''w:(Q\n=jlhjF+"2|+FUÊ;YIፔ}f}|F.Az~G-v^t^0\r6<ЅfhFOV3"!kPFVїa6yp''3]'',Ft@Z2+Aw	<J\0ꄤF}&w=4qu\ZX?F{WB!Fy3n#;Fzgsf7BXзIwEFtv\Z:;`jʠBF!"n=2WMw!_YK`G^ЗαtGe)\\GnU>)_\Z1d/ڝ2>\ZJG=z\r"O#K}DI"9/G@cyI,p ޹=&GBTg{yÈCI҂GB#(>+:Ծ\Zh/TGI}?\Z)[>"n`CcfG]˽{0nّ)mwhnmTC&G^P[ְa+䂓݈mg ?Gsq"qk,&u{ni>mGs}꣩~V/	ݭ[:Y\\Gt_!HXЫwcqe6>TkGwW\0I*)P"}@<нPG~x%퍾˳>)d(\ZBNJ!G@PȃU! 91XYMQe \0׍`G?}o>UΌ5O*q&+v3\ZRmh@GX	"\\4ֺ\r=xGgr8,Bc]u_a\r̊;~GW\r\ZG$7iD>b^Ϯ4GĳYqU鄦l"	,]fC"sG''Y75Tjd5:X}{GH{p<ZtMh`KALGc`B+91l%S;8B!Gm]p"T25k5/q{VG,z?|,ΫME*OG:}\\\r#}guHAf%1h*#\ZUEUh>B=rHp\r\0VQ]%<	&si\Z[HHeQe	=:2sO8OrȜŖH9mPȥ"Tթ/5{!#^HB]=|\rUJ¢ Iwj ~HN>+fVQщ2^HYS{NGG\nWH=8H`kfNLh`o[agvEHaYB3GDۊY|_]H{8;sP%;q9\\}IWH٤]ê\0{/| odlJ/1HQ0z/t$ځ7)IH {"!b(ArD]R;HJ` tHV{H5"wqnG8xCZ(\07HƎ+@Ib^=QvM6_iLH3:Bk[e<KRT6uLbhH >+4x6''ܠOധ(HE6Ib>G+x\\gI10%V`ޮfa8~(I\nM9%gfX$Xm<~ucI;BSGlDkl,\0)IGQp5u\0c{}A>INE篏j4G\Z\Z}CJCIZ4ֻ{җ7taxВH1I\\õbD_kvNAF\0x6iBIy\r|qSA*	}HPI|07ane;\\UI>ٽ^iliA$UM>l)$iIg-ӮP?{uORRr%~I?R`#C''''"\\j\0aR_I-Y07Z"W߿	\Z_\r-LIs\n	-/X^IP$K~Pmhf l<!,%fIѠhqLD~Zwͬ\Zz7ÕC1IBE!u)ȧZe\Z]>$:1IBqM 5{s6 liY,ɦde\reUI?5jn7+#IkScIzV%N)S\\n$-/A@`JR2_s{\n/vgLi:%JeN2\0Y by_BQJ(|"Dw@΢w;`SE'']J0^iN餸yLms{(J2<0U=''oǙJJ/Wԭl+j'']5JWejJAU]1^s?Z\0JX#jwӚYUZ+v*+Jc=[)K5\0,S*:F\0Jj;K;s\\2~4J3AZ[;` 3˦oJ4+`b	\0Yy6WqDÅJ Vsf^0G\\JYF >%PMF?iOJ	p5vv8( Jbjb4Djw*4鱋p-:Vx@~J6dAl{Й\0JhJߏƁ}0.pe	G^~QyJ$E!\Z"wONЇ^mJP#d	T먎=v*Qftz\nKI1Z.|=3S0\r8]+K3SxFHnZDa۳ws)*xKPF1)o47@VOfU5gKa;׾$(Ui{iN)hi''T͌Y01Ke]o?>M3<XKxd]p씟6r7q7nhXJ!K%JW;E)K;.8^&\Zt%n|TKRhqђ*b8`d>Khtâªx\0,\nywKzͼ3cޖ22?C@b_LK;ztu,1}V\Z&!5W,(Kk$Ht80%\Z''%  	ujKOEnAF>ڒd3\Z_0D)''K\naڄh)Ĉ#巆BP$;L$QA\Z3oT֟xp\\Ci5L&z֏ͭ+	*&X&R&eLE''JnE@lr!3Άv\rLLsd+BlYs''5fJ?6LL)<ՔjFWB0#pmLOHTcK6.e;]Aes˿SFLS#Vo8ki.e"kߦpLq4ZյH\0e7f=\r\nDC>OVLz7\ZUۼx{UW?EQK0\Z`hlL(pyp]&8,"6$cM׳Z}uL[-R+|\\٭⦍;yLf6=([х`#7~(aLO<e7j};h&K9< LC해1%PǭVq{{r"H.QLCUhU;4n}Rmx;ČLvWUkd4O-b\rLvQ4xA>krk-\0LG0O)=/bL;댰ޜA|L:}%,\\}~8\\Oa8DsXLܨ\\H=c\ZIpbxn5IL*~ΠExI<''ULhk_fBL]E;B/y/k]r"< H$LRHxsq5]Mf9M㈠x/"viD9EM\nA''J@cVM|)=5c[!MHڋTYQ6cf|hMVsh$Cڝr+Bw&u&kMk_!:óa#\\	^1M??Ҏ{۳оdCϰ݄D=%MY~q_$19w`\ZM[i%MAD.l.\Zn pTtMyL;-ڛ%Iu\\K|,̞f] M;*jh\04''u\r_`t"O͝4MĮ.4jW[a`A>?6eXMvf\0p`3:%#&(OMk?[.0fY]d"dI雌MӬP=ȍM>lwov\0M~Yk@L"#"/;cvj~\0dMϸ\ZP\\x\09F''?Շ=MSp}T.!$|N\\YNݝEh\Z,P.gKNmgl)A? NNegRwSn\nGКqN9]`T*L)w\0+Ã-r]NA;ַo5906lÆlyzNL2hګF$H[=NR2\rQ${)NU{Wkz\\mlf#7Np.j샣f7F,D2٭:2+,Nȩx=.ےGnca(N"?XhLf?e!#+ov`nN&\Zc\n7˾\Zŏ6H6N:Ǝ>%,7	g`ez,N\\pt3+,l''cOQ+ZNvޏLTgwR\\Gh,NIo&8M{nJ\nӐONe>h@J|jlŷp>UЏNj$-GE)&J4GꝝTNkӲG'':2]F+Nu.J=,1.JakT~/ANYGDbi\\iRL<&''?<U3XNWNlN4~ J&R\\xd׾tR_ O	Y@9P->5Uw\n''ORkg)eFèl,@O({\\ǨU^D%!䶣XXJO:XZ%M;	;?՗l%OAt]2~''C>pGOCdo^r?Ӳd8&VOGޣY8+]^wtX]ݯs6QzOeIVi\\q<:mWDlK̈́''BIOpb6<Fϻi䲯Hp\082C*Or#Z<B$B|cwAhLROe/<H}	JtJ3KO%zwvW8XF]lUOg6r\r\npHַ̐|OAR`qL?׬O3vv\0Uow\0KOu\\\r\r$-k}3`\\kxOW\Z9aq(:3+*+m;Oo/Y)?Y]8h"O~xwU.]bfW`hW\\ܭmP\nkH6w#rv{0=頻\0i.PzZboBL]+n@$G*QhtP\nO#~# |F:Q>݄GPkSZz0DϫI,1h]jP0ffGRWvԏ]OͫoP=q"\\&4o0iPB1Bʍ8aSh@<^!|\nPBH<}FJg=rvqPD+ˢRƆ5BhX]lWP_M4WM$\r]\n]|a*Pk:ESv\ZLa"i\0SO2s=Pns%p=cz{\n~0ј''gP~ؤX7LG0QdkL;}PV\nB^~Uh yr.F>6pNP\Z=sj&N1>Mj_hP1mK=Y4$	r֨\r(|/g˥$PĽ7_cZs82F%\ZFJ:7PP*HƲB?BnƤ1K ]sgP3JFÑm\0[l%$\rPK&O5''RTˢ"Lr<ϑ6P,\\Z` !s3PWJ\0w~\ry!R\Z[BE&@$\rPO\r\0݉U}$a)S~''A\\KP-GmAl:7bByBG7 k''PG2ܴ[b:ޖx0s;w`P%?kN&{(bG!㝨Q\rLd^!DG4gt׵ʚH"QAYZbDeO0{Y0XvQ&g듣aI\Z5Ec&#M/Q*۹MQ-JAB@Zsrs! .5Q8.f\Z`>z;+8$3Q>+]6''Gq*r-UZ\\>#)MQJrZ#6\Zd&!;]sZ\ne7 QKP;XӦ_f)ӊC?*QmsG{RcXS`	.aGK0O*>TBQtAFB;<b|OPtgyWZQ{͂qZ/)L^X>oioG6Q]Bἃr4?N&uZsQ^QJC}fL[`%%˚ſbiGQzzu}Ϙտ>g&98Q[#Tӯ`0QԎRIQҳ|I5uA7,^j''\ZQ~uRkH%6tuY09|*/Q\nZc4؅	gie-''kRH8zqΧϧX}u[#OzRc}A*3(x\ZwU"''`R|75I|f(j\0R(߳\\ߥH3U=NKR0_W閵w\ne􆌐\n#	R3_ýiPzeԹ(zWZL0N"Re{(TFQA	ǴNRr2+P;ʅr{\0L]ۇv+Ru8ip=J]wBR\Z0b5gU"k)wC^N+*7RksMM	q;Σg0ERP"bM=sHmu/MRោa:hxE	gkA	+S֠ǃnDJH0h@ہ*Nt`JStBmۄ4t\\N9H6ÑS-4d-vE\r\r>SBdqRV+?򎻯0SKIr)},2xqj6+iDS^[m_,Y%q[GD=oS_RvFF5߳7s"O''GSh`.!1eUG19rj<b4$US}MWs\\KGcVGm4Q#S1)po#g4#.<nS,o5ȋ\0''Yb-XjQ(,FS-yq./v5At*S\n@Gf_`IFaQm]-<S̏[;cC\ZE4?6SA4c\\D56-#d*ҽӾRT	y^\n\\ew\ZKWrNe/{TX%Nuz~cƢC	W[Tz1PWj=bY''ǪtNT)訓{''T*YnZv.\r_"\n)jeT<!M,z[~>V2#}E)TT2?%iI	`V-  ՊtTV\\-OKXǯ.ŹNЙu1^TY;GV\\7hW~O\\Q{"T_ GlyN2Ni3Tus)m[|lI\\³\ZɁmUT3.Q>7J٫I JWaT0uiV=J+KR֑\ZLר I݁WTw_`zzv5`rP[}~3UːTm9v.x9T .&:ouE/$&6$UVΙpWx$?⇼PUl?lNv60'',(N\0&U04+@qj?35Sr{ۈR;͎U;STS2.}1XSH&XE6UKCW͢/Z3\ZӶIqUW&k?un.No^Xۅ5PUl6>8Sᒻfu8	q~$rUmPg[6m	ecY;U}8:l֑ŗ[J҃''gUaxc0b)i`WACL܌5UyB''l;FVӸz`|\nC1BmUk\Z"4i`FVm¬GXiEU۶B?wN -Čm\ZէUM: ݗL-^)|;%U6ɣi3b-ڋL eB[\nkUݵdRj(gE콄\\6%du~UWqPuUT=?V#20f~\\U@&?bKR[,3m.\ZѮbUxvȎ$@\\Mc I @ /wUɧk)I)G55	fR7U𒃔`Λ)ͽHEl#ez@DUeDDkX5\\h=,U\Z8Z\0U.X}b,WsfyyEQF_[VPjh>?2\\GZSP?3V,{+x}-\n uM8g>,l{TV/?|`0V6K Jg^u|gVA\0דDN`\n)Pk9WQҌŻ>VKaFqkNi7PVXWԖx@*kU?P6Ѣ"5V_QZH؛N\\&IUb󚂇\Z|}VxG٘o)y0`cV࡛J[luXkUv"PVXQ3L!h"i#:@V̲D33>/Qu`ʤR@@V/q>^b\ZgQV\nͳwœga\\~J8wN:mN+VEI0uX^@&2*֝XVbqPJ\0?HYzVΪ\Z\0G7h"]c..̭IkXVq{}A!z3V~<''=V]as-X%2t䟘9e\0|''F}V*:ߍ>I<7{+%WaV>Efw)\\QQ.Hz\rVk8v>KP3X{:lc@WE&TW֪2|0NҵxǣYO24pW%NqG+4;iiW;&c6pDX]`gP׌U]!WYYsǬ/ǓtB&MV;cˍ''ӲW`fE/C2r)lPCCj?Weō_ցݲ:Ɂ}@RWиEXWfC3Ku!7J!l7˾bԿWh?Cexl}$ӈOJc_WsyWhaϵ:["5acQQt	EWwR%G`{\\]3+G]l-`WyӀV]@aMxezEhsQgmgWo5ҁRj?UZ(O%zWxO`5$=U>oWs4ByBw5 WѾ\r%,Z	A+u82,gL\Z_Wf.\Z	`,Hj`?ߎ_4YOt7W9,P2e!X:^uIVnNYW} 8.tf0''	WO}leVd`10bW@XXP H_0Nc\nZ`OX\Z?yv}hD.嬛Mv)X\Zp/}պ \r_<"\Z!}X(覔7+Nb&1Y[; X(f\03Jm<\n%lrX-''ޅuً޳ (6/-#X8P_9kQa[-mS''<@!V:XHPpE%*+%tf`Xb}̿L,gCy~eb''\n41Xc"h.AbqKӹw_U@9XicR)RǠ.#`jjŏ3?Xp*-[DP<V8A#sAgSncƽXtɁh:bpDahMEj	Fw(Xź= )e׎.xipXL]O}Fw	Vy"#aq"=rXe$<q>jM5̸z>6X!w4-<[EAbgzXPIJpe8 ,cm[X%B{0y2|kTUgm#YX}wɗR67uMT!ܟʷ\r2XxEKƪ.,lX>w{oyi%UHqAcXr5yw]jγگzж\ZYV$/@=V-dcYE4eVLF/Uk,~Y?c*_a)\0|4St}-ʁYAD]ʈxYN.7l}eKYCϩϟ$p˯=qj=hs"(\ZN)Yek\Zkt~n4&p#ӜYtmk9Q煇0`NiYvSu%C_{	Ą#NQgKY%FVOc$m3\rYl5pY=!\\^ox>S8Y-Y(4:O}ձ/\nGJb=QL}Y`x^.H#ƹ/24ēcY@e?W\\''lm^9ďޮ-+Y=&~.QLF˛՟YiH\0U3$L$uHsYt"5Y[盢Z[kٓY7ɡܼa/c$ۮ7\rDr\\.FEY1n8DoXa0ɫqp&EZ4rB֏znբ> ''dRZG\n+:P|>sPc^M"qZ%4''\nC`Zó4cj/lZ6rUB!tRytJI0+dI"1Z:\r}nZ`tj!Ll	{bgZWjI\Zg*(T\n\\Lbr7tɀ\nEAZWr\\#͕	!^lt|oC lZ^x  -}:ɏ\\rNZb)VlJfdX#lW@ W ZS-`~nV"\ZUMT;?ZӦ8yikP\Z3葊]Z֪m떕"|OJ}^@ƻZ-r廒^*`t6/[<h[F̛PK\02@L y/U[\nxSSYP垫B_XK8Sa#[\n*k05Da4;\0/_7a[&(܇\0ΕljGn[\Z$k˹d?\\{\Zݐg/_,ip<[$r(ڛ8tbMq\0>5F[54(KL9&-kGRK$z,b6Fp[8si!@뮝{Bu$f<[B<s*;չC]+Ss[D\nphSuo9a`\0B,\ri[]9pmm:M9B>,A2[e2<wt5Hm|ۯx#F)=h[e6S"ñxakAyR[t;}n[ZVL[qTu!-.[u#''KF}a~\ZY	1L.p[[8akI%''n& G[)ߋT0uDWP",Lǫ[I,޲ZF[%yKRb6=F\\ad[U:˃VN:OexΊJ/Z[~KX适[\r"\Z,3z.S";r[\n)>l=lV;Ow~ [f''TOTef==&i[6;]qdJ\n}ʂɥD[yV |t\r\Z/]X\\m$\\ɭGͫFV6BZ@۪2X4Mw\\Jt.N4\08"̥A;(R[l6\\sq)|IJ<ͧ,xLI2[K0Pd\\|߯T(t2Dn\\3\Z#\\#G71\0nXsd\\?B:{Ӗ73LΔJ\\_{[GD%@Xo[tOx1\\HODĨ{d}d2sI1eO:yѪ\\-^q8%jY;&ͤy\\WɼSW#6+2}O}|FT\\I\r\\$m]IE#("sc1.\\lCv!Bwnsۘ%y\ZY(\\\Z(TbBWy9AK7H8\\3SR\0NEu=ߘo\\yT{MPu|)?\0@\\1B\\U6ӡj݀]bz܎6x+}''rҙ] |$,bEw`&uI"5`a]F5&-]V4dB@F])SwMU՝XQ=X|]<rֽ4j\nhNRz/>]A.ɤz.j/z]HB	m3сhܯ0x!ek-]JebUf7b^p3KOF܍⼶]NqCNٓԁ}~<a]`~$mg[K5NdjsiRF]fC-\\Oa+밎#i4x$jK]Ɇm{w#ߟ^,n,>]FHrP-sen|Xq\rmf`y]Q˄=PݵuQ{>ϐ]CŀPy(c:C#8]}_gXqwfuCh,;SI]m|TosE\rH(lU]vY\nu)SEE\\>A?]LV]r6|Ww''Y]V05,MΌ9nrDUu7]ؕY''Tҹ0 P=<q^TȺ^ķ>`}jNG\\''̅^>"5J+fi7h&CϭX2\ZK^7qUd>VNchap9k<^#[ao0r\ZZX"^>r=`7\Z)x^AG^7 ;6`*$^v_^I2ńyNI_''2GMtO^W;s]-4V84^ͼ,i^g KcZ0(!~zW":N^mm[(C,m.^vDG=msv^ΜȜ5y\\s%^ q(j \0If}"l\Zm^:UrUЬDUA6YfCb^Ujx{+"&?5YpѵD?T^\n0{zs>Nz/@6R^HR7-IAÿL#~{چUď~^݌)nTh):3"WjEv9NnZ-mѵK^Ru(.q	FOb5\rIi&^PK:`XYqpI~^<gh/Z4JDis^.:%5)4Ncj,6|^׋܄yiTWaD#Fu2_2f\nw/ީ}\r<8Z$_M7ĘTf&%Z1S/-v_|BO\Z߭/Blk|S|dǈheP_,aLO0lӔB\\U{Er@4_=>7b\n6h鶨Pj|"xhy_>mjT(\\h3-QHcE_?,Ibe}8\\Las/_T_:rcߘsN/]\n{zJ_duA#fE*.\nn9T\Z9pYbX_lbR,''IheRD8}H_oYٱRQ_}GJ1m]~_7Q0WA-@\ZCTM2G_37~q/j\n9S#s_ՔJ\nZD.sA	1d Ͳ_64	PK_`I˨1?L_$@"4](XUjĳfIs҃_IGx%܍P8!S+_?`\rV/IHnsN%	cy_(F_YUsEƹT4qPMDSF>C6_\09zQT.oxlIޝʄC_כ?&mH[JRc# M6E_,@\\S7loFPTިG9_3̥3*m	h\ZnM kX`>:6ԩf	µ(rP`1:	u34vYya%̸"t`;pRqܘ9UA1ni`\0`>NgK)p&0L@e\Z`T.|	۞ĉ[bTI``tD;?^+ʓ5mP|&`\nR ]s?Idi#8Gp`QV;`_1pRF;`hs4DU.f$Ea<p[`\Z>f>-\n})ޞgGK!`2nԆ]֗mB+#GJ=g\\`!\r;^wjMRU"&ݻIʝi<l^H`dIUgQ|X!f~jm%Zp`E[s1.FN7<vl`.D{J`"92ԙWp`S,Ы=3 R=hR1\ZM$`.XAJ~R\\[ͬ@Noa\nU~Xs\\\r>cf"a2>b[/Wtz\rlyoUda1A,7%v=0<~>uaC$qas6[`u֓@W]-ͧawAV >[GAI\Z cr\\lafKZX~ͺ3b]L<7a,"Ɣ_*{Zmɛa+J#\r/_TQPOl齎l?aW99=s\rl)jb_A}apzTvƢ3<''\rkRUaE<2`\r_ra\n{!{Qدa~ͧZBvLj*Ah*ba«TtVk%aa3[EZA&#:	UxQazC居Z݀;4r=Θ|auY]iZܤO	Uh$''aDmERBt\r?fQb\rC?DK}y/;|MT$?b-a?<\Z-r\r$Z|Y\nbG03⊼\rQQQ@vIF.3Mܲ%UbJm-ʧ553P#A{6\r54bOQwùLѠâ9QlrlbP9ޤyPg"Ę"VbST2ΑCCD\\`ݮ>E?J3bZG~u&\r坯1楃/+/ibgBxɖ)#B_ur߮+bW(:|[K0bbٲJ4k&rhX+vOt$b0#ϦA*>pjqL*LN*\Z4b;ؽw"S8\\z}N0b}miz|:mZJbQ\ZBZQXNT6{hBqb􈀮9!X:\r3_:mcbqq[Jsآ_~4/`qc#ƈ|FwJ\0`w~^vEpLLcK͘G|\0wO>W! c<Gէ)hZN0˳w\Zc:UeHCB")Sε{cIH1Ũ?"= \nw"{xcSgy(0^xa&[5 fcT2骘''Te+b 6;cyc`G٥T~zF+UȐY,c|*3~`oQAHw0TcW; X5\ZOE3١Si\rcudyOT.`~<jx.\ZaєW6cCkU6ۺh<}0Bџ\\cO`H;гCe]ϙTc9כaIaX8\rr,F"C2SycHoԓıRU~oϳ,P)RWFcj޾?l''84F=/3;6)_qc.sH*-ب_:%;R''Kc!#Bi*+"\rnIƈXÉwcʗBZ7;_Zevd$Gjw}XXyu2Z=Io*6d/e\\sS:짆$flmojd13''mzU=&٪$?t׉$h"wd5[&*%\rG8	pS-쩟q`97dBݑ\\EgE8\nƱz\\\rx/dPⱱX.]9FP+zdW''MJe~vxh{s_|qaݴeͬdf/dBlهPQ=#djqe^1wK4IntfVC22@qdr\\=yZ].ɱ d|ImtP瀨96|d	Y@@+ғgʐ>$/d:4Wj(t04HV`?\\nu-Fd̃qx?''?lJkS#d߯ٹ,Z&{\r#qߕdIX&܍s!,,\ZVwYLdrSzn<N{1J,[o6`Wod0(X}v`"dWi^$_fdri"fvxʅeKA?S2dNWNVSCƨ!\\K;e!*Te#/^tvV~rBBGqۍ=e4cr}cٸeKWCs$Xg-e:iKp[8qBQě(3ePx3aGL2I<hʫx?VӆB`!\\eTm?Uy7,K\rpSUn8ͷ@e`݆.΃:jE\ZҰ5\Z)el%oѴm3VޡبSs?elPFX 7E5)<ȂY_K8''enR.	OFOXPhYC>WeY̻Ls{T=BrvIFUK:eEB	Lzt=F,faZ{ԲeJ*bV,CvbʃP~$eؓrJQ(O@_y''+*&w".eNױ?$ 5e% i3eb|(G\ZrK<7f=EY\n2fVL$/DEfl/ioVL5rpHͅќ5!fp0U~Ƒ]fO#iU|dpf1'')UɺO+pP\rkζf5=/-mZ<1rA#\0l2$Gf?sӊ1@cd`苲6fS~''h,P.E1J>3&`B(Lfb"=g.>{aۇaNl;)O&a,WfhP18jIU?7zju+j(>for\n&٣/	E.FM_hfocDl~1yFf(f9Ȇy7,W2)[*of ]|i\Z\0ֶ^ۇfO*Dx)cUmD}_ů*g#]"h0Vq)0j%Ign6/jfsehB3\\S\\gӦ\rW:Py}p!;\rc	%,g-Є#h;>	|3zBVg6BNp&\Zgq:sdgV|ӺgaWoE"{QTS{>giI?F]	{[Ε$^#d	gkg|y\Zog\n+acJgLlaۅ	粢{e;~Q7aYgaaq$+q0k+&;\Z\nl$hg%b]Zjd)-pFj 9g >0n)X2)0?8yg>ٗYl\r\n	PmAg;a¿]Xr~\nt¹n29gRA9%tS0:\\t&;bEg.$o8q;Z7tz?ǰ滬ڢ+gΪ#KQ]\n44wKgӕWѦ\n[T\nuA[zGzah\rʒ۩#jE;ի}Qe-6ĀCh"n9(ah޿[GQ<"h''+:ugcYcg=hh0zNW:\\jX%@f;hBkD]{8h~-2q aZzhI x<%ji$h\\|qA"_;^gcw\r{PhZ}bΔrӍ>hzT'',늨\0	lwJhͼƾekY\Zfmh3R._ K<IaŰhh<gs).זW0xZHCDh]3l%Y+!Fo^=hԉ$ЕbLhռo8u\Z:8N7IM!\Zlj#7hF5?uPF1/\n?qH\nNƐtbh5EgX5ٻC\0A=h1pF)ydʱvNyN/>uir	!8@DaE{i+;N3̖ EݶA乴+i:;0$PvF\nSp2ֹiEpwܙխG)j/vB"=>ƕkni[-R[4̠/IwFE	UUxi`WVdgz\0 *N᷌^eipZ&`Un$P9xA	ӉĽ\0i~::lwˉΤի8Qi(wAiYebR&P.U{vfxm)i}eP.P|S[wW&w4xiMW@U}POOJjr4M_E{i0yNG\\89''1+8*HdiiYS''댵`R^yg4ijӨ''i	.''kWwHo9eBQin"}Vu3)!ƫZϼ~\\C^&$iʱL.1ju0u/&S0iv*+&&@kM&Q͒i<\nv-,N7[Y&il%ZFd=}3liYtiқoHӝJ1p@tit.%-x;\n>r#,K+ȷic''͔Ҟ>:2nQn^Sjh\nј(&EeI\\s`|jS=s̼*a	jg,Fi6VeZKFj~3jb횄^Usv8$bM3yj!iH4]eL8\rSlcbj.QY#?}SRjj041@EX<\0+&Yj$6gCj6vt5r#gAWFٞ#Y ~jC,UMa\\kdDwiۭjG''C1Khb*|YFjI\n&U@4o=w|xӡ^jPV]g2LRSlwBqKje+=˵hOd\n:t(t%1j|TT*/#[;U[B?,ܐ`5j8ڪN9q9\rD@fTUj4Cu"B(7\rXF4uNcÈjP.cHqI<;whBNb8\\8cjq[@Ta`v+sfj	-%ZL9I~xmHՃj\ZpISbʟS}_Väj&Zy\nr[!đ֑I}	I+j~˴nBA-ԘFOZ*3yA^j`+A+95 SJ:9rj֯cQ1\0Fo fyHD0@)Cj]I\ZKxz՝^!bujSwKa^&4	tB۬iki85{?}"!AW,@zUklqUsn3\\}%2?rzB̲k2{z$\0+3QӉX˼ PkH%|QeHz\rYo6Fpi0[節kLQQ+Æ,AalENT@fkNIP-\Z7}HDC;ή>EkOQ|6[簮+UMT/2kUM,kEH+yJvyPKӨe*k]^=u\Z;d2kKo>K>EWM\0P3kXD''wMC\nᎺ''kQEE,ivDDBiRWkw6XN\r0cՖk3/B	ߪ\Zp"JghkɷdZqNЛ\Z,F\\\ZD+kUۜ[9؀jL2u9?uk]70Tq#C֠Ҳ0jkZu,=''СǗ:̨k&v]0d+mQkP;N3p\ZxqRWlֻqS)?\\Zԭ!?l=Q>|ZɊ>F5Yl!3E3G9߭!.0-4 <lLU[dg.\r5p\rQ<[vr0l_](7e/6dpk#l`Elx\0.s͡&G&lf\0#wc1[qq\r"PN%lH݇\r]0${	%O!l!OeuyMm1/lK$s0FP|P\\VS&6B=ѲRlbd#ZIwr0P,[D4li4쿦rnu)Kj5W	lm0h#25!v]l4VC:$l-Cjؒg\\rľϸCIClפiR8\0Gqq,_jmU|"la{!hPw{%&Y0Ғ|tm\0\r>ȑOv<kaeC@mO]^-,qsr6V%Fڻmeч_TG"^jU@s=Fц5|m\rXC9Sguh~RkYmemN\nTmG#И}ZYՀ"m9(Լy[EAI"Be]m;A\rd+j7qNy	v"PmNn5N:Xcd[SX/Mk,_W=YmV?|tBtW0]YǞskxm`6뽩%Hjl̬?.ml|,C+IbI$Ө\ZHΣ^"lQAmlԟB:,%c5iN9mnm>ގQQ0504|$8]Wp_Ltsm|i)m`mI}IdKj+9V̀j|,ĥm~<]xL1A8z\0-)@ʅm\0@4q $E˻9+moyfrGT^5\\kp0[*!mv<.K	1\\ WPL`mשs]S7LAZ&<섖v߂fPFmm؊}BP''|{M2gבYmQ\Z_b	E+MrL\nADmOxlꀟoPi2=mMڽݩ=FV7RͶ}9dg=mJKG*aC;X`eʍ3{@m`ek}âyF[u\ne^m.+ek$2p&S`1q3m\\D1B]8CIصYkm%ʄ\\[<-N2ER0nDs&UCn},i\0v_l\rn#O/jbwP&i#_`YОn%᜵%9qi/RocLhh''n4cyp}%4mb&+uvBn5jAx3fL{iƎ9nB%E¶>9d[[}3+hl_nLz<kɅ7k-\ZAADפ`(2nZ\rc %mGV@m@vTIJKndk.Cz]9fi0jϏ''YGg>npggz g5s.n5LW4nq0#O}"ENt!Cn}VwrS8=On쏇>	%KSn~\rq $p\0%0wJᱥnTĉIvyOiǒ4Mxn-Q1H.x(jի8XDn!5]X뭛S;u<}3U8'' n-yu_":~I8*2Yr5npXɛƗJX{a	nd),axć!n;N9@I-z̹>Gq n0oF!V_1''xhs<z=njwc=јZ7V=urhnG0%E(G&WX1tF!n灴U¢HZOh?\rniL&M٘x=Nf[y=/So+UYݵߛr0~xOs,2wohQdM\0;HՏp7Co\rP<)ňأ/o\0EŤCwh#9\\铽|oE²tQQbo\nrQq"/o2q",Hf!OצwZ=PLo5r+}o38Jo7\\jUB/O4D`0`/Eo:G$.\Z%БFFhSu<oKSc3YW$y6Vl21@9>ogÞw3@%>#W_SQyovQ"c4yIARKSUoQt''FOSژU.Ro}\nd֑%?M웪;o#(!o*lBe[뢕33ŔoׅCHla՘qnF}uoɑE+wdc#{AC\Zgo֑R`#:֥6dǈ8\Zox6}DP\rMb1a|iNo\r1d._f/7qAEoۙ\0Cgs0e7Nf9^1x~pW|bO<fc#_V|\\;Zpm+>\\#J2=)\ZXӮ=P	~rp%h7=APc(@Ƽp%{erB	d>HK5-c1>}p(%x5IYKfMQ	ڭL_:Gp7RVĊ:^L~һ:TWWp<D9ٌ	DpH2LReGMp>2xtntqbpTc Oj-΢	suj4IT#pkxѥLҗ)DAzYnV8p~$\ZtB@gZz^LͥpBώj%T(:\0.夨XDp%јȮWz̀+QSr=:5pYѹ!eu0v?.j[,Ĩ!pmӘD.uIdn1wp=DY''cqŭgaw Oa<;9pu-i,pWc}hpp2W|[MQWwv$|Cpt[bmM_Iz"[j/Op+L,Wy4m|CpϱKx;=#{`_q,\0:>|ACzlqm^n&hO`t31d2Ֆ?>qgba,O%Vq(Fl苗njpEr-R~O࿾SN+Kq*ODlW2a\\,D%1<ܭqq.\Zk؀E#q"q/~B+G	WD6S x%aV@nyq=1#;+\\^p$qY3i''GC?o(\0"+I}lq[8dws#bj:75qcO2vh1(O2g	_XZUqijje*ZHG[?=?jzԄFaFqz+kאFz37-R6>#n&q}bNOnYV8YR3SHC\rjqϑ\0d@Л0l,֦tDq]E3b釃fJ2֬7@qCP !3а_ d	ǸuuiGq YƱe$irhNFIl,oiqΗvCF0w/Qc}/[ q>H+eQu\nd~d]=߿iWtq$1W֑=J=<-\\#q=xuJ(ƴg}?"2dJ(r\ZW	ܿd,ֈL_@JJApb\\r<Ke2K{EÅOr,	RBf0z^*Ha*:r4(^0F1st\nr4rHawVm7c:ܐa4{+=[rKX?kz^C9X\ZeFY38_rVj-jn[Mw\n=pɲd4cr_!LPpf<vs$''orfi\r~ύbXm頫drl[MÇ''H$>Q_rqJ,>{9=""%^"Ck3@rbS䢈%VȟV[9n!ϏrY\0jo;q>w,uroZ`a%,@H"J7xrm"]=an$7-j""4)NMrrNP_; b0fL"9uS,r*%P2I7\ZKaq#rQ[OGO''ԘLˇr]`8b@#TF''w?ݒ6rٴ@c@{RCGd^>>E\Zr߂CZZ{L!(;sB\\g%-3ya;β	t	/s#a\\8Q0sl}߯]6s\Zr:<[Rd}:Ydy(ѩP"Ps''j{FCh''GMg0fs( 8(\Z>e6ARQ!3>φs+\rU\02#\Z~z݀hssNlD\Z5̂2GWRFՖsP34	5>۲#vGpsToz6{RQe3zpps#Xۖ+pFXT%??crSyNκ&I\\s_dYekP(HP6POsU$$Vgb"lxms8N\Z0-1¶M=1s2il)1yjuHuMt5(I:E[t\r{k?ikC\nLḃWyt*̽vdW;1!lH9''<	Cftߖr#qx>`|k[k(\Z۩F=<utlT^7?1	[]#T#t:sr9ca>S|0+/\\3j@tByiC8ͿL4DQ\0oztG=9\0aʮb>\ZOzc1}tIq|\ZGwP8^6eNcf	trX#''XlmRq{88F񀌋t=)+ϕ©XT*PjaEt\Z8|y(e[''w	_=mN<<AΩtGV&^`.^2IX&$G9, MBtAB٠B=)RhO"g;t2zvf#:M{%t>\Z/AG*6e.QitЕs)WjDrDi<6NFtḹ]޸HZMmmt{yҒ?Zlc`Ds\noqDu\r}[-BU`BErZnZ?*ufKM ]=_mA98\0u Nr8\r1''p{qbs/u#gTd.CYgЋUWa{u%Ա8,Hb\rG''8w0\\,u)rB.pc=t''s)<Iu-ѣAHZ64?ѧ:}u6,]g8MUd]87NXʢ}Mnu?|P4TVm+sqdm~)u@?Ԓ$p*%r(b=ϝAiuB"AӴC{h	P=uK"E)+؄Ea/ut\Zu=ۦRnJ+^Z''=U''u@jh0/ ''0OMuS$z>JxD:p`q6ֿNYuDΜ11{i\Z-jВu]$) w5h1#}8t\Zu;rjJ%0$UC:\ZY!u	x{	_Eۏd(^6uF*҃3L{ <pJu^1<W,\\VuݪR͖y#.D6F3NucuHU?/:꺨Aw\0x2ښp>Bv\0WbmA[8iERS0E`7d~v\0kETv3dxeʙ\0z?`v7c\0|q[jQ[&LƗPNlv9\ZR\r2@]3z#\nq\r3vxgggy)ΦҸs!@XQRc1Fv#\rm7boڙԘ6/`\\3`#Tv%_\0b$m&`(=m<b\Zo0pv(=YFcĻjt&[p٢v.ΡWԻlqHor''Jm7bv3)<>ry(L1yU\nvfav4Z}k j>X˚WR/%j5tv6\\yvT\\M	FQKGu0v?Hmrq\0L>=e\nSRv@nL!ro\nڷĺvLwn,䲴K\0\ZfjD᧞\nCG2pv!zߨA1 `[-vC	a''F;z(eJLvhй{h&ȶqc1cb%M!v|Pu<>n4pR.sI<v2ςZ7QXwFu}v{_5[tZ;a+̝X\nx\\&va-iQYhJt	Hi2&i~v=}톭:vt!)T&4wנ`g0O!+U\Z4jV9woHpÎ "M^Y"SՓw!ے?ERS^RLKAw.<n(GFEVB"wa kfIw=c^:^N[ X%%N,w=li\r;|Hͳ6&}U0}\nfw@c|h(HzX[_:x0)KwDigk\Z#VJ PN]	Y\\8dʜwM.#S{.휜DG8q(FwP:B!n$d2e|6ӹѮ:0wSt+\ZאַHHܷzHo''3{w]<	^JdOhYHמt.(@,wfƿtoXXG\nFĜcIs*ߤwGTĈч_|''K\r,#scwqX9\0V\\%tw~Bͣaը1ԝu?n \Zodwc4yO.~H{_ʗVГw>Sa	?̜sziþw\n~;H4ǜ/t_vi%]w^q92:_k_]z`=*1w߹xo\0(+%5BBSrl?!Gw Q~uQ41\nx:w/bݱ\n]\nANA\0vLGxxҴ@_;Wi>z595xvA7x#oC:[L6lrz|w3:B=x\ZE\\k!\n\\D6R~xwؐ^tFx{֦7`-Ȇx3z	lrgRMq;âh0:Ӷx3M1w:̪xM(y/2,x5r#ЇXt%JFCD\rΜ\0xKP%LaڡUx\nGUTxh@jAέΰhY*~it\nw\0%xQnggW.6Yz#IĲxtEc"^\0yGؗh(=DPYxDfLС67[\\F2ٿr +xے03WOd{63X+Qx$P&}`\\QyGpr*}9YxC\\A*1JXgQHhDgxŷ(G*&IAvф_R!?xȈ''eŎ4m#8uVhxo?!lN;8g_[jל3&΂q3ȦQxTn^Jn\rC@ԠG\\xR#V5*]	$,>TxTqHxl,B%\\O!S<yRxԴW%''7&\\az< AKo%|7Ky ݣx#\rjۤETCIfnZy-8<@<]Je<w^ۄCY0By8Vx^kjONl"3`y9t$JfƟ\n[dwyK6h+>AW[,1/y^&	\r&H3\\F[5\0/yc++S&a1gխ[yᗃĩnyd-fr\\>X1ʠ-QNyr:''?eOFZ诮\03y8e(@$k(\Zy㈔4tFKv9g>M@yǧ8=u<&(3e_`\0yUb''d04to/\Z+]!d:yW@]aX%TzF+1@,0CJO!zb֬۳ygFbeE=zLjR3Z\n\ZГ(nf\rz$p~=Pp''eyK!v^kz&}w4\ne-!)vzP*$	e(WI![(ܚ>< zUm{ڿY>p֥xw\nTmw\Z~Iza=(лy<e孍zee `~wG$us4oō8z$Egg9K93)U:SzR\n>ON	Ո]~uN,4bT~RzWTUDU$DRv@nS^9<=\\GzrOU]LWq$NAwNz"|5ܗ:lW8]PbNC~zB9O~+i	ѣ2Mz-6i	F<>LO<kԨ1\nr\\z_6`3~spFFD]`7FzkϤcQ=oJ)\0.e2 ,zHma~B;@l''eۼsDő;{3lp^3k;\nk{2w\rOHSuܟnӟܢ{*^YtHmMe,*y{5yȆdj2& =IU,qC<mU{:7c\\pY@b3V?b{@न$g+Eg[r3{EA\n	6Q`U{M3#_B?ng<vw-i{\n{i;|-#qYd_;QH\\B%{nH(>}Q(ab>\nFY+{saVmH	ٱ+r<ĸT;[{\rś911T_P,[D:w{n]\0ֈn\r<w˷X):{,t4S)hd;}K1{g/\\Eǰ\ZI|''ᄛDi!H{OW=!̏W\\\0vR&~Gʽ#{ЩN7!QZ\0E1ͦڤ!g{xP *+]L|p^=n|m{cD1"D]]=-c\\|]o(jF''*١ƗEF$K#|#vh`JOAx''^|(\\Q&j"n	\nuѠ|Ed\rq#9\nJt|FYc~''B _-dl0h|Qh[sob"Af/$||U6s\ZJZ\r~5\Z|$ݚ|Y\r:l_ƙ=ݤ.M\n׺*|b)MGA\03Y\0QyL=|m!5zdlگ4uOln{+P;\r|n9q蚶FXKCp13\\\rb|q7rߍ{,''̌\n_|ukpf1eO,5]vR0=I`|{F\Z)c	5!q8c\\kpK>|-ߑ:oӁli<a+%P|R''gAEێqqT!:O0_|\Z$"_wB&it\Z||@&o|X4Pu@Co9Rd|zp-vd.,[\Z|QbF|u_Nac:-;|pѨ7{͍+F;}U|ʃ[^Bcx͂Ő^@<=FD|ˆӰP<յ>DdA.G}}_|z,j=gȷ	TF!wd|N!xV$W8qIAC]1!	}^\Z%Eݷ2=c̃PF٫}n\\9xrk/tN\nX$c}CY҅8#j<Q\0Ƙ:/D}D	4?s.M*{TȇFd\r}c[/NHjnL\ZXm}eExI<gB\Z9skf(h}y#ũMssDj"}{q}ʞ4!ʐY6Y%dXSٻ\0G}-6''fnTY@y_{|n<	}m-+vi1s\nU8u})H@VbR""ͥ0׹ok}	Wb2cfHByuP}yMT>Wi]t~e24x`Qx<C4_~\n-5RTw4}3}w3&y7~CpV_<rZJGԹ?ο\\~-v6%i2@}f\0k=~5:ܙFLWs@놘N7~>,O0F2vF\r}ɞkTZ;Ӣ~C|<Zf0^bi.~xn^j:~DZST̵p-7Eev_QymK\\)p~G686*" f\Z=^\r~PjgkΖ	f:"vEy0sߤd~QoE3RoJ9>Xε"؇1~uǽ_#I\nm	yh""`~v~zS5ȢiyXpdH~x"&/V!ca6ft^~r dKHq#%YZꗉ~e>?I$VЩb@6G:u~^4**:rCs%uKhd~''>yTp''YğC~A!\01d/D"N~2hQi6M*^A#FD~EUaqRh}?B@:䰧~`嫌<B\n鲙%]X}\Zi~Gl*h$*V{M&UlI\Z\\z~;Y줛NPl&4%\0~)+: 1Ŭ؈"la@MSӽk~Մ:٫\rrq03aͽ!{-~XJ8+%uB\r=ɻ_''&xmfR2Ih+Nq$,!%>o5&qZq-SoL\r9;`\\tMQDj7iDfba9S%,#̔c~rrwCpM\0wdJ]@ܶeu_(ujpP5\\֌(Drsu<f8slpZ(Fc1''濉j$cFePnaަ@#\0$6i2nt_ov߉pjOYvqQ,|a6-=S֍Ipd%_#kCӠ! !ns`)^a-SXB)Jò@$-j|QNրIY\01sX	vaCHޯ9΀Q5cUFa=OŌܰT\\hX8GR\0z_B?<(Ќeou:@Go5 {`dQz]<{#G	;c\\73!}\020͌Bi\\5,k?L*_Ȅbu%dNv3 tp>?X?l:"LTҘ$xDs^h_!kC"1''_Ԁx9lPyfIu&p32ƀ/699Ԡ])''>f6*#6:cKx:1#٨k)Ytו䩋ż8]c>%9\rϤfzU<Mh&EN+рہH O>06}#<QnwkVYԇ/ @0-TK#i>l.Z0K]<l>&އCy\Z|W	Y|z>6}\\ y\\FeS#lt^5:~/b]{.\\+B BZ3#f4.xi:pYAdBK\r!U3J݁nm$]cm<r,#\0!8*J1܌CbyR^2v *PL<ŧSҙw8ث܇Si.=$#	b/:LV䁜{l_3t ny@8\ZfU[Y<Tiִ	J]8Nػ,Ŭbf`)A.?q_L1t4mTd6Wok,Ӯ?aGS5DhmɲĖ-o%3->ˊB7J?n)p)=jk"/%>;ےg%@tlsjjrƂTD.f0l<xCqZ`h"$vR9yۍo4h:	\n*>%[0Nip<,.ES觸fkIOȺusDrz-|%fƊ2gn2I {C[HrA\ZbiMfMpJ0K}p``!Ew@''pBۄOuTۖ܆lWGUaGb{\nikTvQ4E\r0E)l`&@򩚺`''a1k̖VS+\nWyM9>U:\nբ\06\rQ\\lz?9yNqJf0C/M;K\nAt/cߵ۱}\0G[&^;腪p/ĤDQ.Gȗ{<)MP|yE^8}ؚnt&Or0!5¯iF)BT1	48(d56GJ''C:R,;Z,\ZFB>,\\	Xwl4>o\Z[_6.$Kyo_3D&QB2\0T\\''_MEw^Tw[Xj4sG''=K[!inQa`E)<\\&e\nP\\*Fy?|IhFIXFHE\Z*9ݶף/BF	>&уG̣rVl>lA&N=J54A6#"b2SvJ@{U1؝ڸ>)T}4:4SmVYW>\0\0qM[Ol"o 舲3S\r(7X&VbRtN>\0㚿aYjqOL1v|b}|U_ Yo$bܤr924?ykFKO	t\nPk 2S-q;A-blv''8dou.ci>~fKJ` 3uxE梖^c|ٍ4|c8\\Þ9Y۳%L`N/~s܆4}?\\QC`Տ&m&=C}cS<%`	L$k㈼O!Fh[Śڟ&IEibܱl@!C''0:IWUsA@;J/8qڪgÃlDAבA=<h9)Alt©|yg8T:5,uڄFjX4\rW<0Y{V9\\.Ip?H[sBHxGqZ8/Z%Fw<+-;QngpՌplVN浻wIK`9q8VZg`<E\Z$%OXT&b.\n>Ltd>C(x[䔗	\024*#LR&Q,xv˘o	abg[\r\\IPG1hFY:w	bd23̉gB@]Byq+6ƀ=_7ky~mȝG|F:94uZ7>fثDiUgp٩v䪄{\0/9''x~Ѱf7Qˊo ,|$Aߌ͝`s݄W_w\rz]޷vXք#bxN턦qFLg~~4Uڟ+\r ?ξz2l=!ߤ$x}܅e(866gPEt	sYkqϫp_jf?8omc5֒\\PM%ժ	T0J\0(=D*ۘӵ>~^y2ctH&DO\rZϊT(g.كt}	zCS0j)wdV圥1J{hV ''Jb-i.9EA~+|%\0@mVw%%:3CQ#+g	e}o1o\0&aSlYC\n:_''JLMvx!!90M֗y-t3oXDwX xTA]WeZ\0p7gKzXFDk5pB#:Np[Fd*n7d뷏1\Zh6x:i6Lf `Oz&HjFj6\rnX\Z8N//&W~\\Aj!^Eh{RPhO	gp3X|)F}h9P*K_	&Z2Ji;sb~~:K 5(Їϻ\n-"}x$f]. bG7B)̯Z㈅aki Ij5L.\0<3U9->:v/ZO65J78#܈*\\f}ժm۽CunQjҾCJճѸNJA1\0sP+?>~y\ZYmp5\\sI[(.E5Mh%IL*4y@`ŉ_r<JFUBUnӆdf3]bv<%pIH:W=ΆU)\Z!:y4DY\06)|)0x;Q[5SXc&Dř߿RY/sn.`[X\0G''ѝ⁀Qk\0%ɝȷdTK:oVLE2=ոN69\np=x/NӐFs/ȗ\ZCeܻiL$@V_%ņDX+C]D$W+fyi><\\4]\nc\r6K-}Br(\rnb|8Қb^+򍭑MrV5-\r\rJ<$jAb׹W"0AE=cݶG/twv7K㛴oGǧvtaAXIlEKѦ?Z0JTUX	x6R\naX֫5F''ԇdJie&k	F{Zp=U^m4@x5g@Ost7zQw\0,7x/@69	ЊE*#/p?iQkgƱy {#\\o%E9Pˎs]h͂R;bE:\07&[/=scҴLHDlCbǫooMI]2|P^<qD+_d+%nG#Hд%ܘr܇@BU&l zw.NJ<\nӔw2{SU%	N3yu;VDcmWH''KgR\n֜#](Q''nyzMa|Z83P#W(P)\n՜7|#|ig>=th@~1J#x9QbvL\n''brL\r8֒\\8cI]uZͨ[''i#3]bZ\nx~(0;Zų481O ik(r.PƌؤxnGAhYI壈0v6-Wk)(yjRv5ӓUē*\Z"Lv::	ȔjF@V:2Gۈ~O_iS\nJI>)D3j\nVS><ɧX["v-V!v[8eE:Bǉ8!>EaCteQs,MzX{\\[(HfCPAvm\ZNO\rL£ɷߎF\r;Oy5FY^4}!?\n\0<8h,O\Z_SAማ~nDmnC!ֺ4K)݅3_ʈ_1[F*J@-$ވT$TDMR녹~F-5陂{ت\0Wx&_	3g_`Bwi[''Yd4 w񪰋;/u)٢X\r/_o[B\nKKxm|T*H9K@kdfdQ0?W*歘fa9{~lyEќዸk[C)\0ُڇ]S΅HDWIF~<X1g9]=-Ҍ>š08(\r4hHŔHblXT\n\0y"aRTfB-.Rc/nM,=g$(}BݮD9i@]dE^:!kW{iVB}0.Wtm\\CAm7tbv[5S{GRi6Lͤ~[ٴ;R6y0v )dR/\nfJhvi5rr\\z"6q%	!wS5b#fJWneoRެAW_fE֌/''䕙tvl\\R_\\e+! ho%9ӭՅǱ~.K$a&tLT+l*҉ك	KWe2P[, G7o\\;C(۔H\\ݘ9f/V|i3<Pin\ZEO|\nHn0/<C~\n):!VoCu	17,su͉v,KyJceFG2u]"\\#3\nVdH-SL86ݶ;6	yO=PoУ?"^cίk܎oT+%$[t? LA$G?Cq꜆GGTc<S"UBID\nm?5f7$>QOPL&\0Q{o:8K@H3T𥋤"M,O=:G>ꊲރuheO08xٽ\0y`]Ytm`!l{_,DL+2i4ǄʊŅ.z;& qû9Ԁjփ7\nTtiCbOK̊㯦0NVɀkbX9Q\\\\%WӸsK{:T5%6]Dum,zoFSIa)~aF=2Q`m{Ҹ\nք=R#Q\0K\n)}$$N)ad*''I<})ػP*lwKB}ޜs2C`h`W>CMboGMKp+m+Xb!"8zH0i V(+kaP)2\0Ւ\0U(rbwǋ9k"m{R7a%,qJM0w)^RJGL1\Z8oY=1rZ9@-BxiUM?q!0_Π+"g%甖O0[!<I9"NEhܕAOk>f59%,<9;]9˲i0Ic;Ɗ@pХP\r{I\0(<Cy]1ԣ˿DGrc\nˋ/Dz@{ӄ0/[Lc\n?8-=1ы	CJ-j"XUZuޟȱpC3Q3#9\\\n#Ihq24>M{90 )\rT܅rX5D1z{cQ4&ڥ[Nm4Čx.\\\ZϋW-{WFvv4[i?irzGa׌pCR[Ȥdʱx\n\0k9/\nىpR?61.xl">܁%|oʮo3dl݈s9w./ xF\n''#N(u%p?9:PkZI%-U?M$X\r!h6Kw?o=7o|<ԛRSKVQLnwrs7gxP0_x_z֓ɥzd^ЧGDC.%{?_z~>SQrOOkfnVlf쌉8!''X;	`>( Mݕ-ɩH\09k]4:B26eTs5\\Twa%AkCep#KKE\rcgyZ@^IͮsL:}|9ƶKXk,k x~6uz`؊ii7Rq3@nM5݁7-7#KT7n.=$qY\0"M(\nOraHQ61%ٺxO[Aa\Z"`҃=ȱRvHmf`lsW:u#`OÓz,n_FS}!*rUjk$4mxYIXv*b]Xȓɿ0foΰB&΍J_\rk@7W	$w(MPXpC}ݪV.WPrE!oϦI]1PCN9\\f1	2vvm^Lyf(_<>MЍfvq\r7jZ2)i8&<0~퀍t&ubvZѓa_I\nBcybiXfK׻Z HWrRkLCʝڛ/x\0s-Qہ#\0n{]\rWh0@=rIKԮ~gğ0ȣ)!ѱK&@<\n%	d>?Ggt!3]#޳jN7|&?ǰղb>Y>r]bχ3ıg"WAҧ_gsUM-Gm"cm#{t##!6''D!\\֡q<pZq3gl󪙛#iUP(sPg/Dg}#&H3&XwҼY:zq{I<sUxtWgAO/mưBrb,}B8mUMܵ\rcL71O[''Gd7z\r|q-[8k* .\n,o7?ou4<XQ\nx!sTP¾T1!`BIrQq"ZF~ަ-dlW]!rtT$MKP\0⶞lO''d]<Hݧr@Xa"cƎ|W00R嬶8Nh.s)7\0;X\\tI7Sc4,O/`һViMJ\n12\0x1X؎\rT=2&{$Ʒ`z#?@\\\0u5tiktj3\rhvacJ\rFMGzp	(_v²&^,`lѻƒ\rzZab">Mrٍ@kry~ĺC9lxu@Hy>7HfF4<\ZŎ]sLoxEl!\0gUg\nG"G-O''B ^c~\\fR;#]1@Vkh@*S1?||w~`Ua=\n3-:oRF*&\rJsJ\rd^hYefmVr%)ӂx	c`9xCRo֪҃H~3\ryD#o\rpj@''%(\r"`4-XolKk$ս\nڦ*ϒ\0+ؔ%V黉yw\Z110+ޠ]  \\UC_s磡4]jӤ`w''BޢPjiۏs\Zp.(Y*釨u%yyeSh'':x\\F`fsBXƄaЏ2P^W֡Cۙ#5ѯ#MlW\0#_EٜL]ZB9\rxiCM}b2jsEkw$؏h|aXxNGZn7RstŰ06<WU.s:I>T-6fOlb]9P𽅌@1^xzoU5e2y)q n +⯐}@L(͙VZg|_}U)87^*S$ @K^/T\Z2"\n@+\nV)-d C⭛ i{PA͆kdM\nՌ4c5@iY&5^^H+v5ƿ^54Ales^ؐפRcgӀQۋc@y#2*T%ǟ*A@N[턻A{)pC1:5$S{hzaFª]-C\0&ʿοLS=p޺ȑЮ*]a/>^o</9?s巡d]^#Ģ#q0<DܛGn{1)\n-QG\Z?Z}/3''l:9w):I)̒]O9!+Y6L$-fq&趇khC{dvc^̟9eQ_Wo{_T7QʂwL.谇M=B֑\r\0AtȑN\r>--bmYUMeI_i VHY(oߠ55@	^n4k=\r	_K"X_M8U.pFw:E`MBLiE ;ԊRyћjp]c?\nTMOmKw`J4/ww-6̒ qnJ0"dJݍR\Z5,jd''YBcH7*(ߒ,$ީk3`tm5^7}MR`-xɒcr-A$:TV8&E75gowVŻBћVj|kp&a*9oŌ\\Crb!Ԓ$U$g@It6<I!*a.%e5+p3d^bLLT]@G3:Omo]?G[!Y֒Sߏ1֓}dQ*t/^Röb=9@dr 2H4ъJMBѦ}\r202h(G:?{r"\0''5wݳt3c4Y\0VI:>	ش<8ޗey\0VO\\(\ZX"FqU{iM$̵<4lؤ80/\n}J`3cl6HW9t\nmAo\\}a~>)c|&.\\Eȯ\rҔD8<\\S{]:wXosD	9z^q-76,svńTe}5;u+,3.-Ï9#F}EjvA\0&5xP,z\r&8gE̓\\c>k,-\rhiIZ+^ FFV>FY\\38fGOp>Kes!2BS\ZBeLƓ3#ھbj52=<P3vYfxMw|W$<&h70k7N2wFuO4-@ctɷ3(kG寲\n΃CD#6u\ZքEڣ@K1y"/S5 M38i)BC[ܚ~ZWKi7/ZHz&0,?R-ej2#XH\nd5\0·@,z\n&@]D6NI""{4:g\rISlУ/m~Ynr87EC\nj1sD)U@3k{];ĉaՌQd8k55ai*UWs⇸s{qKcBψ*\0&Ƽ\0?woݑڼγ tTcT꣇Xv|^HH^zS&^F޿hY;knݔ#^#\\L@c.Y?,Zi>~V@2\n|TSOcwDٛOeij3O)Zݟi_L5>}R%ZA>%|ɦ/Q5b"uTJ	e-BpWCcixlwubպl5zZ8q}\r2Ux|m`,oii`5A{$7F--s➛G2,a?d@];2؎|}5\Z(m>Iu3mK=V\\ԇ|ޕ6Mj	m9$*xgU(x9;=JMZ}`෬e~vJG`)Nԉ`$C"§`ݸ¹\r? ytbg=!ӫg?2zlY	iHtq)$TSuTJ#+/ܑ<=aĽ(}xpQ69`"-tP(cn/>)b@HO?5>PQ	F缃`''%Yo۰&dtQ;<v}''P[Y%/?_@e&''Gpp2[zDwNjÕ1+\rnf&)	*~3ЕX=Чl1Y^2xO^;?Lu5Rev&-kUobE7ܼzL{{MTG.{})cI+@>H#qL=a.cU\ZMwJ× ''b\n}\ZQ!x\r5DQUK܅ޖU)1s5BPaǲwР|Tpi\ZqM\0UUHH/P\n֖:(O.Xi+&	ME	zFgo1:ѳ\Z>A\rq7uf/Z\rGs<h4vuuH_^+YH}oXoWxۺ!Mz0V_.=*ym\0#\n9ky,OQV8^\0~%g,ۖC{!YRa"	`F?MUǭ[*a:&3ܸ<uLJP#=9+Fs</X-ɯ4W\\\nR{-W^ qIB:U{G@B=''&Ȗq4ٱxr*ӦwRZ	ZJ\r[jjՂrVh`FrES{bWP*P=Nϻ;\Zi82_ QaA[ز=	2m0s`R"V*FYE*HZLT\\@>@ATm~FmӠNll>hIʶWgvZFϜ\Zb7B¤I2Y!ln}1dZחe˜Z`@Z=l̓d}^OpcuȺtV5Ȥm9\Z8q}u}o8>&V&NA,\rjYl$d3\Z&2	%\r%~W8hs+dƃ*&9ɯߗ+n}`+j	QCPfԥEZN%=	$ɗ["!vO\r#-SZ8(ɃAҷh/v.O2W\n9f/3MM;#GڪWO&tSO\ZƘd*J?^wzTGЧ,ė\n\\yq#16&Z\n8ӊUuBੋ9ELa=T/8,i?5ka|ꏑGT,=޴]!zDW+jJT\rsŋDv;UZ؀Z{(r]\n=+WU}O/inj4u9ϯ\\-/O5dXS^`M.NSIw*/\riwl%7Rc(Z=mۗA''j;LB"^/:qQoBf lG2Ĝh\r=ɬ˥cHw{TRz>=MƘw`wnN3=͟hKrri}I^L\\95NY;?zaE=J8[C=Sѡk{[kF`Rl>)퓆o807MRn}\rľE~Ő\r"''쳓04tbtwK\\iUVD}3y(s$T琱a	Aa|;Trɯ(&o{!2oʪD^D1cg0e''WN.2 \n9)Kb}SpMcPAYXCoMt}qqXAiYQMޘ"#EJp~&w _ژl7Sͻ%p[!	AR\\6=uqe4_oqtp^Ba@^#!"~vR3kDi;G**RYBhH%Eq Ʃcn\0i,mO#?Vb,C-ܢcž\Zhm]Bc~=XUm;nVP+xSp\ZYv1]@ôy$]6s&sQ*%P+݁\04[_ݙy=g֘eQb\\o~܇] OLHPx	9lKS#n6@#Gbb5_*BpX㙛j%Tv^\r^K^pER	(Xq><\0Π;1/QrVw\rAU(\rbe&U6[F#`l,[u\0T9<	c&Aw\ZENYqi6-%1L˭ݐ;\Z2uY@\nWܑк%?;`,CՋBxVu(|/9Jې@hy(K4\ZU+hA"?_6GAm!3h"Vj`''PtQ>w$鿚])}	8\\WУ(٫P]B쩚+*G6jq`8&R1`\r\Z{5yG\\0Mx[-<P6YE[3oHSVИE]:S*˚F|A9x~drIRŻ(\r@B畆WɚjV''S+^d*"ydJ/A86Sq90HDQEAOKErBʳgUa1/qX夞d9SyrCT\0ѫ.ʹYbjNZM<hsսI\\5''НLIxX`EѪB+Ap:G:,5%šxFxµ|Iޚ՛K{P|L/"El+ܢGwˏְM@`Sn+*7[xlO|r/՚aEVbUgv<Rv,vwMϛw&׳?/K$^ce?^ZdO#%Xxʆƛ-F8yd]3f^6Cwٛ;eRvZ[2ЭA>6BVW?\\vҧxPEp6!IPg~x! }+`ay$;BY)ɐ@+kFIG>ۇS+4q|-Ӭ3+@wF_+x˷Ӏ+''C`!V-ODDxCa_-֛.&T ig+ꏈ&oBh\066+u0!:MuYSꥦ%Cp,"GENVȻ:^w\nW`E5xU#ӛNNL/4p`41PDvnZUC7Upx,wÛ̀vNxklfB2QWkUڛoOw~9K4oY[Ke\\RG"**RkhW`٭R|5nu-\\:ԜY''KFN#Rgj; \r3Ki{sK\Z1ZS%4Vb*P[d8geͽC\Z\ZSj0134])ζK0қz''uzu`̶$˜"XMN͆&V''#ǙO0-kq2wSc?dUH\nQ73hʫm<GM]3p+LKNǜHRf$|k|s\r̣64\rIbmH?C\nDԈt9! DW~<~J(u☵B&OtCӕ-X*p@tȜz8օ܈܈{sf|߶}~(=5ǜq!唪Y~<I653t7n?7SJdsLCTNRщ@;COuJXU镜Q٩\n i/$:tniKSf]cX\nn\ZFw%e>Gfc#EuOTppJVA#\\1{A ûͥJOmO:ϙlW5T2DB$^Vygə~|\rUtJ`g04	n՞FLZ\ZqQIW#(4\Zb=9-C/s#]:fR-_\rX''rX4<V;G''Cd_$|W}{S5\n!pjmZs6ˮCۊ%G8q)ϥvǯj7Z"Se($KVCm[;W8<{b''ŏq`\n3o޳B@8Jcýn&Vɹ/[)ۻz[gE>b`*eNݓ\r	^3h.|D?\Zߙ2ա\0AeWIhHj	gQ.X]zѩ*gw/^xGq1%S9?R#B~::Xg5[mQӨCM.C\0W{4\\vkΝTt U)b©iàvգJ?ǈa]^ޓ	RV%e.ӻwA:U''2U7zXd˝ن#\Z>O;jGgR0GlY("y4h/E삡p4337-sգ+f^煙z:򅁖F͑Ýڢb?@˨]rH!|(a׫vC,T1>K)||yDp䏂Bנ#A.{Ari=M-?`$\\{"?~cj:èƞǇ\0(8GfWipJpMbVgC/V!W3Թi9*mVwkZP[:UjB5E $\r(ԇ~YG=C\nw9G)\\M,Sn=m;5(W$QFERHў7$htT8c.ݣn[\rhot>)"&%q٣u4KM$oݭ{A\rQIQ\Z(B}O^Q4uTv1S)i`@dZPP\Z<ކm_{t)\\Nzo''\n]g\ZuF(:\rSlVl&r\\;;PfjQM.ATCgZxtNɀܻHې%kH\\ZϼOaJaE7dh|qB\\)6ѾpDW{ۓ۾!$ʤ5g[9;-fNIYYڲe\r~<k"`	[\Z)^Ktz `t^u]58ipvk\Zܟ%T1#W$)z/WL-ZE{Kѭv__"l&ԟ3I49qZYFU	-&"(6:/V\\FK&f	:79\Z]'':rQFGߵ#ȋ՘˞2\Z"s&Ys2q*V8,xҸ$ݠIBS; ɕ8Q񖓑Un)"RCLGvwWB埁ax?_)!9P|qɈgZ*ۿ71lL''\\udjFוVQC3x)!TU33Ws/wqa_KBm$\\U{yy_m{	.AYDZ<Xm\nch}!aXɱ96#ݟ{m]RWrޙV Baן秦FzJO#%ĞI,SMV[u\ruBVo#Iv4d?QlHJ6\\2me8(\\0\Z%he[>K5\Z*V\\z%xĦY1xYf[FX6cǠ*uk;)gRIb~\Z4V +ucr>\0_s;ϸBs1M+J5C$r<0Ġɋ[!͇黟\\d5crFM=]^ܩ	_n=Ý&o\\LZDrgoEIHPg^]n0/Ǭs?FώIs\n4^TXr&Ԓl(EC4)\Ze;1tjY/%Uy\n	kørK(12e^Zr#jWy5-e	G_m r?gWՠCWoFR4b$|L1	Y l!:5Wb4#>)cSu ڠr2ѥ@F?&s~ՠ($̻.LxkWNg<^L;ˋ.#LI.]+Jp(9ٰXΌ\n\0*p̕^ XE1oO-Ӏi{=\Z]IӸ?x_M<3rߠ1nv\0jHk7q-;C9R_i$Ԋ6tqm4_rngD~Qe2DU_3R_Ț>MZ&Չ$u*&?e`=89=\0ܥE݉X8Ym	㞉QlA\n!gCn|I#*0''pT,RrءA5s\rp>*9wdg_+o90֊soʊ/]O]8\0qg_\Z^E6{:,'';ZB cNء"!gxuE\r̉8i&F594!GgɃ{G~M^*"o+ǡ?w[℟迢Z q!\\''-Qx\0LD-Z#SЦ[%ɚlz*mҢI=5ٜ~Ǘb5\nPW1 \\>͞uLv}:wP([fޡ0[[\nudv8fRDlաe$*}֢Zh\\wOWwSi7G;xV"\0ݤƫH2`|Zøs-p0p@[LfbXҞLW1&@rJڇl	l9/Ȭx`:eu)n''\Zc\\I_+|ؒ\n&=EE\\|:DNl,l#CD%K]QРL!jRkV=~R[C;>fMBR+mvn	t;=%JyR%0\nfm/yЪp!Z{Eٖ.ZqoB\rH7#wI$Klh5b4:ѕWnw3Tg-ZBF(O)\rfz?''5ѧyOD!>|.r=\r0CUR"$dé6)IS\nE]mY5c\rwcD4AqQixWD2oF0+vBJX\0TPO]\Z8UmVq^o#ZBaCuwIT-$e*1g|vv	věW\0(@j^xh)ٿ vSh_=XDpi-wFa\ZPN;ˮhJ4mBB;3ӯhP;)ړVz\0Dr?{.<n;V.RyRTx\\h~D@n\\ǹivz{\Z]_q|@TbsBzV&Τk<tCz n`j\rMN"Ag梑x%&yp5L&][RբYBѵ\0\\4:\rao|(;ҢL]검NjuzahpF3HO)->!"''$t-}M61p9ǡkTb:X%nܢxJ;vww|U-%=F@XЅ2yA4\n$%f}ܬvqHoD{;(V;hKhpM>gq=tGOwmjd)ߣ5-=؃N\0\0OGWw>Sۣ\0$Q%_{1ގ7څ\r,?zDx&fv$HKAhɍr\0aF1mԍ8P?Alm :2MmX:~ڣ8,˴tT^ע+\0^U`<,MWt\\+TÄ"^J%VCy3BVtIppFy/sܮm2v,ˤw.|0E6"i؉<~wV	Ț8OѝJ:77((]28qsMu[ץVWЭ4pp7ԣ;\ZܕAwWIIw	|d2Lu=#JR9:x\ZzS/]3Gmw\Zr.\r|.B#@RY5eW0ɀJ9iE<z?eL<M\\}v6\Z8zRv`\\.).^pĔ"Zڏ8\r??d\n&&ܒ]GȞ&M79hW̫;UҤ/E{~2	Evh:mwWdӨ$P%HD>ٿff?_2Y\0d#vTUЦ[TmGnamqY\nTorqKK`~dcmc\Z''쌞CDocr <#P5rhf_Dm֔mN+KlNj8_8iz,w˰eNw<PBZCkSIQ!\n}i{VOu-Qd;++O;vD)(P9h],vɮvJM(0(&#쟴>_Q7%l|[l|ߘAIy~k''$ё^Y"awE.뤷QM;gjȑsuJmBXL\r K''9od?pGZ{e&"S\nTkN&(uu0!ϩ7$V9դw|N\ZvFd6f~ndZ$i*''lA\\`toG"*+cW d+ΊM?\ZLrZ%\0"lӥ9#ӊGر@,uşpɭ,N''92S5ZuBq.PJvUپy \0X''ClԂt뛂y[DI}mgNQ	/	y5θci	KN5ڈGeQB\Zk`ämu9uH| ܖaQLUxV:a&i!:<^$U4tʭj<z]0\Z~{vhƇwRjIyphgss&:C㿩\rm9>zo|.󮥍Hic!I).eh\rǩP''RIR\0)$utl];+\ZjAVnk;Ȅ7%`vUntpqR|Kd7ĥȸ[G&R92&DDcQEQ{kZxS?t"Q?(nr3}|\nͯްA(>j2Oƞ}VOצ.ŃZzLƧ!}\rrL,^s|٦wD{so	kjLAR	V\ZzL0Qwb׀хfR=k&Kps֍y\Z@?7Gc#EU)ϵ9D[.NVKuZ''ނ?3qK:O\\R]l,r\ZybD4m%̆''?2[Q耐8/sG7mw){\\I ''Q}mˮ$R4U:k$Gw 1@uiL0Kĸ:@E^؛36v!l{PVwS!nLل.\r>֛n]9^	aZ_phRf}	PޯZ{֢JZbRu+$Jp)#蘥>XV%z_X@KOuKMFq:RSO uѝ|=o%-t,u. \rHxeUUHK^Ǆ_%ך*''Blm&^/ر-Mp#<_˥d^5ĺ̌&ֳ4@78pěn+܂ˬ\ns5*D^k2mi^+Qf''N,ntR&*\rSPK?x7.՞*LuK֍v2Zg,z[^ׅYgv⭤YZV%Is!бj8>\0ئnGUvi3DCA6D`Ls<ŢtE>Ps\n#HNo&WZMl2g@Yh\\]pw1F)Q"@ȳ\r5e)qouvR#[]''\rqlix%L\0蛱V"]0db)fʝipB&<(U@:\Z@m\\9@qOy4`5ɥ)d)]\0J|Ms`bF+u\0#\r LmNߌuuc^=¡DU{.į.տ]d0ӧu^uRWMŵt*\nG\ZzEvGL7t|%''4%fp#eh-h8q9\Zx	VG%%h/%R/ήqeGF^6`vBI	|2PS?hFMaȂUE~zާ6L4cv`N-wuT#rXz%-W\r''Rj]hjM8ܨ6/R_	''Hu)WC}D&7,HnY[H:B":sȆkӠbST8W"''x37uD̎~B^$r@ا)m-ENMA͛	,_~Y?ck_\0T0ykM38W\\Q7F\\14g3''%L| {W%_g	@M''F|S=Ւ\\[8(YYv*4A~[뎙v?lNO\Zazߏ[_K}P0;rɑB@?@[P^3D5Vw\0\r''TP΢`eέuK>fL/\r`,GhB	ЋZfgZ@l4!\rZ<Pl_Ψ/''F9r\Z!p''6D;%^-xh%O4y:X0^YuGyDQb(gEpֆriݙhF=yZQO/L%@=-e-I+Rz<'' іrvqSKU7Wߤ_i9qOc@sA^Nx[h;682LQo	A4fgSh%=ZN=_Qu~ҿ$3GU4&" KFjT(5o[wOP\\>0.-~ciHZc$1l]Ҩ3	{ɟa6]0\n*()\nǞ\0zvVMAJUla1 ƷŨrX>5SƤH[{Pg٨gި\r5''MQn8z>ve8:c;%t}5;F[?EXnG~Zݸ\\B[)z츍mO~B|A&݆BJ8?Mzexn޻X),#Ө=D=u~Ju`Y[#*ΓMz*!aZ	b&ڏPƱ[Ȩ8{ߤ6&z6=\Z)L |F KGO]5^AG"$A[?4L''iWFTЎؙr775F|DFIJ53m,YlwNƋFe\\\\y2#niF3Nrb03jg\\mPPjx੄5P$j"`"vR\nl_9ȧn\\\ZrR\\갪[Oo\\.a84r5$	C\n\ntYwrc''Sy:G`}.,]|օпеI۩b̚w[$QӬh,aZg$,:3;Q0Ճ  \ZcNCCnø\Z$#k\\=ZGv܌o\raH%oWkh0io|ԧ3 ,nĤ&0|zi@&R|A#I%d{F\0+"6ƹȪJIZ;w%!W9ѱS	}9nN->tB/ԣ(q[[Eu\r:&i|:50= SUu5^_w|)W6c*&Ī]Z\r4t\ZwMiƐG>B\\gѪv`(1in 5U{Io4BO~ S>ڽ;g.[/N<Bȫ[y}BxwIZЧ&z;T|}_S]7m輖Lڪ*gH-#=a$--9''cڪB@\\HN8PߣD.uy~B5v7[k$lȅ<ت?I&kEYB=b*ҿ3Ft՚ Q憐DP؂_?y`5m{T<gF+j''pQq''De6?{W.Ƈcj"}Fpz.T&lGMki_\ZQ\n](_,pgi1}.͇3wz$W<leP[?草p>H#j#E^C5őܔ)==mfht$#mvtq%wc\r[Gvi/(7^V५)''z1*~6UE4[kP)ZϪ٩EhImJ+Ru_9iٹ1wӮ\\^`Y~FE^rn2ͪU?嗸W\\VeL,A/" 4zX1][MT@JŁm4N2a0Nm).:Ҫ}]%vc݈(YUe%!TFj6LuiWAlb5:]Z~f,鷿ܻ\nd`4.{mϖS9\n]bG+\n(x7""5nWIiaz_ݮo^2S''VAFXj#[ͫ3H@!+siA$uN9T+ƺD=#wjxyӋhOB.h2;bIqS]B^	Qk4	SdKO4k(@F%<;fWV\0sl^}!/e*"O-4_piL\0Q["Kr&&7Zd\r''#Wl);*=$99Ocor]Ȭ-b`(d\n#D!ά:usWO(PX2t <JHvi	b4l~eFmj=gy0&/j#xR@oNC}B\\dWUeviVeazUܞ|-T[7|[,˲bVt({^?լp:je ݸꐬCP%Z|Atuia20Ĭɴ.Dvzӟm/@yGzU;Ϭ]Fsf*M''{Hsl\nmLFӮ浱ۂ|	Z5ڏ''bn?٪O-R6W=q;76o撴\rV>=5t[ߓ@؂ID^T@@Vp@TU۝rO\0su1h,OTU̬$&^9]WgG">Joe''7Xw(ucJ[1\r!*H#*庮\r]hBf!N1Z[Qj"0Z7-WN5$t=OꍆppK,>EҟJB\n\Z/yF&}=\\HV@r"B ̀zϗoֿŢ&ȣ%;GaE2>1}\0:aX<7G4ye)''p@M}:_\\)ִKeQ]~eڀqTq|+a\r牭lƈjmo''	\0gq|V+)OTo,zh5c5t\Z`sz"HPl缳?x4P,E宭}ab`Zn/^5)?TDBu=781z`~R'')F]\r^n@h5⭱՘A-z򼂣.kѻ/4{JYE܍xƵ(٫EƵ5d=?Nrs.PЁäO2:~,)ZUsk\\u5>$=81+GÁd92д$1JՖ31G3pRm班ߩ"s|[vӑ{o`YU&ϹqL̕*(T2)	H	5l"\rt廻ķc?ZSi!M[<Ũ7iU''z:	 6/z@6T&\0Cp˄JZO|$D[KIAS l\ZߓӮN͋-m4|0\0;W4bQ(ɞ@tal2XcI\\ Ib''h5_\ZQɒi눙OsJ:h[ڮ	ۮ_/SttRʔWCUx~:rQ⨮wEpVѼsc`Pzl\ZCD#aN3''XZEؑ]}܃wz,<?P&䮋b"AyMGws	YN0#ssj6tvDzELZdM몶W9ITLcr\\h	=YkHTxDe:#47Mj9|\0i&ĨLu!Jo0mϿiyۂl|4hNO~%\n}\ZHI¥\ZTWF>Ų_Irx&/_/!rz}T, izO\0¾$et%Tn5?*BRgdm?*\r4&#4NeTsM!r٣0aT\0ڲ@ޮ.m)Nu40d0nh"$ֶf yF1%eزURKwaWwYKL\n	-*^e"e(_,gKy_]R''˷dO''xvW"jC+o%~Y8C˚ӱ;LH%roq+NKqO\rP''GrHqÕS!nMi:A)PU~1DC'' [y-NIzc`#0ѿ߯;<	`>7Ts|46fB!{C*i΂\Z"c9qLԬ *7pO6S`njVFmT`b3&.jݤ(qSjp!puzI0J\0&\\Ar־vW^ܨ/,Gpߜ@dß-ȧқxFkbszXh%MncCE+c:\0e\r~d3v_hi07ǧ?{e&ک6-֢\0qxw&a''vVҧ#cwr4w%}P,HR(T6a"@Jm l/hSٰ8hs]\ZU*FRg:(B\\L|ԋ\Z/5Lr`[RBؙW*_5N^;&:\nW1*UyKeŰS!.!5C^ی	İUq#\0HD`>v+O鰘7}\\:3ҹ\\dAye8h@ܶٺj}jgՐ{+Xg2<f7sCU)Ot߶/m3R?wZL 򣷢5cZSNMt*)5T$`(hGS~{h/A.^''呰%J(V/+M餱\0.y36x> [/.tT]wpX%]~|4uoAf\\ĐQ(Ë#\n=<e^ҷ''#S=wW|K:\0kG%oC؂l''N\np_Ď+$i7=I5iB4<ұ,FgMRhjYı0TXA#6{K>~qI=!<SW #G$28&]ӆ:&=!\\zRhp}@,rQ!UfY5uϱ\nEfaqZ:ұbLn-#["61zvi~3gF\Z4\Z/җ|CAb9g=><P0\r˵c+\r*+H\n$^ѱ&>HLi#a"Of,8,M4a!_~њCO״&8Y:_؉''qP#ŷ[`~;HkMXML`b:$d\rs>L>\n&H˼>#ꌆ79\\+Ϳ<wC}"	\nT)Q\\u:b&pű}BH.G;d\\ZCψ\Zo/bo#Wױ.]H>Z*0ooQwf<ɯ]qmf~pż=LJhWgy>!}Y,:vαy!t{e%YV7CbL댪O{9\n.5Y6}oџi-(~	Wρp`$<\\5wJkSf36ǧǛ"9MaU_hI>,]CͲ1i:S9\\,$ْ<\ruv26FgK04yYc!=6|*H8CulUyu##ed	A3Q5Rp1''rSlY(7wAO)FP]6~"?BwMҳ(N`qدU}ð2*i@_v8y1BǷqk\n*;z8jcq#c-aPF& \\(1(R^\rm)O7x{@*;=\r\Z$ACSwXZ{}ajD}b9-%"!N_)\\*1ð1+RݪoITQ{h5TdlP75o3rX\Z&?V\n)K-M$>HZF-$v|r\nwĄY&A͌k	/mdӲjsEF<3g{''mv~DEfMM[S>	s\n /U/By?\0Ns"*''7p$ixȭvW<I>@n*Jq{ͫB`GJy$:xty*Y߰%d>	iHb$&n6p\Zf$K>\\E.z۸FgS:򐚂$h1	E^H\Z&E5CCq%.ABʣVڗC;7"AbIYI\0:)ѷǥ`wcw\nNI+a\Zs Lzf#4C\rVvby:83o\Z"ڹϟ?ɐjA>V\r֋ouг\\.$kڽehnn!!޳}iK4KTTb=2UኰOB`˳+T9]-!Ivs[h?Ƴ29{qKξД!I\0(I`\0:7c>хObN<%"`ةxי;gdB]E\rr8ϳ+N+RfUPt	9xl2Ū[jƗIh*@I=hQۦх0rç\rbRvO~nw}߯gK3ՏtK~ˉW<[ܣfaճEn(|TqyWX{{~e$DvEZ6f+()~Xx}rPxkz+* ٮ!"aDr9aC53{A{*эb2Kwwqҿo&GD͢a\\Lմ+^	pBJx7?Q[=匂ߐե^^3PꬒsI!>@Y{<Na+⃞78c*QtS,8ν\0T''LOOxZ_E1T1VmHY7tR~k{YD+)Y;]^e-+An5&_q4+SHx{?fm3`ateBK82̽VnF{i(]fӴ`TuCdJm˴yH%\niU[C-֋x\0j.#,t\0W&;yc<qЌ25ݸ;NkkbHk[b0Qy7ǊE3Sjz$\ZM]68DzkTykm|-@]y%U?vwXl^{qʴD68N?%aPŧ)]NC1CLW\\M!DJy7F(<\noM,Z`1OYﲆAQ2:*t\nhO|;z('';wh{#6qY}6GWȏ!~Zãσ~SLKjJ|4<&Cn\roۼ0+ˍ>|PJP*ml@6Tѕ"AlEaњ4GtX p|Ρ!''!4_H!fceJP$B|&21Gwߵ~Hg9L԰M=w:UKץDIH&dtM6&۵Npsa{繌4mB[\0Q''{A(dyqE~߃!>''cstʌ/]DA]	Ǻdt䵳Z*J^;6Գ\Z~IDծ$xPiAU-]=\rj1[Wf%>qp<Պ\n)^^c%Wm$:''bL g}dA	,rwKw/>&zkʜjMU:~oh}5[<ct׃&ЈصkD+9۵V''dM2*^\0\nq#\Z䉩e޵ITv5܄Sy8#GyF$\nr`ZpGG*\rr\n>|Yw$\rGW[rX<{''2fQ,+<\\\0\\''⮝	=$(1\rۖ/zhT<]u!4ߒjF\nz\\W|rbϒ\0E0+F7̚\r<!-:Z[Zj\nwYEѳVָ]XO(֩=1wCb]WcjG[\ZxDsuͦޱ4EXD6야#Ogsĝ5pտoZßG\Z~.H0.L@ەC)&zY9E-08\rktm''Ɔ^-&ɷ*ԯ)1vFcC''M&.1e+''gǪ;^|OQڂb`4O-Gx99d䁊N58''Aзi*8.yPB\ZYe޷vNtvjI?!\\\Z"4<4{}aБ8a;[\Z&+:3W뢅?\ryQ΀η!LesEg#\Zwjt#W$%[6Pm\\IYIw0@j/iq*%vbb<J<sjĺԴUzﷺ9縙;O[x`*8H*r.P2ǐ{E[rPE~P(^\\>]!r^8¥Z#u`x+I[0NM[xV"2FqHƕS7[Bx?Ҹ=w\\I\ZhkƷoMO||zO[Āq46#\r0J7\0[irB-p\0,ܿ\\ԠUG;?`f /Clg9NvDB"A@%''+hL^^+#e).\\Q"6z}_T4xma#E>uX$={+cܧloT''.E]"f)|nsMdm˸hiqŅm	wb{Ag/Ÿsä6I--mDW42V9X-ԁ^LG8㸭DC<WFNB\Z 	{yWPJiޙ)==)eFKx:5D9@|IQp)7v)):O\n`؂Ϩ''<Mtv$d]#짛߸.`8G?|#C=(6כ@vχƾ2z"N.6f,S$YӸiuh"KS1R+/;iY.7/XM7~Y+/\\1}kJ?dA<aC3:[nX \ZA\r҆ErBЋg%3׳Eq=v,V"/C꒹=8uP	kŉ/LAN3)ECC=\0{ק"};龡tOm_jWG\\bojH]x!+>Ԏz4J1~J{o[ږ2A$Vȱ,fb%;&vcDOvcQ]P=߹bۥ!	9~Ggl򪾨ȹΐ3|o?D^a@ CCN&PStizr{cYG*3\0ȇz=Bl3u@ÿc1,)a)qټqfL1J|b(#}\\EպʾUL&6o&ء[tJY$MA؃q@}zPWE4Rc	ĉۓjڔ''nM}9`AR)y$*[|˺VB&ipU .Vitt]\\;HIdDppSsJǢ\ZC2]h?ֆ~8lȪ4,Ǟ?𴺈lkJ㙸3g>ڷdGzfwSC<v\0f{8:\Z\09AB-\\"RLFvɩơ-&iugh2%.g0K>⏺G.P@J3tBkD|$Ts	$Yb")Hzd<cA7*H)sդ*R#ya\\ګ:KB8co4>G1J`ZI=cBfeƷC\06&FL\r<\ZR#캝Ldp=@fIWX"MB1QwoX4bxc)@D˥ka˯|9Y"i*UL<6''I>bv.|TEgǶj.htb5p<eZps}[Y!m#elp.x\0mxP/d;sTsM=j%0bNtR&y.sE$il(݁b];!\Zg~:\ng$d(e)ڻl{y#]iFF3J={$˻t_2x<-˜wqIgY"pkb}qB},?]/1{Ƅ/:Qv>rr)qAo\r:;(S>B!V5R_Bx< |9''bL*^Z\n\\ȩ|kZ="ZCJІ+za0X݁DvJ#u:vBi7J7]1kk1G¼,`|]$9`,w\r>-W7*<:gj6Tz308Xh^~m~ u׵ބ22RYRP4H9O}X-*߳rcYgx--v60覧esW(=:W]¼dqZeȴklW`ePfc@P`2_PVbBȭItJ̀rc\n6/5y«q{arHEs{Os\rA3Ǣj!8}BξEq8Mӵ6t굳In}''`C5֚%{A/^r)prAJBQvep) RNyHy+3H(H^eE1oy֌HFY?\n}Vք魘nrw5ꂺg*~;0MF)Um*;:jl30dsc\0q|KF0_qYsBKbַb(7^:˽1Dc.Laeow^`wNOPx3C,wW̑>\nc6iS!ຉY8V#rQ$[)znáW;WѠݥ`WAA\Z!sn?Rvm}ax{oJᨷN5qKZ_V#pW]BS7jY4ciAW\\~YW4#a0<g|.JDSy\0a3P2+?E]tr+Mk7AJh\r)L2=RY3LeԦG9~rsjJOĤg^L\\FqA"@[;Kkq?By:P\r\0!EÐ#MOzq~Γ8,՟/޸j!TNTح	䅬+.S^Qiͦ&YX1"I+r|wT1a>00nio+\Zoo`yfny=Cժ8:ξeZTW0w X$q/£1S4-nD(@&6oZ&$bX\\mfkJړIB()&.}_jhF(֫];3''(?G>cgxWʡ̍V-EArDx++`c`/[΂-JHnQБ\rq-FV0@UEX}AJvd\Z<`eaX9$Go)ոr?S*8q¾g<QQc=SIp"a\r:4}=3xA9lp\0ư9e.O\0zac=L~qn=4I~+m)qppJNnxh\Za? 4T''6aȾo`g{Xi@\\rFsfY2X7\n@k%|/@J:y$Lqrh)uF@1˞oA<TQǾўKf''?=Onư^imQq+\r:Po\Z*\r94Jb r1LLdO^,RNsSn/ħotU$D_P!d\0LpOk7NlLn\nq&x2*n;Y{uDW[dg{8Jѫ& RRH zf\nx̗CJd Bsn9iS*LDE$Apfl_:YT^,FdΔPgẼV@P8S0JȪCd8M+7b6l&ln)Z/@*6yR7,䓡DFfl~0#FyWy$-\rm}Q4%{{`"2nE*V$ʷxcRYKSMO-vY |Iƀ^Q.aW(f˿b\n;UBgn½E9[9|<C+~TRBEnH.VR3+ֽfjv5+i#"iR,k2qX8	֠,It8҂YUN*>FZВ-z	̑Tgqװ" NT6npF*5LE\0ܧG8)N*蹉*01G9;Rhb_>5_s h?ͫls!1}WF8|VapV\Z2Z8t80pVۍg<\nE:0o?%ڡcO\\ޱDic,7[8NGs?3UQf~-X5\rJV-c%#ep~8Ϛ]kdnOEŢ7?>A2Np$up6Y`ȏ#vR0u^/''~,sJ$Tl>6H<cC1|,w9**L9nHEA_<''}@iX^kVQ=ʧ!d~+Oigi!H\n\nu+o}Яn\Zdq|j?RN>AA{z=\0tWs	a݁iiW[/;qP~Sr|L8eV@5 ]UVb_$4_m2BJ\\5ߏ"%	N1NkԆ	3Oʂل9kǋL[AS\Z3H	Q9ͳo@h_!1S/xBMWXr0aFd{Qx`S8,^+\\鏯")>(J,eh=UP|?7TvA2YB\\_|@r{?R!>\ZaeUz>EfZda!"QYP56#*OyԬ,s2xpFT-o$)SLˏP3\\,|Sd1DSZ":4KLJ_JA<DƄ$&lSRsGWėT\ZZ%u_H"ȮV~	00j!ڕ%UIY?Lf*hGY-ql3<ZuN.YizQS%\\Hbн''`/ރ}X3\nD{|	QaK0Rb=ѶX׮,c\n5ikhaߌ5>tٌ^8BrZ`^lv"k	Ȥ$:5ԦԷwyѶ=1{K	~ظ1`"L\\|w.Dk< drOj-!V>d*jPF	;QƵN1aG(_,xW)_\Z6zyVi_ձ)s0J/@(rO| A>m/[*nB_RG-YX/ZKq0$H]po=''sX&͋E;\Z*s\n7)]Vl^B>-t@^~W-O&4#h{IlB7k;3Kd\0.e^7AAR&DGm1eE:âslUň].\Zn$.Jh\ZS	3`-\\KǊmb\0V96 ''?nHÉvp\Z߾VۈZ6jjÙK;JwH佐)KKfÝەt}y%Jn<~\Zjægmp(_YNjs>ESiò"ӃƋT^ނw ]Eԫ.F=|!.s?g6G8 \\2x_5''֭K&RsfiK$cN\Zh	9ҭdЈVoc8Q1E/=\rX݃	h^/WXgjU@6%0I\rD4e6So5RZfޱ<Ÿv 0!!N֢ƽKr=)4u+vD>m\0a)7t2ͫA6ax}/Aoli\rlc\Z;7s̻ƪ?ísͩ5DL Q\n(vyer	6s5QZ_^m]#knn\r)1:\rxg	l!؜S\Zc/$.BEk''ZFy|AvPUIEAL`L_2,Mt)of.z%ē.p!ih08nd7MlTRĕx''u~ze|\\Ev2rĜv 7giUeޫtȾ!͓<AaOgA̳\r]y~1]	L(p_pgп]bz%Vt(J\\ֱn\Z"\r hz\ZES)nnMRa\ZpK3=V#ejiN<V]\Zr?_}9zНfi`8$W**fS/,Hk!]\ZjqBlGu%?ncfdvdHx7\0;4\0\ZoRD\ZJv"(p{v;fˋ &UuuV*LgbJx.g0V샻ZesWTm^"QќG(͢eK@^(1]!''\\iqb߭D^p;wmupj+[*_\nw:Ob:^o_gOnv}Jv4$v.LstEyj:odFand]}PsrKS#A/\\\n\Z\0c|ffř<T>]|O\n''$K#"j,ś<=!-uW=T\0cᄒF`šͦS~(raWRYអuYde6|ŦO\r+\0A\nN85pŦp=q%;[̛Ym	{  BbtVV:Ϩ<(yk^m<e6amԮR%M1;zDk16∃\rBXњzyޗ@t!0%/;+(݀t\ZU)t	-b[)>\Z\rg6ft \0DALѿ*8*RSFH\n w28+lroP@s>L{4`DMoaYmytP*\nDճ0AA\nkz}*$cS)KxX1Ӽ~bݥ9wEE3|:Gu,vlȾltdA4f@HeXqsDS<Ϙ5M2^}Ɓ\Zd%\n[Kn0!&^pƄ+nT\0o<\\?_.,OӔUƐfB䍎C<Zx0譃Ɯ5-Zdn3I\rC\ZHcAƩÉ\0ͷ8\0!Eƴ. g]Jz`$LKf<ƴsfOC|ut=)k% Ya@Ʒ^Cۡ2$\ZvֱtqZwƺ\Z4_9lRkUk\rP''7/^`&''\ZBPh,QjO]_q$ge"W9$6Y7oFm''-ӓ\Zb\n7#-EQ> ųtF\\\r?vWCYnqC}8|M\\<d^"ą9ޕANĔ򜜠\\bZ_uC,PI1[\02_2>JV;C)$\0O!`H9znD	rY["?"Zc񦱯g\r~ ǐV5?B-Mhin\ZP@kmY#/.\nw''O-\\mo}%-\0{@\n{	ݒS/-6Rӊ\0OeLoXr\ZִQJ澥e:P\r(uY\n痬}K³Z?A,\ZYPEa{ά(v~PPTW?Yum<slMaPL/+vwdǁSzQc\\N~(fZFJ~\n<ǔYMgE+UX57HEht6sa.dNGkNךP''hH>[Ұ[g-d9#	35{Gg{tB+ϟAG]\\(\nPo,m]|[<yS݀<N!)vFpw\\s}s`Ģm%QHy\0r|}D{Jy3W6;X^''P1|р8&dK]	E4v۬>t&gk"\r+fUʰ4xY*RlգzUc\n5Kȷ84]$0T`1oF"&"9 (z&̱ȁuƧcujӄltȃogQfE-fȈIy\0]Qἣ(ͲȉVg# \r}''f;MV6K`ɗȎ+/T{?DcgBo#r?bȟ;\r7S,i:27X.gCtmĜȨA8P\rhܾ]ZJBȵ08S9M\\1ִnហ/{4ȻIŔqd<Plm,9/,I;?%y[.]_zaZ%U$DW-{};y*0՛s:@&O\nov#Ͻ0D##a~7ԺMާ/<]Ft֏ʔ#1eFqb)g砜y0(8ʓ&G_`䘓,*J٬k>7B\r³ѱ\n7tvsiN0wDѝbSF\\vl%''Ͱ^3E>ˑY,XRk2I?~4]4KF"vI(QLOP(m|9pYuc?-F=DqJkfɢ::Kq35Fpu@ɮamș@DmPJɯ	j[IY|ԲbX$nG>LIɯO3eF㛆v+.r/>,ɴ߁10Rzʵg\Z߁ԑ7Ȳr̢%<\Z\0Xr:\0`w(=GEA_l­<DO+1:}f%B]g"`.Eq-C96q <R_\nYBbS"B-+GQJ2~snm1+uf''sOd4&VAWKxea~ꃗrQh\ZP?Ly8&>IB+ai%ĳ՛~b)+\nYKfkwqˏ\\N];L?sBis(܀zHO?۷G۠ԙ>Z	~yg-Gyvm"GB&i7qʌb|tP][JN@)X<V*Xhʥv2Z}K_	jIl09Rʱ~o2\0?SV=ZsLMk;PhJK{+f0|#8:kϢefH>\\pV)$|x<S ߪGG0hdr鎄\nljs!~BOl;iKe?>VPbAy+L/SՌ$.bne͞BTp@ǘvDz|3E6E	j\\P(k"[7A&ɬ8P]jJG&nb0	M\ZVggC?#$/TA}\\DU^\\m$Io*ẾV\0![ #އ*\Zmhp6o(JƘ4bE7D6ͮ8d9#Zѝo\nT#t9rd77=~׊u(,\rDjTO~"LBUxlrXwc<z!\nbOpL35pD^8DX#qֻ''fs.37neg]{NjH.N!q?M*]- y3,4P9ƕˊ%(|⛩vq\0}\\lnˋ8ِ?/L8''n^iB7&`%\0ϙˠ9HǱUhLgN{1W(w\n˶bat+flm:󝲇˺C\\=vpOW)[СM2SS{zb-ͨ4]?^Dk=3!Z=	kB§"KPK/+R$f!띁>7Mi_"4	Zg"axh"''Mi55L)\\eVA7rdmĶbeT,WMz(=ǌ	<5/#PNgz\Z&x?49<c''c:y4Og8ĲFG\0\nZ7|`]Ƣ V])#dOX1reT8k,Yh\\cYNiT7v1X~J=_[i\riJqo2ҋe}Xto|zJHް>̎1BSb`;\0&:Tu%f^ځ5̓>-Pc/srt)xK>l$,\Z̗1~P]w;R@>B\Zi\\Lܡ̚Q\0u4J47:"R,6\0\\̨tX''Jܳaim>#Me̵ *o2d*_6c\nzp̸\0SE6pOx4`!qJޱe X{~k\0a֒9pA٘Ǎ++NTbRs&a&J_"OTa\nS.7ĝX`j\nf}DErFJ?CNТr7eAVk];YE䙡m6%\\3de\nu8K8BTI)W''|=C;s췟)<-()G]m8ŉn-`u&tߜSuj2kpW6{0@\n-t9$-VrTsYݥ/h)`63\n\0fByjZi\nFغ\0 µ#7fhCaT"ё^>2^~"-;CKX2H6\r\r7֤	p"I-.\rQ1*a	D.6OG\npQj8.q}PҝJ:hQyyf\\u:66k<RV8:xȑ͈{g-Z}^0:~+>x[Pͨ8Q\\fMJJ8G"獃N/6j)RV9 Ѱy+!1EÀ''Uʏ %Ix`Lbɚ[_I%ǆm_|SLha''\n	(\Z"f_i\\G=X1!54V?g!٩!_#*B	:_GX]׸j%=%<IрhV8qWS\ZN| "hek>t3Sm*3^e9|#U6UOTbo~s/.yN+4[xV5+D"G{\\u-TƩ\\Xi{ !7){d2SgzfĞMJKKY1ΎuL%\0M0@ΕN:9R}5U\\_^s\n|Η)nS&[{T.6Yi*HY_ΜЂ''8a1 Z9pnReέwJ.ֹ҈r~w=4jӐήOOy#MPubT2.tٰ݉ή޸F\ZgTi0bwiڷ{0EΖ׸@Kx :IL\0ƚ|C	&M6"E;?#9\rְ!W"ӣ6>xkTi`n7(}9/#T?DPX`dӂ|ћ:D3CSookj\\0[-d8;\Z3\nYz''qs8hUq7Ȗq&u d`+4Y;YƏZZt#}&67&\nJ0AmCғw.nCklStUa"6kHDUxKU>5Jʧ-LE{_E\0	RB}NsEC%''ۓߟRf?\rUne"4\0Cp/5|X@㺪gp.\n5_Uqڠs?K3aZ0P"s{N3r9[>!ؤgksh-27`hA8%luݚ>-:[BǓ|*Cǣ@χ87!"(Rϋ2\r\ZaDD{oό=_}+~(ȞevrC[mKϘgb!BUKtj:E6bS$sؾ+uϸ$a5QcVjv`dmmYQ,|:Kʒ%DLۀ?ZjfGcМ}v.m ֿ<xZʷnn@yќ#bXWbp?\nQ@xHc(X.Gǵ^K,8b2p*XOLa/{ؒawn\nyLIF)|#pSRNbTismTJ{)Aon;9%n[:mtog87PvZ:EFMs,6Lb!G3Jv^5K`GCЄ}h""<Mas\\i5?1xMЎLX]''kAm]J7MBДlWh<S=\\"0iCDMq\ZМTсFC)k|WjNɩZ]/e{о;c\0ׄ5s+{u7^п?TҍYV<10v+Sn.zH߭kF5-n!x`Oksu=J$u	8@Zx`#)+poPˤhzY[|`;]b`&h2)VKF}Ոm?*f搭@%Tķx6ҒOӄ9Ą9.z8X˖<Rh#IJ* Tq\0t<bCK7jBYCn»̹)B#)\n@}nF>k7X*ve{}bDZ\r_.>Q}ֲ|ݸhOjL1<a_/''mJ\ZNhUgRIP0ιo-jC-WBBusٿ	#g2&*64Vfzo6Ə7yHg|S\ZneϕB+u\\ۧ-;-R8kp4C9Ko8e+UӳsOw3RWJ̡f+VUm9jODzq蔷g\rӒdK:Dф!`mRutY\n 0/kѦ!dsh s=C\r.2"D+	v۽Ѭ.AQ%8;+[}2\0Oѷs]^ߕWfp=EOf\nqbm~	+jDŧɽ5h/vd@Z(l-h_4\n`\r$%eG\Z8	cb#k uh(\\F d&\0W&Tvj*zX%((r6hŧ+#%.!$ʔ/))Hoy.đ3E9D>	.2,!@%}1i}.k֛kgpݑby9YS[w\0m0H+\rq(2=]$ɆpLdGa2x~e_ZrV(-W#Q?`GuGp~n-ғDjkh)fxwLQғsa"o?Щc9CQ-yj$ieYi{p\\8ڪf.$FL6wfj\\iAxkʍ*^D.oR|D9O4[J	"<Ɲ2,*5pG;w2^f5@է3=E?:zM$qeƭba2E!td^jj)RBxBL =I5E9jEN7\n;R}lpfVbmmhc\\J~9HJ$[x[֝~m/ȶ>ũT.),l;;o[Ӌ;sdO&hgC0u![+\0Ӟ*سjEW;>$:̈4dQ+aJӨ+`qs{9OFxvNms{Ӯ¾&j\0vS|.kӷĆ{线m-a.GB1n:sMGSbK"dip2px~uԜ̶:wyj=ҕī6xySy[9l:Z=`Ȧ4W;3G1=vOio=#/?B<\\|8W)\0j|(	yz633Wq''x0`CAW''>ݩA$s8*w,^4K"w-\0CV!)3UէyRQA|sa3jqdPOdR}{ԍzߑQw.OB[NsZ7Oԕ|VmaqR<lɹm[I%#w|PpԜI|y'' vdŌ#Ϯtԡ*IbW]3UL]T)!EAqԥ宂EO1":9(TQ"M4%Ԧ0-/\\kW%oޏ''E)D&rOfA[Ȳ4ɏݐqU}R"GǄLg+\0vQv1R2ߡ/Ɣ~Ϟ-\\ \Z@G>uyгL\Zp5eQy|V&ͳw=^jwp!Qǳ@;e$%ߩ.axn`fw?6y}>m\nMR4A&E(6~e|vHl;R\ZVyf`TØ`s["(/`)+r6Kf"@r{Se:4e1\n%D{RӢ\0M+2Ӣ;\rM@jc3.R2-BH)/ n0;[`3\0&VOeZ}{ 7tBR#\r\n0f_`۽Zt)<j\0[\0ƄpڵfO\Z@\\\n}(nawC9-AIQEDyTzwyjmˬ''fښGĒGN2*RmWF~mK$QՎ1m.JM\\kV?1 [`u>\0!,Օ>o* ,_wE]I`[3՜5Iˆ3էKnLm\\UkJصlLզ`A^{Bb\rN\ZƤJľ**X|icy-u6pC-$*\n8Yd^^uYq,c$:$(Yz/gsEˌ\rf56&X뚲Ց&|J>#\n"7`)w10.^Rb괚fՎRS\rG4(!OX*7Al"ngn{R`[Lƥoߏ&ap6fK)^o灐Os<A63A߯%wZ5-Dڼ@E2찁;+i_B;l*.BU%(lfU}hp2+nDʭ~cyhGKShuPm(5,|MT\n\0OJTօ58VI0=YֆvBǑdX 1fvHy)l֚ă3͒\rΝĹTN3_*.֜_[2(y+9}QI*\0A\Zʁfg>֞&ur|i+Q`ŸM1U֠)8l/ZR=Yp*	Z\\!l1ҍ\\]4''7<O2Iu>&˷uUĖ{x` &{;uբ.XvaAb''L?QLrt"2Ϋkdo\\o~(y&jF%@I(.#5U[֋DB@i~1$F!l&*8#WBrC$D`K\r{''7Ö\0W2jʙ{`01]!֥\nc3*aVֆeƗԟ9ROt\rC_4czSsTAqcڷ59aO҄?tJ22<c8ezdK^đr<T{#wM)PHٹkώ%7f+$.~ӛMxkv\rns]%́Tĉҩ^{Ǝuj-{V=O\\dT5^+`,<W؈NlSj??f&:s[#RDs;ʅimdJNRj8?|H!sђi{OT6{z480og3xFR.:+װ&䄇2C.aeE0,9<wc%dU.^qsFky''ZS54G[\\e}*<|L;zxx?&WFf=x;Ҹ.uL*Z&M.^u9^Xe?_jaꟌ9,1\n~S20_ɟ5/cQ\r~jb41(q#ԜD]KX+kw?z&Bɶә9X9,<wJnpiήo(F rr^$K1Y$YH5OEL9-N:\\.$/?b]'',р!H4O5M&JDK0FNw0\\Ps-"d,世n7z:nSKnSTvu!@bv7NgVC%{~4u	k@5=({"X<؎\\X)Ш®4ʸcWþ#E5ӂe%/h]޲#ш9`v8ٸS\n*Q_1Xjaa^ەb(c/:+~Z|\0u%rvBT iނNɫ/=1IDj0\\lM51(R;\\gՌe՞$_,j薶tC@ϊ&8Haq_/BuZ&?y=ӡC6d6m\\]vay?Δ-[91"#G|hHZK\Z>BT*fZ/8߬U(WU{-V͗8$4l\\L4y\rotf`8^`=@lTzŜ8)}~H}qٗNai9U᤻\Z{ٙ$ѰRej`^7葟%yٜM9\Z/'' ٞ4bVttkEp%~D`%\0;ٴ M\nWX\n躨||3ߜ++4,ٷ紱1]ֲlzbVPx̜=ŭ?/Č)-''Lԗ x!Uw_nFa>e3;vztPi(d|\ZVw7BAzzMk+O5@&},pyF(%Ld\r*n=YNt,kL]*]>N5c	Ynl)"qqpuu4F݆$ӕ_p~*60#?BTP|:Xk>`WO@!پp}_0[\Z@d\nf!B>j\\R^3VcZ=.\0܈\\'',(&M1^t&*/:7`P\nS!:b=(mybVaIjWp(!A<(X.#R[$V<Z>f+mսRh_i;1zm;X?=s|VFƢIdE<8mJ.Ewj#_\ZܞfnN7%YڦU//g#JKӒ]堹|MnYM\n}2 `Qv_\rzB^=ڍٿsP!\0VtbM]^''Zto^ڐ^I''HYjtQӡ4,<.qڡOmi[KN^tK+6۽ڨ*tAPf7*̟z0aYګŲT"\\S@ޥ+0yrx9M,ڮ("Y<%I 0c+	Mv1ںQG䃞uGiԯg#dN,FyPXp^Mƴs>\ZH.\rߏZ\\UDOtޔ&ŔLZO\Z4dջ`k_[aJ{p\ZE=(X?l;])O=bֹ\n?c$TV/09Fg	~nS z>fSA\n\n+0X>JXP}1St8<\0͊J-v\\s	pJTX~\\sAk\Z-=}Fb᜾TEw!}a}.& c-B''Sj?p净,Xp!:EsۂwT\\ +=ាb''^xK.ۥ~b%w\0 z9wsn>Dy1ۭM:EZ<v(@^eK\0۳}sYDk6M(kGNة\\B·ۻoXc\njJ#@R0`Tj5D-8FQ\r%.m5R㖩\r;gPklr<CD0*\n)mx:.owpԴ6b@WFk-1q[42\Z@r: L\n/9rvsub''Y-M?~"u%[,l+?F-}M)`@}6[d=w\\+y%e-_D̉I~.lvPgwv\r"aMI\\P;b>꧒5>7Dublg=z^z)t?Ū鳊<)+$>BFVd03mR2t/vS 4h"hAD''''|6[kF=\nyihLa门b|\r,7@\\''>0wm3t	ЫQv#`i-1ٞUh܇c1dj+șZL9׳ky*N%!ܑǣg\n4 ]D$WܔQms"t.''\\O{R,srܗEV8֋i;fe|ˤܝ.rYMDMKqĹzZpܣxL#!E~p#wp1[0L\nܱfXI`&:=^bKG\0.ܴ&#kpe`򷪱hfsIXNkǗ!JB(AL.V#8de\\B_&:K:"$_\ZgpSI{ǫ2jPfGi+YHK׀&f8Hk[%mrs+n0Of֠7yO\nQp5A~jxt稶\noN{mnP,h+p]h4g\0x-8EmbE\rH.0{''~K.sJIPګ&nR	2B؁,qp1 -7zX:JX}k;\n5Vr4݊w?L)Kf4ٺ\ra~tnTݩzKuY.mi4*UTݴ"cYO|D\0;.Ѵ*NݴKbT3y*נ\rFݾ0[0\0RZs"wL`T33unM5Kh&bV\\%Z$iC1~s\\6rۘ\nΣ6tt|hfS?f_z`y(H2\nyπ8FpBkʫ.E"y3(ɝO6Su՛Z&S,	p\nb!s!ͮ]>Tx{\\7RAg[:	c.SF>.wg:$\Z	V8{V9/jzbbhF+\0~Q|''e0x?L-ǩ/~f0әXtǞC{%f"Z_m=Z>D[{/m9qN9wN|\n֥sj*bTO5pp`)ޖp1iМ&19ޠ}D3̲ޚ$>*~wa\rxޥ\\}9QZ\rHO\Z+C3\r͇q,ޱ\n1$d8v^!*3#͜v@3&hN;yB\ZN 8	jxoXQl~?8ii8|Le\\UӷHYQ''\0h$z%ι|qI_y:&Rz<OT%x\Z܂it11EgU&21YI\nf	YᦊFrL7uSt֗pǯ$U-m ~V>򘀹EY\r,iՂ!\r2nD9T%T֖\r>ƾR<F{;xپ۶Ix3\nzǖ۝Qh-n&Ue\\Xj`nُ|&k2ʰS|I߆Ryrv@|z%Ӷp,ro;B5\0CyaFvVNcۊiBaTfX|jbdPCW>b$=Otǐ߅yRz5T\0DU磣	w̯ߌ\nrsgɴ5Z}̼ߌPܻ\0{QЩ#m,x\\`ar_ߔ}>&Iy	pby18gJ\nߙw, sƟlalkHJn?&b+ߧ)sg,He|"j̋2(߹VNA=X".\nŅi2~<gqԴTϗ~%>m\nqnA_Nj^HCOWQFi|x7N*TZj\ru^kbڵ)P\0[''.l7^\r?%RcIglQRx\Zˮ\0Y-,&?w	q	\r?K3/zԗcyR-SZo3ҳCAj	M^+hslnY?(uoմgO:!,ꏑ2&(c%\nPB(13c)2ɖ<tfp''P6߱)u@4AN[W΢"Jqp$ArL*9BJp*\n؛WX&qb#sͯSCom94]2IeEkqh@N>އ͘RRSo sByc!l	MJh^`7Z=^ԯč1TgرDwhlԑ_x4\r[	\r+~"j\\粃h_EV"R҆c}oiӿFp&KIPʽD[E=3iJ[ax(aBtgP	B"ೄ"-dJի	U{&, \Z/:,ǔ''(QG<C<F\Zm_=|kBô4>]Ffw''欚Evm8ٝ;0\nRlSk^G]p袣0䘯aĆJHڢ#eR7"d#!E!,cl5B\\	W"gܷ}}aOL\n:r2ZhzT-|b8\Z|CC0v0K\r-p4,KY(I&.aYA=6	ݼ4\0e0-4J\0)Sִ?k"4Z./M[Qtn.?χIqA?Tj<woRIZ9\rkXe_^q(ѵ/̹h22&Xt-aZn᎞O,khiYe8;w*Aފ&''D:5`v>dk}<6 ,?nі@(ü^k\\cȀKB۵&|UB\0Y;@7GJ۽揷+I-i3<`VCS5Iٮ\Z;&>x$-&z+e\n!d>a%+eT7 ҧgяd,w=	{|\ZZoϢ.p]U\ZeOlP&A{5[8#=G{tj\ZC`qR%D"/w?Z)H%K-xrNpꔨ%\r/<\rgl+Q_r-mPhQ$,5%m,\nu(ޞw09RTZqDɩ?"hK?=&KoHJ,a	rU9''s?|NtN<L!;b՛V9t?CR0AtRWE )օuTRYT6r\ZIZ)[w[]=`LÞV GLmJafo\0b<HGwE21wha3(J@g)z럳9=8''KI\rn|\\m0tZІ#fwMQ 1ZYl‵`iz y}fWmhGmM]H\ru:4̩i7[GF%6+E{#I\\ޑa/jqŦX쳙r/a4v)w}U+谆{3⥾ϵ瑉N)]W1+Z:If	ڦ%5@Q85ʂ1-5KYžJw_{S9{F.ymn*$\\lG*EM\nlV594*fH	r*\0Y㱿;+h<RV_u&R:r>1u_U0?<ĢbbadVBZLC;wxY^-сo/@87?!c^H\01F=\r"8d0{0ZS>3	vj\r|")"5SR\0{k{6E*Iz3^MP4FlwRCIYg_,\ZI.&;ӾrV<SgU|4E+5C828ҝdX_˜&h6_?q|,}d_ӊDEf/pipEf9(o''?_8ۗ0]$47F\ZA#[RAr57{07f=9GcNyΟor|.2K_Ôx##f@#|إƁ\0xYy8 ~oΥTXJ)*aL#Vŷ42B2,uʕn}~҂Z-36	>ӯ\Zz?<^޺%8"yٱOlB=VGh!K<s;׸'';''=Z8{DbJ8S#tG;JMfPԊ;Jq;(5nOjnYZ5qPܠ4l{tYjZ`S	 |DzgzBtWnW&c''J@{Trq	*kJ+0}VLf6	ӆ`lI*H;Q{"TioK߈S#6?6G}hoB %L@ĥbu(FHP\\ȯC9!cnN*NJg}Yv7Oh%."AX*䯂:roO''7x9)yj?wk6(.Tv̯15Nb7ٳUw*)h	+ڞ\n)QNkU4JM\\V^1urYޥ1mwt&Cr''BMFu\Zx/D9zH&U>+TKF(,`:7QǱ-FZQTƷn\r{vAH\0eq$WDjK+{jPuυ~\r|FSa(J}ȟA\r1Pxzuѷ;gtS7Gn+Q1rgQ yg5.hfhm;k W8ˉntAbyMϐ;(uj?]$C&eMV `芷L+QQO}#P5s/SZc.r %}5-/-RZ%,zfw#nؔ50D*/rxPb=-.XTYnPgb =#\0M)B\\e~k:\nYïy.5 <ooP?DO%ڵN:({ZӌUJk#HT]^U\0Tj崠&Y|s<BJ	(zڪ\ną[ƷGֱ!IzA4N:ӊU	[y-)5,)wZDUvR>k<vd_Ba\rc;pvgm-,_"TP].힭j8\\3c\Z^@i# UcjHq.!۴	^U\rs&z\\LKcu[;m幡F}I-6n$[$\n92%V0D2`qT&%q5y\nVڌHt:<k% (1.a]_F.41Tm-XxE_pIueIt9]\05^=9E]=s\Z!cxNdiGeAI@''iۤz*bTJ-2<8Ko|nF&Q It-Z\r˅HF wb9ѿ\ZxRc6wc쑐?XߵD>"|?FH<I0{eQD {~aK\\-B\Z](5z!UN[a9{jB0Pi%ܴE^g2z,@QVoUKjaWś''yYڥTJځs 2&Fwp!\r_昻iw66Iz?1]f$`曗>@-=	g_{-SP+fQp87i!*I/Sё}l:XbSȣ7\Z,[xR,<X6Kk	oyAw)}\\C	\n=Չ{o׶gbUh6XE.5Q%Ǜ|߂YM\\JabTjbGarU~\ZoZ"Tɷ\rM +	`gOllm+k\ZZ D<ަ-6aK5Ȕ4\\4MY^exM~ƟXbr](GP\rSFzȲMRW3\\\rq1?XEGDfLSq`	ٷsPWMQ~@ů×͔炿E$>96g\0È];l\0l*\r\n%E''tF䝆煶\Zf=?;[%j{jMa7 895p(\n±vJJ|5:Jhroثl]FA1_\n!~\n}@=\\YYC]Ǣ5cZ\rlYƞ[#i[5Жг4\02m&h`q\n")\nSe]~&^vwåd#EQT$nT*Kz:e:Ŝv|چ`z`I{zC9]W9Ջʸoz=pr7ά49E\Z''x$񯏓ѡ.+rm؀=M:/ۦM\0H\n({S=gkyo?8Շ|BD137ţ遢\n<Yz''jX`frQ\Zȿ4MF/-fr:CK\nNB\nu''r\0~DC:{`I8]PY5Hgb:<xݢX,s\Zi(6貿!gъk8,+Yy.2\rt*q7,j_HdQPY@9ݱ|X!l%1+w$5Jck!ԛHFfK\ZR$HZY\n~P.x꜃ Nî(gFwn~i;V%TF~e|,|6DFR\na*!_^貿r`Habe\r\Z	-_[&ow@Ya_^f^(\rO>踭,\\q󴛤X`AbG3[]S\nr*Llf<w>< *0V\04~tUI+KK7\Z >L\remogLQ磺1Zktx*5Iq*lmKңk"MQ?pa؂4鄳~㾥ݐnn''-҉V>酹X@6q.辳*a_鈢ڛr],?i(R;}>陊CYV~EV2(zI4>ѤQV!yvpc̒P`-e9rJK''t>;髥ħgZCJo*^ɰ1NJRiBOӬBVhpC%Z}=s<۔[Z#g *ڕPKz5~N},po:\Z;1\ZE?Ic_c#ňM-["nE*9p:cZT\\:_*zt*{	9l!~Q&#`Q\n.	.E@ю.%Eg6Wnk+s6Y!=N3>g|S(FjǕ\n;eX4PievWsoڋLQBWbexAj,prkjVi;h!z})''72y?]A"3#q Ɔ\Z)+l\0#<9"ϕAvhzJ>AqW&zUV\nW8 `\0ayxHõנc7\\P6PyWέԽnc^=O%;MK*<fwkzE7%ΏͿͰ9O8^^]t*f%YET.mىY:#w`_\npc[_:E(.)&$*~(gf;c\0̢ce:Hb>R@''=v@5)y&֫\r;&؛ƿػ5|V{׾A\rreAFzK`"?EzcRz͞.V~!,EEcT*52gTC׎6k8W''|ǘrfH	/A.ya餷#c^SFkcMFjXvM 챤Kl?Yk2W>-MPN`g?\\\n\rK\0J<ǘ3bxT:[\\`nB7$·#t"Sm-C`ɊsE#)(A[h''|kaOIh9A\08(?K\n͠~ ]#tvg;s@|ZNtaZf+Ǡ\nKbH]T)!=\0!en81"P&8X;U^LDL94ݬJ݃ClE<aǈl.ēz]\n\Z:zs\0nĽ>e[7NJtt@`2Z''SV"*XAvkOxޡmdFFÅfvֻaʩD\05SS-*^Ӆ\\wY@qD^áWWZmIQ9LxeD6֤4\n}#9	;M		ꅱ/Y6_wpkw0%`0vl\r\n?4ɿҧesiGr֍On_4`/-''aYI|6`Z4\n"l''U8ykSlصA(GL8!<zKriImVe(iCx/?OEqi7A:3\r:?2=,+)̻ng3(Da!_y	QVGK҂sv@E\nF		M%{a`,N\0}AvA$=08QjV\\P[pHaF~yQˊr[JKǺn3`,\0d,mduH/l+ޠ.I6(웎yRj\nMx\r.s΂&In6_ga8y].^5Pn>:,GIzR쮝yY#ǳE	92vnjs,_Y{\Zk]ٛzJ^z{M9l+:A}00.@L z\\ )''<:SV;3l囔\\HiܵxfLl#@Ťe+Ὑg\ryuCx;P{kyM#h.?t#ɠ"z)`HgPĚ$mѭbzr	S,RI+_#ap[o|'':@A} E3WIkk0y.9ivFv2պ26''"\ZɧV:Nm6j40FSc"~G8<'':M6/U9)OWT>S0\0;QO%$K	''͕{)_ĝ#/q,k$t3?iYϲYڷO5]I{ٚXLl#,\nH5oD*ru-{{	3j\nWMbXzp)''F{Pniq9o̳l5y9Mb&iKues<%qѬ6IF_''Q73#5XNxL+֖}	gTj,)0f;7p>Dy(-s''#֛XމΆ>풏9Fܐ𱐠dְH]@ePayŝ&)ԧ0x)/mۅrUz&[j}wREv{AG5Fi	y*dq]OX=xsՂ''ydQn\Z	I5@7ܓ1ܞW[B\rDݬvp궓Rd%wob@Fj\Z\n)	|>j*욬e3p]L}``DX1عWJ]cƈf	uJ0fj\0ցsZR~]*"rdS2!{֣:=Nzg&$F,lK급/Í9zÜu\Z"dm*\ZX͹[I|4r_xS*t^&/\\$r\\`ʳa7%eűCS6ǀh2.^WwHî4n~2p{wq\Z.(Waw:jU/t#L"utPw"Lx|(.ayѫu#\ZڄeuuI;o,1{[rѸ5b,B2+YGHQMp+i2vCm*iQLCH8RvJjo޼f2RFt	{[O5R¸_q	6pOņǶG=6b4?fs^Y\0^%mp2X[j_aGv@2b\\\0~*JjT\Zw?/cg)eZ~&qN7 Z-r$E\Z3b\nNyoHNmQvaN/	Y!v46]3]3<ڗo2ҾPuA_*}~''K9;4p\n+=UO}6Ԋ|}<yﭼ։Khxޫ(R1=~Pw4L#\\rԹF "$qc@\nCKnAO] `oCK\r.O}9fPko2,=A}PU幝ܒI	ĥqQSqOXڟl#\r5k,PD+>J5딧n%29;*9^Ha0V"OvNz=ώ.\0URqk''i_i,\nG+L.\rQ\0%''ym_#?70swUJ/cILax6oi5E1\0² 75mw>Z2Q2K=^NqQ\nIS}V#N7=ɷ5gD>h]3\n0_эWg1*R;KR[:[*w(1 yXaͰ]()ck!~s~hq0X?8̅Hi,+x͵SE9r=#_~\\/Sͻ(YC/#/D^>6\\V6 Ei*X,/6}%]v	\ZY<}]8c4=}Xj(	;wgָ,\\R{9a\0Iv\\VmN(ט3''|.k\Zsn/䑛Xf~Xr[0$koA{2#am''Y#O(&\r\n0{z7j|5/iVV#VA`ǪVڏ!MdE.,nHkQ_39y\nb-5c,R3''r.]9cxߚY9\\~fǶhj}upIXpھΩT4)\\dw} w\0G>(,93_;G_1MˣߦmC''Vۨ/H_n{FW?^ծV N	-js\Zjh߽CșIEbUa9e׽RX?楐1ih\ZҕXT9Eߎiц	k!PBxQA.Tۄ๠ێv&=GVkr2C5m~q~{9\0΍J#6a/,n5ո<5;rfXᅸeXtŪ.+[咩H{v./s|UZAh$DUsI{''\01rkDac#kQbm(({ia^\\vJ䩾!@	nK^$NVjqvą>Ш&D6X]`=s\01y5z4O|pA5P%Mu#g]zmܦ8u(fy2Э9exkzB46Y76\ZN`xԞqÀsƝ}=D}^<!eV-\r7LtBR`rژgE;+\\)Hq{@dX{a2H=G6Cm:|!%p8Ug𿌫ANyqoʅ#&]#mVەrȹL=6mzQhZCoa[ceU>Tø~3$:v\r?v}}" 0*|;Z0J776WHGY3kPRWz3V.&QЗeW_6|T->{rC\n=kRdj6T''ta''X%=B-Ep~''u)3H_cxNpnx{V@f!D.SJ/xknZ~q6Lꂨ$?{II%&V(Aw<䩻c$a=!3CPY.c%0b?O)Mퟴ[%>xd]?Z񴝞15q)9W/`kWV*_i_''hMaCQW~K0X~D<>5O!	U''IaӴ9+6fF7r,?OP\Zr(gau;YR>v\\?sk\\ ~mV|ݐ\0!ٖX6_KGqiʰ#2?''u>iav/%1UEd_w''ޢKGs*<vu.SA`\n	tp''\\ˑ+&*u4c	\Z{\r@l(2ug!ڗɪeTKrjeUt-VJˀzا`*#jM~(k_MWFi]Ų3pv`r9H(cWޏK"$Gϭ''6I"Vɜ=0\Zh݆֭<e1L!ӳ\ZDKi@*SĘRg	rz2,oQϕFUlt*gV☲ù۬BjLNhZe%D''G}wD{,k,z"''HW5Je@R/fdUƬ\\fHvIIwd4"醗0_h^1-cjHtfݬ?D)''hcF,4|iQlpt>%y1PbBR[B}\n[;	I2qU>n)̈́IxVV$Z=qUOc\n4\r''R28F(>F2 760w8([oWK4d"Qj6h''Vh~Ad7DcA\ZHzyIQ]o%<DNNM^^/jC9tbp\r<!!dep\Z	0mz%`.۾H,x18q?L}]U^9p&`nM{ nL\ZN:J0L2"L⯜t%>:1WRͩQi~^GTڌ̄ʟ[wTy61?"pL,gGrw&3ؼxvJA7 ysvo_jH*BWY$6`vr`G̃S$ 2|>YwMW[ I/H-j\r%DT &gɖ\r.:)Q7ݣ hrnzWm:fO&y(H!Uc%rT.qx=\0"I8c_;k6RrE?{dG_A7c0+^Eh1{9U,%k1X\r LcN;<K{*kLE,t*J.	*歁\\5c%aPTgxȻ\rCZO8@;6fU4=|@ ԃ\\HVq2v5o,\07IѴE90.BAe4>]ySPk=9ifCu	l6E#Zt,#<\ZL4ZFU!}\\֊_ȕo/B\\!Z<&^SV?RÊ]	\nۃ-!7\rd>f83c(q9\Z)U@qZ\Z7BIqѰɧӿlpK9 ^/t4,ͮ6RԤz8\\4wcysM)9@2.V/Bc5a\rRIG>?y;+,7q>d''@@x°E]|2-[ 3]S.\\0הB/\njz''aFL\ZH-L	`$p1/>:rVǙ=={OrRkg!ifnb.*η$gwT#;?`?;"AY|X;uaw?oabN$gI+R.e\Zptᣈ:\Z`''8y`	B)AdOOM)Wg@\0i9\n?g{gs	gOXI#n!F#Yȼv"|:ݯCG#\nYE[Vwi%-%F\0[n1Sa+]BE2sŎ)?ԟB	*ZOےn+z`ߗ]^$dgGfmG8@~n?	x*ՑxkS략9URݼ"EI {`z$쨀qZ6hֲCR=8Hΐ<>yy= ؃Gө&0*u\0u\r+M\nMƿ4fKwlQ2\\Nr\nrBs~fa_MG%2q0/ғ:;eWGʈP,KA]H%AQ<gNMgJ"~dxȈ޸<!B|$k݈# ei%0D۞V蚹xRBBy%hWvǶm}nG>pѹW5wOE̾mG. Ճg?rТjs$_D&֗T5)\\Np[>&]:.ѥׇ4UhnlhʫjF**\ZWnfrP#3mdnnunpU0 l6ZiRw֢$¡桘3D\\[I{)L&x~@}7@*YG;s>_IwD=O$l\ZI9<0ox>L1\Z?f]t2Ј5$S(]4PcUv᢭(c̈́ɯTνڐ$_SЊ|;7"L~ޅLE`!)lʛhLO/̩3z4ΚC:Ufz^^Gn/pR1C̬202J΍<:_B!s*l6"Q_ȹ2a7<\\U}"As?C9`r0É\01yiN7,N]8ϪC,01Sͭ-abpYx{VcolNGqlkbañԟyb@Y(J5}׸dt`Mur:_,u''}]R`HƂUz[w\\=ʼ\0[\nKix-b>,EdҔ\nN-\09pM0+~0:6r½c	h{M\\J,k\r?Ke#pjm=N+Ar	);FO\Z/ކf?xȃ9\rQP@\r\ZSz\nEOwF.P)n><WS)_]Ya''kY_otr)CEIm/;ggŭƱ0`8^\\Ƌ~p$	[2e%jUM*.=ԍ:ckw''TOE[q:Sk! ˎ\\~J7$kSsYme(|.ŹzZ[]䶤^Bu\0$b"1,	Hp	3:X+O2>dpmݞ\Z''r\0L=D!D&ǹ	\\,^x5몾lc읋qoןK֛+>xy8"lqN!_\rт>3f%؂!a29\n`F_h*y.ZۭP0"j=xat\\K7[&J9*o9q?DQ[::js^Z@2nve)e_u!9]we<΁iJkNuMٍOI0x{MyR\r~SBSThZs*[?	POvI}7+ƕAl欿Bt''stshwk1]'':&etbt*\n''Z%$^*BR_~;Ak8\\=>J1~(Acqo%TFO-GzJTN>''#.`\ry~E~|\nRi)fl饔e})ld*ÀIF^ȯܒW@~ݘ0(UޕM!\0מTžd8(h]sx"8pp9Y$SH,iwT`l 9睪PkKVd*X\0MoDO=hW\0 7$RTbzHpf?@јݲIG]qM;>l\nA>khR8n<Rq0͞Z;kA,L''qJ[An>P:74iw!J[h7e^JTuVڅ6bJR#ԲYunnO#\rF1_Ң''Sz<J8@bu\\Qi窍gDH	;\0y/_,5V^,~<FXBVvc\nizNy׊}˜.\Z^\0]Iʒ|*w~^,j.CJ3II%%"ЖX~X4;;]*	&"TQWvRid3m`a3\r=<ei|MqZ]V[]&I-q9)g0TgOrP~tgng(W{v^Z}ȐC6ݞ+?۸ZPd?P\\kO}H"F+:̵LZKAry9H$Ī50K5:''Ċ$Ժ׆dŪC*k]0ɾ"Ͷ#8KxQQL9omѠuu5.qr|\Zゐ5bT2ph=j#jR	𪏨|z03ƨ;p-e*`[p5Uͳ{n!z[>ft4s^tE+WLկCҩχHhZ;P.s.1q+܋\r4t#*<v+7UZ^5>w<eP$PduU18<KnspGRb:L0j}y슟WSh5GH;V((\ZB\0\rlŗBs#3?+WpPMk]<px_"RLkiGAp\Z\\?h8Q$d1ˌGPP(ϞS3Q?(H|,;pH@yƄk}{[W{LG.vOǫ"J":rPnoRn+5-R\nqyM\r6IcE,M+,ǖf MP[Y&\r,YDxxVތ\Z~VDZ6aW_tʩk[ l-\0%;w`=\n^;HgR2gi\nB_[\074w5qy1Щ3&Ttȹ8=SPyYmmUIOF	!qO~þ`Ϸ7i.KK{1Xq"SSw	4p<Cβl$CҾY_G%̗A;3@"_d/5Z|\\T-BD",Quܳn.A\ZXm,P\rJhݝZɥ6mgH<mbm^xQ#\0tgFNv&W"Ĳ}:kS-e&sc#bQ{ΟXQ,-"k}a뫪1hؗ]m3ĺXqÏj_y[+xEV0zxi\nF\n74欋\\M=Oh=ln&ăJӗ~lL;-F\0U*/d.>z_[R|L<uQRVxs	b[yiC\0Tq@W~up)N®mU 0p3Tv{ṜgIU9\0ڡSwq\\(LpR^Lw:bD^J<#lV B<&bB筢09Z/|1p_mo<e{FEP\n-,5HNvR98qKn<J{bZ]X)8P:@\r%-,$yk\\3딢ߓ{B2AG<&%߼w$cTV¶\r|f7hCp\Z8wG+dUxXcѨV*6i(HXw6[|JaʹЖq^Oh;xA3-\rhM>kv7[ׇd̂zR<2K7II!1&j[656i8ntl*?/]\Z4tX*5\0\n"E s8т\\9`\\&S9~{-LKŝITi;u!''}ց2:e<DjҔNϼ7UeH> -%G(m\0DO;^Klظ!/?aFz#U%f{xi<f;KZ9ްNWj_H]͚VIR[냛B6B}(ҋyp"c''rrF4k~P,oʂ-~Bʾi>1/##yXoa\\DŞhebh?)31us_sШd>V*R/\0ӷ~r%"8lbκ"7eE=n~͙''2C/r\r̈\r;JUˑ-\\B?	CQc2 Gehh{<nн>!2_Ud~p7O";}9rY\0', 'no');
INSERT INTO `wpiq_wfconfig` VALUES
('currentCronKey', '1769560572,0f4022adb1054a283c030ecae1523c7a', 'yes'),
('dashboardData', 'a:4:{s:9:"generated";i:1769559945;s:3:"tdf";a:3:{s:9:"community";i:7182;s:7:"premium";i:7217;s:9:"blacklist";i:10787;}s:10:"attackdata";a:3:{s:3:"24h";a:24:{i:0;a:2:{s:1:"t";i:1769472000;s:1:"c";i:5422302;}i:1;a:2:{s:1:"t";i:1769475600;s:1:"c";i:5987083;}i:2;a:2:{s:1:"t";i:1769479200;s:1:"c";i:6069362;}i:3;a:2:{s:1:"t";i:1769482800;s:1:"c";i:6664523;}i:4;a:2:{s:1:"t";i:1769486400;s:1:"c";i:6486551;}i:5;a:2:{s:1:"t";i:1769490000;s:1:"c";i:6041094;}i:6;a:2:{s:1:"t";i:1769493600;s:1:"c";i:5855539;}i:7;a:2:{s:1:"t";i:1769497200;s:1:"c";i:6100408;}i:8;a:2:{s:1:"t";i:1769500800;s:1:"c";i:6206496;}i:9;a:2:{s:1:"t";i:1769504400;s:1:"c";i:5864917;}i:10;a:2:{s:1:"t";i:1769508000;s:1:"c";i:5757805;}i:11;a:2:{s:1:"t";i:1769511600;s:1:"c";i:5909984;}i:12;a:2:{s:1:"t";i:1769515200;s:1:"c";i:5879963;}i:13;a:2:{s:1:"t";i:1769518800;s:1:"c";i:5955156;}i:14;a:2:{s:1:"t";i:1769522400;s:1:"c";i:5690388;}i:15;a:2:{s:1:"t";i:1769526000;s:1:"c";i:5489841;}i:16;a:2:{s:1:"t";i:1769529600;s:1:"c";i:5472948;}i:17;a:2:{s:1:"t";i:1769533200;s:1:"c";i:5555612;}i:18;a:2:{s:1:"t";i:1769536800;s:1:"c";i:5287176;}i:19;a:2:{s:1:"t";i:1769540400;s:1:"c";i:5409484;}i:20;a:2:{s:1:"t";i:1769544000;s:1:"c";i:5409515;}i:21;a:2:{s:1:"t";i:1769547600;s:1:"c";i:5646410;}i:22;a:2:{s:1:"t";i:1769551200;s:1:"c";i:5784844;}i:23;a:2:{s:1:"t";i:1769554800;s:1:"c";i:5716095;}}s:2:"7d";a:7:{i:0;a:2:{s:1:"t";i:1768953600;s:1:"c";i:171614952;}i:1;a:2:{s:1:"t";i:1769040000;s:1:"c";i:158755983;}i:2;a:2:{s:1:"t";i:1769126400;s:1:"c";i:156147145;}i:3;a:2:{s:1:"t";i:1769212800;s:1:"c";i:122397932;}i:4;a:2:{s:1:"t";i:1769299200;s:1:"c";i:135244671;}i:5;a:2:{s:1:"t";i:1769385600;s:1:"c";i:139638553;}i:6;a:2:{s:1:"t";i:1769472000;s:1:"c";i:139663496;}}s:3:"30d";a:30:{i:0;a:2:{s:1:"t";i:1766966400;s:1:"c";i:220497890;}i:1;a:2:{s:1:"t";i:1767052800;s:1:"c";i:188749807;}i:2;a:2:{s:1:"t";i:1767139200;s:1:"c";i:175397499;}i:3;a:2:{s:1:"t";i:1767225600;s:1:"c";i:191466819;}i:4;a:2:{s:1:"t";i:1767312000;s:1:"c";i:220479598;}i:5;a:2:{s:1:"t";i:1767398400;s:1:"c";i:221578544;}i:6;a:2:{s:1:"t";i:1767484800;s:1:"c";i:202821930;}i:7;a:2:{s:1:"t";i:1767571200;s:1:"c";i:180816479;}i:8;a:2:{s:1:"t";i:1767657600;s:1:"c";i:190119609;}i:9;a:2:{s:1:"t";i:1767744000;s:1:"c";i:178137033;}i:10;a:2:{s:1:"t";i:1767830400;s:1:"c";i:176871966;}i:11;a:2:{s:1:"t";i:1767916800;s:1:"c";i:177360012;}i:12;a:2:{s:1:"t";i:1768003200;s:1:"c";i:180236753;}i:13;a:2:{s:1:"t";i:1768089600;s:1:"c";i:208375304;}i:14;a:2:{s:1:"t";i:1768176000;s:1:"c";i:213286984;}i:15;a:2:{s:1:"t";i:1768262400;s:1:"c";i:223613434;}i:16;a:2:{s:1:"t";i:1768348800;s:1:"c";i:211074927;}i:17;a:2:{s:1:"t";i:1768435200;s:1:"c";i:180220944;}i:18;a:2:{s:1:"t";i:1768521600;s:1:"c";i:161263535;}i:19;a:2:{s:1:"t";i:1768608000;s:1:"c";i:131083359;}i:20;a:2:{s:1:"t";i:1768694400;s:1:"c";i:143575075;}i:21;a:2:{s:1:"t";i:1768780800;s:1:"c";i:142270653;}i:22;a:2:{s:1:"t";i:1768867200;s:1:"c";i:147241389;}i:23;a:2:{s:1:"t";i:1768953600;s:1:"c";i:171614952;}i:24;a:2:{s:1:"t";i:1769040000;s:1:"c";i:158755983;}i:25;a:2:{s:1:"t";i:1769126400;s:1:"c";i:156147145;}i:26;a:2:{s:1:"t";i:1769212800;s:1:"c";i:122397932;}i:27;a:2:{s:1:"t";i:1769299200;s:1:"c";i:135244671;}i:28;a:2:{s:1:"t";i:1769385600;s:1:"c";i:139638553;}i:29;a:2:{s:1:"t";i:1769472000;s:1:"c";i:139663496;}}}s:9:"countries";a:1:{s:2:"7d";a:10:{i:0;a:2:{s:2:"cd";s:2:"US";s:2:"ct";i:655558740;}i:1;a:2:{s:2:"cd";s:2:"NL";s:2:"ct";i:256383773;}i:2;a:2:{s:2:"cd";s:2:"SG";s:2:"ct";i:195700798;}i:3;a:2:{s:2:"cd";s:2:"DE";s:2:"ct";i:181988571;}i:4;a:2:{s:2:"cd";s:2:"FR";s:2:"ct";i:134236718;}i:5;a:2:{s:2:"cd";s:2:"IN";s:2:"ct";i:105469595;}i:6;a:2:{s:2:"cd";s:2:"GB";s:2:"ct";i:84302639;}i:7;a:2:{s:2:"cd";s:2:"CN";s:2:"ct";i:74584482;}i:8;a:2:{s:2:"cd";s:2:"VN";s:2:"ct";i:57802075;}i:9;a:2:{s:2:"cd";s:2:"ID";s:2:"ct";i:40998216;}}}}', 'no'),
('dbTest', 'a:1:{s:5:"nonce";s:64:"7663f8ac4b6f24968b85c7e122bf89a146152ea133766c48134ffbbe0517b468";}', 'no'),
('dbVersion', '8.0.37', 'yes'),
('debugOn', '0', 'yes'),
('deleteTablesOnDeact', '0', 'yes'),
('detectProxyNextCheck', '1766879443', 'no'),
('detectProxyNonce', '', 'no'),
('detectProxyRecommendation', 'HTTP_CF_CONNECTING_IP', 'no'),
('diagnosticsWflogsRemovalHistory', '[[1762995791,["dbip-country-lite.mmdb"]],[1762394377,["GeoLite2-Country.mmdb"]]]', 'yes'),
('disableCodeExecutionUploads', '0', 'yes'),
('disableConfigCaching', '0', 'yes'),
('disableWAFIPBlocking', '0', 'yes'),
('dismissAutoPrependNotice', '0', 'yes'),
('displayAutomaticBlocks', '1', 'yes'),
('displayTopLevelAuditLog', '1', 'yes'),
('displayTopLevelBlocking', '0', 'yes'),
('displayTopLevelLiveTraffic', '0', 'yes'),
('displayTopLevelOptions', '1', 'yes'),
('emailedIssuesList', 'a:87:{i:0;a:2:{s:7:"ignoreC";s:32:"6fd0d290b978eab8027e6b79501ac149";s:7:"ignoreP";s:32:"6fd0d290b978eab8027e6b79501ac149";}i:1;a:2:{s:7:"ignoreC";s:32:"ecae609413031458a125797bd9d49bbb";s:7:"ignoreP";s:32:"ecae609413031458a125797bd9d49bbb";}i:2;a:2:{s:7:"ignoreC";s:32:"0024c498a5b582c1d253eaef4c86c1ef";s:7:"ignoreP";s:32:"b74707280a2c61ecf4e11cb4805e5f4a";}i:3;a:2:{s:7:"ignoreC";s:32:"9d100c30bc12756a797226f30c37a924";s:7:"ignoreP";s:32:"9d100c30bc12756a797226f30c37a924";}i:4;a:2:{s:7:"ignoreC";s:32:"19e4674a14dcc51dd6feae3127a013d5";s:7:"ignoreP";s:32:"19e4674a14dcc51dd6feae3127a013d5";}i:5;a:2:{s:7:"ignoreC";s:32:"9e2ab76f3ed1ce4f219717b4321fad8c";s:7:"ignoreP";s:32:"9e2ab76f3ed1ce4f219717b4321fad8c";}i:6;a:2:{s:7:"ignoreC";s:32:"38a7b5507840554921ecf0793aec436d";s:7:"ignoreP";s:32:"38a7b5507840554921ecf0793aec436d";}i:7;a:2:{s:7:"ignoreC";s:32:"6a5f1047aff41a630fdf08a4ecbcd68d";s:7:"ignoreP";s:32:"6a5f1047aff41a630fdf08a4ecbcd68d";}i:8;a:2:{s:7:"ignoreC";s:32:"2e21f0af20cffcc4541653cba0d40dcd";s:7:"ignoreP";s:32:"2e21f0af20cffcc4541653cba0d40dcd";}i:9;a:2:{s:7:"ignoreC";s:32:"24d351d816e51be514d909c483409c24";s:7:"ignoreP";s:32:"24d351d816e51be514d909c483409c24";}i:10;a:2:{s:7:"ignoreC";s:32:"4d988c40eaba2c69e9c329feaef01fc4";s:7:"ignoreP";s:32:"4d988c40eaba2c69e9c329feaef01fc4";}i:11;a:2:{s:7:"ignoreC";s:32:"cdd4a86897a6bd6667d89f44e107b925";s:7:"ignoreP";s:32:"cdd4a86897a6bd6667d89f44e107b925";}i:12;a:2:{s:7:"ignoreC";s:32:"08663206cf9b9c7a4e6f145fc507ed66";s:7:"ignoreP";s:32:"08663206cf9b9c7a4e6f145fc507ed66";}i:13;a:2:{s:7:"ignoreC";s:32:"12cbdc93b17ca1ee359c83fe1bda1afc";s:7:"ignoreP";s:32:"12cbdc93b17ca1ee359c83fe1bda1afc";}i:14;a:2:{s:7:"ignoreC";s:32:"cbd03d9bc444e7a4ab6a458e4e004405";s:7:"ignoreP";s:32:"cbd03d9bc444e7a4ab6a458e4e004405";}i:15;a:2:{s:7:"ignoreC";s:32:"e3b8284b355c20890fa5f120a1f404a6";s:7:"ignoreP";s:32:"e3b8284b355c20890fa5f120a1f404a6";}i:16;a:2:{s:7:"ignoreC";s:32:"c0bb6150da6d67126cc8aa67a32a2492";s:7:"ignoreP";s:32:"c0bb6150da6d67126cc8aa67a32a2492";}i:17;a:2:{s:7:"ignoreC";s:32:"30ee69dc013f793d2d1a8118d4dbe4a5";s:7:"ignoreP";s:32:"30ee69dc013f793d2d1a8118d4dbe4a5";}i:18;a:2:{s:7:"ignoreC";s:32:"7c619a5060c017f8edc7d71cedfa7254";s:7:"ignoreP";s:32:"7c619a5060c017f8edc7d71cedfa7254";}i:19;a:2:{s:7:"ignoreC";s:32:"51768e299b60e854946eb4e3aac48feb";s:7:"ignoreP";s:32:"51768e299b60e854946eb4e3aac48feb";}i:20;a:2:{s:7:"ignoreC";s:32:"8029e789600ba96e57a87b541aea889d";s:7:"ignoreP";s:32:"8029e789600ba96e57a87b541aea889d";}i:21;a:2:{s:7:"ignoreC";s:32:"314ba1345652dd37f3cb60960bd070ea";s:7:"ignoreP";s:32:"314ba1345652dd37f3cb60960bd070ea";}i:22;a:2:{s:7:"ignoreC";s:32:"35aeaa161cf7e586f0ca333edece2d28";s:7:"ignoreP";s:32:"35aeaa161cf7e586f0ca333edece2d28";}i:23;a:2:{s:7:"ignoreC";s:32:"14f5887ae2dd28a29ffa518229c0cef0";s:7:"ignoreP";s:32:"14f5887ae2dd28a29ffa518229c0cef0";}i:24;a:2:{s:7:"ignoreC";s:32:"dd1faaa61ec8e5376f32629716938729";s:7:"ignoreP";s:32:"dd1faaa61ec8e5376f32629716938729";}i:25;a:2:{s:7:"ignoreC";s:32:"bd16f8c34ef6d82ed6322ac9f311ce78";s:7:"ignoreP";s:32:"bd16f8c34ef6d82ed6322ac9f311ce78";}i:26;a:2:{s:7:"ignoreC";s:32:"6aa140628bfff72a925a276a4adbd494";s:7:"ignoreP";s:32:"6aa140628bfff72a925a276a4adbd494";}i:27;a:2:{s:7:"ignoreC";s:32:"22af233f43cad8cc464096ae3022a609";s:7:"ignoreP";s:32:"22af233f43cad8cc464096ae3022a609";}i:28;a:2:{s:7:"ignoreC";s:32:"092502bc819e5196ba7041922707a456";s:7:"ignoreP";s:32:"092502bc819e5196ba7041922707a456";}i:29;a:2:{s:7:"ignoreC";s:32:"3baa1dbec088235793760d9953c14504";s:7:"ignoreP";s:32:"3baa1dbec088235793760d9953c14504";}i:30;a:2:{s:7:"ignoreC";s:32:"52646cc1b639e88ceca61b0187bbb516";s:7:"ignoreP";s:32:"52646cc1b639e88ceca61b0187bbb516";}i:31;a:2:{s:7:"ignoreC";s:32:"af7001e7bfff1340702d9b67dc1fe2db";s:7:"ignoreP";s:32:"af7001e7bfff1340702d9b67dc1fe2db";}i:32;a:2:{s:7:"ignoreC";s:32:"ccd3f5b153a20bad39807a00037daa73";s:7:"ignoreP";s:32:"ccd3f5b153a20bad39807a00037daa73";}i:33;a:2:{s:7:"ignoreC";s:32:"f9eb5661b11b0604df35f5d5013741be";s:7:"ignoreP";s:32:"f9eb5661b11b0604df35f5d5013741be";}i:34;a:2:{s:7:"ignoreC";s:32:"33d84b60e3cf9b83780dc82a8942d0f2";s:7:"ignoreP";s:32:"33d84b60e3cf9b83780dc82a8942d0f2";}i:35;a:2:{s:7:"ignoreC";s:32:"cacbde89cb2cd526140d418f89b26171";s:7:"ignoreP";s:32:"cacbde89cb2cd526140d418f89b26171";}i:36;a:2:{s:7:"ignoreC";s:32:"9ef102c18d56528b8c99aa09c2561773";s:7:"ignoreP";s:32:"9ef102c18d56528b8c99aa09c2561773";}i:37;a:2:{s:7:"ignoreC";s:32:"165a968119624e0ee28f894e532f8402";s:7:"ignoreP";s:32:"165a968119624e0ee28f894e532f8402";}i:38;a:2:{s:7:"ignoreC";s:32:"390874af9ecfde804deabd36f8be4c38";s:7:"ignoreP";s:32:"390874af9ecfde804deabd36f8be4c38";}i:39;a:2:{s:7:"ignoreC";s:32:"38f7edd8574a65a620a43f494f2f14d5";s:7:"ignoreP";s:32:"38f7edd8574a65a620a43f494f2f14d5";}i:40;a:2:{s:7:"ignoreC";s:32:"8f418436cb79a02ebea45d1b294318f0";s:7:"ignoreP";s:32:"8f418436cb79a02ebea45d1b294318f0";}i:41;a:2:{s:7:"ignoreC";s:32:"cdc099af4ed7ff0cadea458a71adf6c5";s:7:"ignoreP";s:32:"cdc099af4ed7ff0cadea458a71adf6c5";}i:42;a:2:{s:7:"ignoreC";s:32:"9596a4f2d08470075851748955a3f9be";s:7:"ignoreP";s:32:"9596a4f2d08470075851748955a3f9be";}i:43;a:2:{s:7:"ignoreC";s:32:"3940a6beddf0256023cf9ddadbc76b45";s:7:"ignoreP";s:32:"3940a6beddf0256023cf9ddadbc76b45";}i:44;a:2:{s:7:"ignoreC";s:32:"1d10a6b184a32f203c83b5e2f6ef4e62";s:7:"ignoreP";s:32:"1d10a6b184a32f203c83b5e2f6ef4e62";}i:45;a:2:{s:7:"ignoreC";s:32:"c386f40906ee4bcf63dee0862daebaa3";s:7:"ignoreP";s:32:"c386f40906ee4bcf63dee0862daebaa3";}i:46;a:2:{s:7:"ignoreC";s:32:"626415472c59d79a3f52a6b2fdc8751b";s:7:"ignoreP";s:32:"626415472c59d79a3f52a6b2fdc8751b";}i:47;a:2:{s:7:"ignoreC";s:32:"b111197a312eb26ecac275370ce5e3f0";s:7:"ignoreP";s:32:"b111197a312eb26ecac275370ce5e3f0";}i:48;a:2:{s:7:"ignoreC";s:32:"a1fd90da4a4360da35b44aab594dcab5";s:7:"ignoreP";s:32:"a1fd90da4a4360da35b44aab594dcab5";}i:49;a:2:{s:7:"ignoreC";s:32:"f4e84e9b4c79136cad59e3ffe8071c9a";s:7:"ignoreP";s:32:"f4e84e9b4c79136cad59e3ffe8071c9a";}i:50;a:2:{s:7:"ignoreC";s:32:"e3c4dffcbdad5a95828f325e872a6043";s:7:"ignoreP";s:32:"e3c4dffcbdad5a95828f325e872a6043";}i:51;a:2:{s:7:"ignoreC";s:32:"c27bb913883f6bfa2fe1c7ca31a8b0c0";s:7:"ignoreP";s:32:"c27bb913883f6bfa2fe1c7ca31a8b0c0";}i:52;a:2:{s:7:"ignoreC";s:32:"d68848314bb73865f4962e788e549ae9";s:7:"ignoreP";s:32:"d68848314bb73865f4962e788e549ae9";}i:53;a:2:{s:7:"ignoreC";s:32:"6652f1bb66800326279f014d1cf852a0";s:7:"ignoreP";s:32:"6652f1bb66800326279f014d1cf852a0";}i:54;a:2:{s:7:"ignoreC";s:32:"d7ff8364adde468d382764fe6ac0bda9";s:7:"ignoreP";s:32:"d7ff8364adde468d382764fe6ac0bda9";}i:55;a:2:{s:7:"ignoreC";s:32:"b8cfe790e72270680b2fe97be89d9759";s:7:"ignoreP";s:32:"b8cfe790e72270680b2fe97be89d9759";}i:56;a:2:{s:7:"ignoreC";s:32:"b2a6f6f92e42d8f4ab14367da880ff35";s:7:"ignoreP";s:32:"b2a6f6f92e42d8f4ab14367da880ff35";}i:57;a:2:{s:7:"ignoreC";s:32:"04d7f66ea171329dad49189cea781501";s:7:"ignoreP";s:32:"04d7f66ea171329dad49189cea781501";}i:58;a:2:{s:7:"ignoreC";s:32:"3c55deaca04d8a7ee098168b493cd48f";s:7:"ignoreP";s:32:"3c55deaca04d8a7ee098168b493cd48f";}i:59;a:2:{s:7:"ignoreC";s:32:"9b97c223093e926b0e4602fdee32b31d";s:7:"ignoreP";s:32:"9b97c223093e926b0e4602fdee32b31d";}i:60;a:2:{s:7:"ignoreC";s:32:"58b6bf7548d0887287cd67936aa4ef5f";s:7:"ignoreP";s:32:"58b6bf7548d0887287cd67936aa4ef5f";}i:61;a:2:{s:7:"ignoreC";s:32:"2726f36d7223e063b6385e9e918f2b72";s:7:"ignoreP";s:32:"2726f36d7223e063b6385e9e918f2b72";}i:62;a:2:{s:7:"ignoreC";s:32:"bc5078cc82ba853c7b8474d261d43519";s:7:"ignoreP";s:32:"bc5078cc82ba853c7b8474d261d43519";}i:63;a:2:{s:7:"ignoreC";s:32:"a5a5b8f298a92174d75505da0d9f875b";s:7:"ignoreP";s:32:"a5a5b8f298a92174d75505da0d9f875b";}i:64;a:2:{s:7:"ignoreC";s:32:"d22c71398c419a428b0a89a195b67f9f";s:7:"ignoreP";s:32:"d22c71398c419a428b0a89a195b67f9f";}i:65;a:2:{s:7:"ignoreC";s:32:"b55bb2fcf466419ae5661be69f407072";s:7:"ignoreP";s:32:"b55bb2fcf466419ae5661be69f407072";}i:66;a:2:{s:7:"ignoreC";s:32:"94b6b40f1537a01fa4ec15dae717f6a0";s:7:"ignoreP";s:32:"94b6b40f1537a01fa4ec15dae717f6a0";}i:67;a:2:{s:7:"ignoreC";s:32:"73a12e3811479cf25d122d08089a26af";s:7:"ignoreP";s:32:"73a12e3811479cf25d122d08089a26af";}i:68;a:2:{s:7:"ignoreC";s:32:"70e3c9368a363ac81743ea51bd9306ba";s:7:"ignoreP";s:32:"70e3c9368a363ac81743ea51bd9306ba";}i:69;a:2:{s:7:"ignoreC";s:32:"07e955e5a603eb7cc8e29062131142c2";s:7:"ignoreP";s:32:"07e955e5a603eb7cc8e29062131142c2";}i:70;a:2:{s:7:"ignoreC";s:32:"5505651cfe6d3ed43be6ac28733c9920";s:7:"ignoreP";s:32:"5505651cfe6d3ed43be6ac28733c9920";}i:71;a:2:{s:7:"ignoreC";s:32:"b375a7717be86f872cb63b964c338ee6";s:7:"ignoreP";s:32:"b375a7717be86f872cb63b964c338ee6";}i:72;a:2:{s:7:"ignoreC";s:32:"4ee2993330ea02bc01a320913838521e";s:7:"ignoreP";s:32:"4ee2993330ea02bc01a320913838521e";}i:73;a:2:{s:7:"ignoreC";s:32:"8c5046755287243f51cf3068078fea09";s:7:"ignoreP";s:32:"8c5046755287243f51cf3068078fea09";}i:74;a:2:{s:7:"ignoreC";s:32:"1b9b85b3c579060836cfa99073309ff5";s:7:"ignoreP";s:32:"1b9b85b3c579060836cfa99073309ff5";}i:75;a:2:{s:7:"ignoreC";s:32:"f51b745f3076b1a620d12b7bc35ecdb1";s:7:"ignoreP";s:32:"f51b745f3076b1a620d12b7bc35ecdb1";}i:76;a:2:{s:7:"ignoreC";s:32:"e87f77c033d2008da28247911e1b66a0";s:7:"ignoreP";s:32:"e87f77c033d2008da28247911e1b66a0";}i:77;a:2:{s:7:"ignoreC";s:32:"b9f0bfbac1406fe7ae6994a918fbfb49";s:7:"ignoreP";s:32:"b9f0bfbac1406fe7ae6994a918fbfb49";}i:78;a:2:{s:7:"ignoreC";s:32:"8932dfbb9fbd18f3424fe7a4c5b2f9ba";s:7:"ignoreP";s:32:"8932dfbb9fbd18f3424fe7a4c5b2f9ba";}i:79;a:2:{s:7:"ignoreC";s:32:"da647dca4a87afe614c2e8e7c09a6aaa";s:7:"ignoreP";s:32:"da647dca4a87afe614c2e8e7c09a6aaa";}i:80;a:2:{s:7:"ignoreC";s:32:"369ca0bbdb58f2269e60485526a585e2";s:7:"ignoreP";s:32:"369ca0bbdb58f2269e60485526a585e2";}i:81;a:2:{s:7:"ignoreC";s:32:"e0e87f9236d2a57d91ef626e7face4f4";s:7:"ignoreP";s:32:"e0e87f9236d2a57d91ef626e7face4f4";}i:82;a:2:{s:7:"ignoreC";s:32:"fd8b24935e5e28270d494161f45661ab";s:7:"ignoreP";s:32:"fd8b24935e5e28270d494161f45661ab";}i:83;a:2:{s:7:"ignoreC";s:32:"9a5682b3117487ae965c653227732abf";s:7:"ignoreP";s:32:"9a5682b3117487ae965c653227732abf";}i:84;a:2:{s:7:"ignoreC";s:32:"017111a3e1592c10fad9851ebd3785ae";s:7:"ignoreP";s:32:"017111a3e1592c10fad9851ebd3785ae";}i:85;a:2:{s:7:"ignoreC";s:32:"c106fd23c456e058b24f243655d46b48";s:7:"ignoreP";s:32:"c106fd23c456e058b24f243655d46b48";}i:86;a:2:{s:7:"ignoreC";s:32:"206d8a2a0375a302544bcee84c34411d";s:7:"ignoreP";s:32:"206d8a2a0375a302544bcee84c34411d";}}', 'no'),
('email_summary_dashboard_widget_enabled', '1', 'yes'),
('email_summary_enabled', '1', 'yes'),
('email_summary_excluded_directories', 'wp-content/cache,wp-content/wflogs', 'yes'),
('email_summary_interval', 'weekly', 'yes'),
('enableRemoteIpLookup', '1', 'yes'),
('encKey', 'c2dfe834afb306a1', 'yes'),
('fileContentsGSB6315Migration', '1', 'yes'),
('firewallEnabled', '1', 'yes'),
('hasKeyConflict', '0', 'yes'),
('howGetIPs', '', 'yes'),
('howGetIPs_trusted_proxies', '', 'yes'),
('howGetIPs_trusted_proxy_preset', '', 'yes'),
('ipResolutionList', '{"cloudfront":{"name":"Amazon CloudFront","ipv4":["120.52.22.96\\/27","23.228.222.0\\/24","205.251.249.0\\/24","180.163.57.128\\/26","23.228.220.0\\/24","204.246.168.0\\/22","111.13.171.128\\/26","18.160.0.0\\/15","205.251.252.0\\/23","54.192.0.0\\/16","204.246.173.0\\/24","54.230.200.0\\/21","120.253.240.192\\/26","23.234.192.0\\/18","116.129.226.128\\/26","130.176.0.0\\/17","3.173.192.0\\/18","108.156.0.0\\/14","99.86.0.0\\/16","13.32.0.0\\/15","120.253.245.128\\/26","13.224.0.0\\/14","70.132.0.0\\/18","15.158.0.0\\/16","111.13.171.192\\/26","13.249.0.0\\/16","18.238.0.0\\/15","18.244.0.0\\/15","205.251.208.0\\/20","3.165.0.0\\/16","3.168.0.0\\/14","65.9.128.0\\/18","130.176.128.0\\/18","23.228.221.0\\/24","58.254.138.0\\/25","205.251.206.0\\/23","54.230.208.0\\/20","3.160.0.0\\/14","116.129.226.0\\/25","23.91.0.0\\/19","52.222.128.0\\/17","18.164.0.0\\/15","111.13.185.32\\/27","64.252.128.0\\/18","205.251.254.0\\/24","3.166.0.0\\/15","54.230.224.0\\/19","71.152.0.0\\/17","216.137.32.0\\/19","204.246.172.0\\/24","205.251.202.0\\/23","18.172.0.0\\/15","120.52.39.128\\/27","118.193.97.64\\/26","3.164.64.0\\/18","18.154.0.0\\/15","3.173.0.0\\/17","54.240.128.0\\/18","205.251.250.0\\/23","180.163.57.0\\/25","52.46.0.0\\/18","3.174.0.0\\/15","52.82.128.0\\/19","54.230.0.0\\/17","54.230.128.0\\/18","54.239.128.0\\/18","130.176.224.0\\/20","36.103.232.128\\/26","52.84.0.0\\/15","143.204.0.0\\/16","144.220.0.0\\/16","120.52.153.192\\/26","119.147.182.0\\/25","120.232.236.0\\/25","111.13.185.64\\/27","3.164.0.0\\/18","3.172.64.0\\/18","54.182.0.0\\/16","58.254.138.128\\/26","120.253.245.192\\/27","54.239.192.0\\/19","18.68.0.0\\/16","18.64.0.0\\/14","120.52.12.64\\/26","24.110.32.0\\/19","99.84.0.0\\/16","205.251.204.0\\/23","130.176.192.0\\/19","23.228.223.0\\/24","52.124.128.0\\/17","204.246.164.0\\/22","13.35.0.0\\/16","204.246.174.0\\/23","3.164.128.0\\/17","3.172.0.0\\/18","36.103.232.0\\/25","119.147.182.128\\/26","118.193.97.128\\/25","120.232.236.128\\/26","204.246.176.0\\/20","65.8.0.0\\/16","65.9.0.0\\/17","108.138.0.0\\/15","120.253.241.160\\/27","3.173.128.0\\/18","64.252.64.0\\/18","13.113.196.64\\/26","13.113.203.0\\/24","52.199.127.192\\/26","57.182.253.0\\/24","57.183.42.0\\/25","13.124.199.0\\/24","3.35.130.128\\/25","52.78.247.128\\/26","13.203.133.0\\/26","13.233.177.192\\/26","15.207.13.128\\/25","15.207.213.128\\/25","52.66.194.128\\/26","13.228.69.0\\/24","47.129.82.0\\/24","47.129.83.0\\/24","47.129.84.0\\/24","52.220.191.0\\/26","13.210.67.128\\/26","13.54.63.128\\/26","3.107.43.128\\/25","3.107.44.0\\/25","3.107.44.128\\/25","43.218.56.128\\/26","43.218.56.192\\/26","43.218.56.64\\/26","43.218.71.0\\/26","99.79.169.0\\/24","18.192.142.0\\/23","18.199.68.0\\/22","18.199.72.0\\/22","18.199.76.0\\/22","35.158.136.0\\/24","52.57.254.0\\/24","18.200.212.0\\/23","52.212.248.0\\/26","13.134.24.0\\/23","13.134.94.0\\/23","18.175.65.0\\/24","18.175.66.0\\/24","18.175.67.0\\/24","3.10.17.128\\/25","3.11.53.0\\/24","52.56.127.0\\/25","15.188.184.0\\/24","51.44.234.0\\/23","51.44.236.0\\/23","51.44.238.0\\/23","52.47.139.0\\/24","3.29.40.128\\/26","3.29.40.192\\/26","3.29.40.64\\/26","3.29.57.0\\/26","18.229.220.192\\/26","18.230.229.0\\/24","18.230.230.0\\/25","54.233.255.128\\/26","56.125.46.0\\/24","56.125.47.0\\/32","56.125.48.0\\/24","3.231.2.0\\/25","3.234.232.224\\/27","3.236.169.192\\/26","3.236.48.0\\/23","34.195.252.0\\/24","34.226.14.0\\/24","44.220.194.0\\/23","44.220.196.0\\/23","44.220.198.0\\/23","44.220.200.0\\/23","44.220.202.0\\/23","44.222.66.0\\/24","13.59.250.0\\/26","18.216.170.128\\/25","3.128.93.0\\/24","3.134.215.0\\/24","3.146.232.0\\/22","3.147.164.0\\/22","3.147.244.0\\/22","52.15.127.128\\/26","3.101.158.0\\/23","52.52.191.128\\/26","34.216.51.0\\/25","34.223.12.224\\/27","34.223.80.192\\/26","35.162.63.192\\/26","35.167.191.128\\/26","35.93.168.0\\/23","35.93.170.0\\/23","35.93.172.0\\/23","44.227.178.0\\/24","44.234.108.128\\/25","44.234.90.252\\/30"],"ipv6":["2600:9000:3000::\\/36","2600:9000:f600::\\/39","2600:9000:f540::\\/42","2409:8c00:2421:300::\\/56","2600:9000:f000::\\/38","2600:9000:f500::\\/43","2600:9000:ddd::\\/48","2600:9000:f800::\\/37","2600:9000:f400::\\/40","2600:9000:f538::\\/45","2600:9000:5380::\\/41","2600:9000:1000::\\/36","2600:9000:2000::\\/36","2400:7fc0:500::\\/40","2600:9000:4000::\\/36","2600:9000:fff::\\/48","2409:8c00:2421:400::\\/56","2404:c2c0:500::\\/40","2600:9000:5308::\\/45","2600:9000:f534::\\/46","2600:9000:f520::\\/44","2600:9000:5320::\\/43","2600:9000:5310::\\/44","2600:9000:f580::\\/41","2600:9000:5340::\\/42","2600:9000:eee::\\/48","2600:9000:5200::\\/40"],"timestamp":1768784884},"ezoic":{"name":"Ezoic","timestamp":1698348469,"ipv4":["52.20.63.25","3.225.202.138","3.217.200.190","54.212.71.227","52.12.170.68","34.218.21.81","3.7.90.144","13.127.240.219","18.139.6.69","18.140.184.0","3.106.6.164","3.106.176.6","13.237.131.67","15.222.77.144","15.222.108.52","18.157.131.187","18.157.105.182","3.126.25.160","34.248.174.237","52.16.85.139","34.255.61.232","15.236.165.82","15.236.137.228","15.236.166.30","18.228.20.129","18.228.107.195"],"ipv6":["2600:1f10:4c55:e200::\\/56","2600:1f13:393:600::\\/56","2406:da1a:e10::\\/56","2406:da18:9d0:1400::\\/56","2406:da1c:58a:e100::\\/56","2600:1f11:f39:6f00::\\/56","2a05:d014:776:a600::\\/56","2a05:d018:dd:7800::\\/56","2a05:d012:4d8:6800::\\/56","2600:1f1e:342:2f00::\\/56"]},"quic-cloud":{"name":"Quic.cloud","timestamp":1768802401,"ipv4":["102.221.36.98","103.106.229.82","103.106.229.94","103.146.63.42","103.152.118.219","103.152.118.72","103.164.203.163","103.167.151.84","103.72.163.222","103.75.117.169","104.244.77.37","108.61.158.223","108.61.200.94","109.248.43.195","135.125.104.145","136.243.106.228","139.84.230.39","141.164.38.65","141.227.158.131","144.202.90.7","146.88.239.197","147.78.0.165","147.78.3.161","149.28.136.245","149.28.47.113","149.28.85.239","15.204.106.41","15.204.231.24","15.235.180.91","15.235.181.227","152.53.162.246","152.53.167.143","152.53.168.39","152.53.169.106","152.53.36.14","152.53.38.14","154.205.144.192","155.138.221.81","156.67.218.140","158.51.123.249","162.254.117.80","162.254.118.29","163.182.174.161","163.47.21.168","164.52.202.100","167.71.185.204","167.88.61.211","170.249.218.98","173.234.26.74","176.9.114.118","178.17.171.177","178.22.124.251","178.255.220.12","18.192.146.200","185.116.60.231","185.116.60.232","185.126.237.51","185.212.169.91","185.228.26.40","185.231.233.130","185.53.57.40","185.53.57.89","188.172.228.182","188.172.229.113","188.64.184.71","190.92.176.5","191.96.101.140","192.248.156.201","192.248.191.135","192.99.38.117","193.203.191.189","194.36.144.221","195.137.220.243","195.231.17.141","199.247.28.91","199.59.247.242","201.182.97.70","209.124.84.191","209.208.26.218","211.23.143.87","213.159.1.75","213.183.48.170","213.184.85.245","216.128.179.195","216.238.104.48","216.238.71.13","23.160.56.125","23.95.72.16","31.131.4.244","31.22.115.186","31.40.212.152","37.120.163.165","38.114.121.40","38.54.30.228","38.54.79.187","38.60.253.237","40.160.225.31","40.160.241.195","41.185.29.210","41.223.52.170","45.124.65.86","45.248.77.61","45.32.123.201","45.32.183.112","45.32.203.144","45.32.67.144","45.32.77.223","45.63.67.181","45.76.252.131","45.77.148.74","45.77.165.216","45.77.51.171","46.250.220.133","49.12.102.29","5.134.119.103","51.158.202.109","51.161.196.212","51.81.33.156","51.83.237.154","51.89.11.45","54.36.103.97","57.129.146.219","57.131.30.109","61.219.247.87","61.219.247.90","64.176.165.8","64.176.4.251","64.227.16.93","65.108.104.232","65.109.39.175","65.20.76.133","65.21.81.51","66.42.124.101","66.42.75.121","67.219.99.102","69.50.95.250","70.34.206.56","74.91.25.147","79.172.239.249","81.31.156.245","81.31.156.246","83.138.12.246","86.105.14.231","86.105.14.232","89.147.110.130","89.58.38.4","91.148.135.53","91.201.67.121","91.228.7.67","92.118.205.75","94.75.232.90","95.179.145.87","95.179.245.162","95.216.116.209"],"ipv6":[]}}', 'yes'),
('ipResolutionListHash', '89b3016a0a279a97b6bb4243508a86b77bbb3bb40ed4b236d73a8ecad21b8746', 'yes'),
('isPaid', '', 'yes'),
('keyType', 'free', 'yes'),
('lastAdminLogin', 'a:6:{s:6:"userID";i:1;s:8:"username";s:5:"omsri";s:9:"firstName";s:0:"";s:8:"lastName";s:0:"";s:4:"time";s:28:"Mon 21st August @ 04:18:45AM";s:2:"IP";s:12:"60.53.46.181";}', 'yes'),
('lastAttackDataSendId', '2216', 'yes'),
('lastAttackDataSendTime', '1768680196.342247', 'yes'),
('lastAuditEvents', 'a:20:{i:0;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1770186406;}}i:1;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1770186376;}}i:2;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1769186012;}}i:3;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1766361151;}}i:4;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1766274637;}}i:5;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1766075312;}}i:6;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1765886383;}}i:7;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1765225199;}}i:8;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1764891934;}}i:9;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1764811151;}}i:10;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1764721551;}}i:11;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1764606633;}}i:12;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1763940387;}}i:13;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1763766467;}}i:14;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1763398438;}}i:15;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1762989600;}}i:16;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1762470857;}}i:17;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1762470833;}}i:18;a:1:{i:0;a:2:{i:0;s:18:"site.update.plugin";i:1;i:1762384342;}}i:19;a:1:{i:0;a:2:{i:0;s:31:"site.update.automatic-completed";i:1;i:1761935045;}}}', 'yes'),
('lastBlockAggregation', '1769560554', 'yes'),
('lastBruteForceDataSendTime', '1769188378.770600', 'yes'),
('lastDailyCron', '1769560552', 'yes'),
('lastDashboardCheck', '1769560553', 'yes'),
('lastEmailHash', '1749832334:1c6dac75f2557d3871970bc9cbef2bf8', 'yes'),
('lastFalsePositiveSendTime', '', 'yes'),
('lastNotificationID', '1827', 'no'),
('lastPermissionsTemplateCheck', '1771390299', 'yes'),
('lastQuickScan', '1765887742.2336', 'yes'),
('lastScanCompleted', 'ok', 'yes'),
('lastScanFailureType', '', 'yes'),
('lastScheduledScanStart', '1769560572', 'yes'),
('licenseType', 'free', 'yes'),
('liveActivityPauseEnabled', '1', 'yes'),
('liveTrafficEnabled', '0', 'yes'),
('liveTraf_displayExpandedRecords', '0', 'no'),
('liveTraf_ignoreIPs', '', 'yes'),
('liveTraf_ignorePublishers', '1', 'yes'),
('liveTraf_ignoreUA', '', 'yes'),
('liveTraf_ignoreUsers', '', 'yes'),
('liveTraf_maxAge', '30', 'yes'),
('liveTraf_maxRows', '2000', 'yes'),
('loginSecurityEnabled', '1', 'yes'),
('loginSec_blockAdminReg', '1', 'yes'),
('loginSec_breachPasswds', 'admins', 'yes'),
('loginSec_breachPasswds_enabled', '1', 'yes'),
('loginSec_countFailMins', '240', 'yes'),
('loginSec_disableApplicationPasswords', '1', 'yes'),
('loginSec_disableAuthorScan', '1', 'yes'),
('loginSec_disableOEmbedAuthor', '0', 'yes'),
('loginSec_enableSeparateTwoFactor', '', 'yes'),
('loginSec_lockInvalidUsers', '0', 'yes'),
('loginSec_lockoutMins', '240', 'yes'),
('loginSec_maskLoginErrors', '1', 'yes'),
('loginSec_maxFailures', '20', 'yes'),
('loginSec_maxForgotPasswd', '20', 'yes'),
('loginSec_requireAdminTwoFactor', '0', 'yes'),
('loginSec_strongPasswds', 'pubs', 'yes'),
('loginSec_strongPasswds_enabled', '1', 'yes'),
('loginSec_userBlacklist', '', 'yes'),
('longEncKey', '8d8d6b1633ec5e131d8119de2a161c161e31fded35068eb1b98f3e7107c45310', 'yes'),
('lowResourceScansEnabled', '0', 'yes'),
('lowResourceScanWaitStep', '', 'yes'),
('malwarePrefixes', '\0\0\0\0\0\0y8\0ٗΝ;˽sIYJBR$RI%QDZHJ!I+JHi!*)EE+&~yy33>ǌ\no>^''_wBx1uO\Z %e\r?EC)M>8)}uׄ-X1ffm\0\0\0ra?\0xG7\0?)`\04DK@bH\0Y+ gZ\0p\Z\0@1Pt180\0v6. );ռ\Z@U	{\0u''@p_F\\q4\0Z.=_\r0ht&:A!\0]߀\n@7\0b?g];al`,[0``x,0`00a$`d0ZU\\\0>K>&)/S5);0r=	7?`\\C`9*XXՐd`~`6LXK֗_W6$`tt/<$p87O\0`m0m.V!kH,\ZHf~x89u6~\\\\`w<:`^s0\0,?\0,H{\r,8,(N\0\\Y\0,x,x\0cOӀg#`-u७xxs/]\0,%|l0,Yg8`р]C''v\0k܀\0& `O,:	X&"@`H h4 8Z܁s`I\Z0XӺٛA@XPv/6"J b\Z "k\0X:\0Q U5dDG]\06=]lnX[V@.E$.-ض,; ~j >Nu灄@B#8H7H|;؁.v+$ i?s +\n	؍,v4{f7go`>w`^`_N`R<)A=qR M6f0\nH/\02Kg; c"9P0%kӢ@D g= 3pdQ!p4pY@zs pN\Z\nt_Tp[B@Ipm\Z=(n1\ZY\Z{{%''F|\0*^&)@(2(OR˧w&W\0`m=P2@k@F:P}|7:S[9Z]rә\05Gf6\0|}E$p@xxx82/4htxt8S4πcÀQG^@6y <xaj\rxi9x9Y	^^Kږmb൷=:$x1x;r)Юc\r	|hK:́O|ϻu/o]#[?@@=\r_ǾU7c"oN)0KK 4M?Ч |c@ĺDh-/1''qĝxx6$/E.8(Z;]ˢ@@k@$P2[߀2hPu:HDT3@f''{ GܺP\0UAUR\0~P-En8Uj饁ZZ|AM~!Uj?j?{*\r:A-vpp)8DWZ;@Wh84-zq	8l0p4N\r_[\rp?8X\Z}M\0]A;A	@8.8\Z\\}Z м{*gpb8\0h9v>hh5JN\0@kh\rh}lmN^mAoE/@;~U8i?>&/''?O\0|D@@''pZz!<8=]#~3g3G35\r+GYnn_A!8XyE\r$%!o==Ꟁgp\0/yhApQ\ZK:R..n烾K=GKTkeWd+OW|7]W>G0آ4W]\0WX	{0?^Xuǀ#߂!Mu+>oQ>3F4\0^5	>	F>n\\]< \r\npLp+Vf=u7m2p[Wpۉ}''0nb\0I`,p;Ll6GX)&\n&?w}H{{=\0߯*Sx-e`ڑ+`r0\r>hxpD0[=*p灇^\0RlUݞ\0\0s1c/U`"38_R\n̛\0512 y6X,<x9*XX,`3%OMY+s<&<\r,60K@0<0lXe3JB0+.+g)7gxyE\\H+FEWo?E<kC9u5,ޮowuw^Ƹ''Р	>\nj\0}qw=`S=-{(''oi$l-#g/_$//Ԃ+W?u\0	sߵz{^Cct<1<\0vmONsۧO/ ~U>}8X	v]:X\nv{D{N?1bo2_WvWu6\Z#?࿲0k;W; 47Cp #\n{0\0v|!b9.y l1m#!r''\Z\n!ѼXH%:+!驫[Hfɾ\\SŐ-D\ri''!h)1Rj/w, ά!?H0	VG!a$49 wA4_HG{O\r\rt<{\r˟}Wwo@CAܞA|AJa Â+Ј5Yrh#\Z\n2%!Fi-FF''L4Bcd%И+ 3dȜ"]-8$Ȳp*dYBV@''C,t $dmMX k ErHQBsSiِhڪ7ȹ;l\0\0M''Ch.ճr]=rr}5*=$4O_<	-<C $IxAs]4hBo3h=Z4|=+Sȫv''yZCK<AK%ի!! x}\Z  7wOfB+\r@+ch垅ʻáo@+{CP`;h;Z5Zդ"h5v7VB/Ck\ZPH(t:_d(!;~hR	,	5brnAVB+>A[C[w|,=I$03J9\0%\nmjЎ(ɴJ%m/%\n%_vM\nqOA)g_@)/ڠTq%tVO|\0L	\neAfYP(9Opy(kHkCG8tditȓ(g{k	_\r?~ʷ̀#G@CwC''_		YЉ[*Zj}	BCET9*>*	Ag\n~CŊPq*?*)̂JNι*swCcʠp|7tT2TAWA3%/	t	UM_Uqn]]MBGk	kC5\rPGtscLX9\0i: :׮ݏzj=5n''BO@@uPwj3%Yk\rzMzmrԾ9zqeԑiu\nuz:ʠOZ~MЗoзFNr	u{_ks3zPoUsmgaWA<R>{пlFa4q0zm`Fuw`&/Är܂I`L(	[KM%''Kɰ,\ne?a:*_F7`eV&0C`Ns`˰qXXΰt5,4\ZdXCk:"u|&:mPx}>!]{C0<6t><\04\09\r`Ol\\k	|MY^$6wh-V6k`Ex|=غlS4m6¶_Rėn>~!<9v};\\4\rSoiӪ_ӞR(y\rعB?]*q	gN\r0gfngnR`bxN<P=w/ج=`]xx>xѹW?x}x[.|t}F$qx\r0PxCexxYjxY+OoU	\rKag\r\0^Yp	ژÁk\Z`>޸^=E}Aap[mሳYpy1	#oQ3]8t11l!ǂ;x[(x6sy\0ǏW-__;hxǑpҴhx''>v#y;8x_{TISqkC74[N[_no[\rs78c6g	gfK:#M>Q>z>f>LyGpޣp	"\n>p>>	,;§N]YE"H̰ٚmK..Yu.9>r|<.cS\rp!pm\\u!|1Z%&g.|\rµpv-#62ckqku.sWe?q<m@>n7oÏVMZǧOfͻg5w~Q9n=L/=W+W?UH^]-߫w6XF;~)o5x*oMgwr\roww?6{\Z=s1ý:˫_#_''?^K#_p?[<\0>"@n>7So#h}=D^q!D<9\0ND$!/R9!&MDu$BO#JaL}؊poG_ sWNDQGDxv\nѲhE ZmLDn_h\rD GtCt~5"ŝoDDG1{NF>@!!1\\w1\n@֚"F}v蟦}bڸ''2f>bVeK& ^o]"u''2[jX*G#g+ub	%Ґu}\\daȤc+{{	2eq{q(F!N:iayCc*|<q>qrq9}<^	2Պ%Y[713\Z2j"2B\Z2)23D﹇̯Z,x!a%gsx,ܾY!^o@#KjZ	R}CdUC2h$gA +NBUYH*Yٽ	\\	FmU?U4(ІǝEOBVEV7CLđ5G	)XN[֤#KA$Zdnnsd"YTl\0h$:]qqG6Ȗ)ȶÑm)xj$$,Z$$$Ew7J$,$\rsٹ|"{!{uW {#{?mF]@Sϐ>  )")\ZERCR7"" #i[ u$$sxиa.pb3uE: ٽ{޻ȱH6=!ybJ9y9YmiEhrr\0r&\n9S9k9;3rR<)EJ,s}<R:7R>P͡gHD8rI\\?\Z<B.!W^k# w*&*:aR%NmDjGjn#7:JZHHo䦤َ !QH]1r/[{''r-4#U"5H)G{ȓ7{ޅHȳ,Ke$1¿yyyE!mH8\Ze&NykyywyꁴK;H{m?8C\\v=D:_"V|C>@>8B,[|)B@.B|ьF~h ހR7-4{>z}U@&; }KH3	_po(''\nu:	Eʛ(\ZEk(tBq(YEŢش?ʮODB3PF/e>c(ېr#PpTsd5ܨA<~Pq*T/2ߠzPRT7?F٨Aj-BCGOGIq:lLPfQCPB-]j5:":7"j\Z@\\Va7{e脕5cQ}cщ>N޲ǡuPǙCQ:Tgixt=u)B]ζӱ2tz=x:Ctɖn[e;:Ξzu{	S΍[뚌|.0z {zT.=\rђ>Eo6[rkDW4EЕ+=+`te>ڄJnDգo/;!cסޛѰ''4|G,\Z]k]?-!x\ZI8''E7\Zi.B7E7/1hlc95e\Z*G_	S_/[Sѝ5hLc4%CwnE\r>}7no5wM1@SmBSXBSGѴ}Uhz0Vf|f@3բl|#\nѬ1uh֭hV4gM@s"МX4e(a$zd4-E(F󲖡3t|h~4=qFOCOm@X-ЎEƬCNFOBO{FO?$%ZB0L\rZt-u-+G/eW\\޷UUaNh5rF+kk%{k_XzbZk֮qBoR^zv(Κ}}Wz?&\0}([>\\>hIa6GhmT>GuS3}Vb씢-wG9zOr"5}5}e݇Z}}=	}=Q(nrm\ZmcOtED?G;lG/c,v}B?߃~<\Z~iFjMF_DFF\rhuȣݣCsў/ץFtBC!STo֍G@3\0RO0\ZcX{_~?\r#]0;vDyLl}0lLb`Ibw1نQyqS\Zĸ32/?jbNz-L}SaSO5ibU0	Ssln{ Ӄ0?1WIHSlhB"6,~\r6[fZ\r/_*F[O5/ ̴&c/k{663\Z[gTY,1lLl|-6a	f3/f3f˿l1ۨ$66iYMYM)9ama7Ci6;2sHa?،#Y5 &ܨcn̝sgbs+ߞؼ7ؼo?6q)\0-h<as1=gR[SyŃa%?`>Kea&]b+z!tލ|5|q|{[5e4:\\g$Bta!XLª`gᳱuغu؆ǽ؆g\r_]XXXtq>܄mmmN8m>t۲=ǶfZI\rXxp=KmaU*x;K%ݷvŒYlbplϔ5؞ؾIkLK=i.''`ðX4,3x\rvh찏?e˺nebi4c܃;N-:c<t''婶byw\r|h!v;	N?\nDc-t`EqXu.&3ؙu,VJǊ-!XɡXIe\\Ft9+Ji꿼%Du!%V*n*KZإo[zؕ/Xen;]f?n`mOk''7b\rcחbo.\rjb={\rU\rc؍;؍X-7\r}	]=!:Z%ѵX9X%5B_'']Xs%lt,<kV2ZX3bc/Wb//Ea-0[7wg}o>ľ*Xj+{2],~GҰQY/,\\vZ?N#HoB,܇;q\0G<q\\''M''q	\\rk.ҟSqhjYhӊsquF\\(݂kt\Zcmk߶5::p\rJ|>d5>d[\\Rz۾z{p6~]iB|>VGtōq~nnrt=>*<>D%>MOt`]8ռ͇|m,nm[؄p|l;|z\n<Oŭnu=w8v''Tmln6z[M-n	]7vzpw`k|JO?w[;M;Mq#\rԘd|jZ݅O;]K>0n0ggE\0O|Vw%>;\Z>7n,>5>_e/y[/؏/|\n_qz{u^\Z0vƽ/V>ǃqOKR6|2\n)Skp''^ʐx >_%_5z	i^p_p4:}_ãOj{3Ou:u:ay|	xuxd<xYaG7\ZN7޿Gs?1&5xg<&y\Zio|ee46|qxj|zi(m	^4t<a<6|GG<5s|g[%;OuW2:2h5|/ﻢ?O	SҏZTO-xz&~~0x%1Eg,3	OxfC<~ȁ-XdjO/ŏxŏ\\{y4E5۞ ʇɠ9T/?/Z\\?৭wOOiOwƋػxQ]nb"xma_ey?~?	~+|"__v_	Ư,}WjVU%3xx>:~=~m0yc[j\\8519,~SӉߜo෿Xw5;CsCxpk!~oP,8 8e.x*o𦵾xfiT7ݚ71,X??؅:l7[/q_xu-N\0qױq)t[W.ߗ<?<;|Ymz/϶3gS/Mg7_{,ook]\Z.gw6êqfk{7xoa''i]>Պ~х?&[߁x_;*@1_r|A_G0Մ\0K)zw@?@v0N?Bh04''-0!$d)Urw$&;Clg7p]|	>b/*^Pe00y}\ZCh%7ڃf_w`b"1xbh11DaC}%\ZD,aP3ZVSE	" ;NxK$#i[bH#CxUDv01!FFѫ>iHbEbLT''aDX{NX|N~B|K/y"a9O|OX~]IX|$񖫉			/1aA})%	΄nbʃ/ĔvC%ILwSSWN6#ӷQĴ	g넳+\\H''\\FU.%,1#p=1h&fE"Y''r	7I۳ۛɀpv"܏%	ĜpbT[	6S/t]Nx$/cX<=XbA,~J,$|W|X*#f KK"t;	")X9d\Z.lHk5ïk̈5	DR#"$fO R:vXKl\\DDWQ?kE-Ħ@bAl>Nl2]1ݿZtضÜN=o&׉DEDd54̄H:<؅&vF#ݏ=6=SL''܈+܉ډ)=Dc688p-qLfHDF#yDzaՏ!8dHr''`k"4i#eܡ''ZoDfs_<8DdcD#DѴD(\n<OugADK(u\\BO7[O''.&.ڏeDWJr''(?辒XM\\|򕨨''.!*)QQuh(Qd`FW7\\p	Q{ً9}q&ekEܺB>BMgNYO܉xCܩ_AMcN''Mk)}wr)`\n⡍-oQ7oL&\ZDC"Q;Ԛh|YL<YA<I< %!-̈gCY9keq%-xA@$xxxyO|\\FDԽEt.J|6#>Ӵoi7lKGt''|Ӊw3DH@opG񻦛ӫE{}?~ӟS>1px.%/H ah.VZ 1q#q/AGWs$	986rS$֏= B8I?#3?d\ZHvh)ɾBy$簞X\\i3:T!)<Oj=!5NZ$R\r59ZI\Zމ$/%"\rRQ ݚ4+''-AHC>4O}\Z9brNrd0r!iIi|c:i|k7i"MF&H2''<si֑c''_%ǥ+IѣH+Xrd9^JKlYO6&m mgoH5D9UM:yI:%1q;HNYDN%MNFN˯#wΩ^KNI׳WIHwc{S#i&LyD)Nέay<g4ҳdą\\dD.*''<H䳤ס}b߿gZWN!}cҵɥ	{ȥ?-eeKI?ă\\fN.@CNhM'']ɀɕO:r䪿`?j#sr\rB\r C"2w2ʜ᧋2"4(|L/%>&וuGLf>O##GFndd/FFS(Kuȍ1h2:y4	#7JnOn*~FnlDƬLƴ-''7;DnNYOƙ"m$Jčdǟ5ɤ_dR73$ddr׶Nr7#&ɳBd-Εd=r9)@fUYdV+n''S<RFc/=\\\rK^}HEk:O˴N\nd+Y$Rk#Ӽ-yD\ZY ~&<!-F`#ynZ"yYC^M!/m''&''˶=''lrJ<|-Y~=y1MNVKZ:䥩/JGd=y`yY=5YIVo!:"%yXf+YSJֺe7N7k[M<${K>pJ''\\t CcaiU{18Ml-&nM.Ko{''kޓO=fY*lO6O Wo!zggg_Ed˟R;6d5|S|=|;||[n!''ۯƐk5=ò0QD~6?D~N~9RJ~[]Fx]Mv?u&{r^h_JW=@Db?-ɿV{Ⱦɿ~(="pUR.dm"TvPDL>"Hlc.z+{k(|8QXFxKh"fZuoD""fע!;4!BDHޝ_"g"a\rEG&F:o;/2~/\ZA4vmhܰѢqwAxH"\Z?\\#6!<Ed'',MM.s9"G"ǖ]Ѵ3ED.D3Df.#ro=&,;shޠyCψryg<NOytZ-(ZTghoF|2)Oȧmchoh\\sъ?"7E+lD+?cEAC/T¾6o.w''Z{VhCPhCц*R^ѦnGQLB9hx(Bx(	>+yRHh4D)!٢Wǋsg>>/0_+-x&:4Ht(c(B()T#dHmDGM\rEG:DG>rn!:(Q;щ(mQhpZQѲzQQP	kDDJFJf΋DD*kEeVʂD凵EgBD3EDWfU&鋮nUD׮]PtnF#,Ɖn~28.݉4YEQvQCRhOQ讨)XT0A8K*zq5+5''E/bE/^NX.jm,zy^z,j)z3hM[\n;4QǖD>/[(BїD䑢gEE]D7x(o}Q&߃6ѿbJ,F&UQ1(&]bQX%K˶eّblX],8-2X1\\?=ż"dXFVGJT<t5P	bCC<|xD\\#{xQ\rcYVYjتC<NUbkPlTl$X</WlJ<@?S;zb6bO.eltf`صP<kUxֳ/b=bb$9]kT=bۗ-^PKFkEK;։WmA_)Ł+~WIūj8tDCg4έfquxMvMcqx\\-qjSq<tC$|	\Zwz4K{!ޖ.ޟũQjiӒkO>Jggi֟#마w_>]\\,>(.*>e(.{G\\ء9nrnĥo։ƒC/}W*Wĉ/{/o._#R+ڔ ;!m-H|qqV[Cķwn9U|w(~P%~chq%''nw7M7|7\nō[M:''`q[73/_4:_ŭ6G-Ƈů7M;ix+ğx)kşdo[]wV{{>6l?:ſX&AK\Z$r	.K%xc	XB> !Z7HHiX""~HD$[%bm=(]0A\n	{Or(Qs d"d2dІ''FƝx[n6^D ]%C?["1<m.NosIb{EbX2ꌣdTQhdd%=$G;I&Jl^Ml]3}dွq''T#B2L4<NtĩadZYĹdF,dfnɬk	I.wK`$d$~CJGUd?bg$KgH_6KIDI<#Y<X$[+Z%Y͐!oLϑ8IV\\Jn''Yg+	z\Z(	zMfed뽒5?%!%a֒$I{G%Iă\nZ,ɺ	h|d\0I6x"umlJ^ml+I&iGHvKOHx{H";do	%JǙHR}HL͐}-PK2Irl$QPrtXrtbLWI\\eܽŀ$i	}7ɉ풂SSHNeސ:Lr!ٙ$>I%n$>*IU%e+$e]\nT\\_RHrm^[o%wxS%u:5]{s%v~XwQ9I%vђےg%#s%ϯH^ yKbIɋˣ%\rݳ=씼,yIﳔ|0|^J>Ŭ|WK>7||&3HmHɷc$otkJzT;3K%?GI~<(m+*xzI\n٭BSl0u]I	iT$KO$KeCRER/I^\\;-՚(ZuKmX:"wtD?ȩ#äF¥&`tK:J!5t̆*kff{R/.WwJǎI:6P:Uj͍$ڴImg6<Hv߂FK''ڏ#V,JS-BS[Jfܗ:eNi\rJg:*uv礳Gq)TJ88K=)C-FH̥ORdԻO)m,]v8P'')&K-\Z0ĤU6KZ&i9i"i{4DV#\r,\rJCuIC#>H^nuF\Z}F:ҨS1^I7IMɔ҄;&H&WJw.]]"mI?ɔ\\֔JWK3͐fՌfߴu =zwI]\\z3i*=5ll}ܺ򃷤cii''T-TZ&!''޻Kzփf;K}uqҺ{pޥpaNfG+"5QƺҦ	''sNJߔ>Qi%i疑ofH_zIێJ_[%}kHvK̗߭~ ؽMy%BiZYK6Xua?T{ni_Ү"eCiFߕ/*!GڏG/2J~<He3s~AK&ID\\.eҀ-2iL~PR/ϥʘrLbdKu?.cۗ3dOq2vLL;vlPt8`tlpcL7Ljllh0D6VxM	rG65>$35>=LY=#[,wZf	JGp|}h|lJ''cH6mlIuled*@[B<D6y,$?>L6''EF9XZ0{vw6bH\Z ÿɖo+m_<d\rͲgddk:uKdd?e3e;ɢɢO6.Ŭ/۲u,0Y(v]g,''e	#e	˶{xwNDTK]Rgzad{\ne}).;Bv ;X";X7D;L''Yv=U#9cV~c{]e>ee\n<ܕ&;c(+\\ ;7gmم0Y	KsWv.PvœUɮjnzdw''ꂞZeϔ=l {<]Dy[,)kt=KY"k!\\e-]Ke!K쥱e -{Y<BxSZ&Q־CgCv]IY.l%V..v{%kdrd}5?Eoe]27|\rFn-GFQ09Np9~RN,''~-nE%\\jeyrqGNXȕl69{\\-I7`">kW5uNx9r{Aܰ|-#o}Ms&GdMM5MKjf?7''Qe,J[g''x[wm,Or1/*w:yLq@>mE*rW?9rkssNF{/\Z*_tY[ܣ''HbܳH(E_(s˾@uZ{K>/5ZxA|B||]N&}<7y9y#y<"|yn|LGQ1Jq<:I_ 4w|t?|X~<nyyvHyr|ׂ]74uSޥS%򃋶ź˳˳og~(>[<H0C~<OGMEcE/+Kgɋ\rS%ez"/G~ixyeyiyub\Z&͆J́[\n6C|ߖ]?a*onʛCM5gfg_[Yem-WۻX;C3U-iOZO˝?}Y>X4#4Z\0 Зzޝ?*{OW.ם.=AeJ!\\\nPP\n_D/Ph=|"Q)Ŕ8`<%$!JXJl)ٵ9Jn6@\r(AQ)HGQSӧC(.ŵPR\\K#(MbJ˚(7MXRCPC\\<NθB}I3)}`\0~FSCQRjX=j/k0{655b5Q 5\ZG|]CMM(K[(?5es\Ze\ZZK~F1\n%ٵT|yb=H=}\Zg\Zb+5nS?5n>j\reuv5~e̖lć(;]X85e25eLM	C9YH9lzSʩrEQ.))tEW_)<aCx~f-:H	{)7&mr?6ro79@_KDPRCKy-]R^"))_p7廗nF-+EfP~wZ?((\n9*njTb*p<j\ZjrjuR\rj<\n;KP㩵Op𣛊,KE^ZLm2vNQѷMP>o6wRNR[&(-s8X*tc9XDZATҦ[T#uʞu&ۥ={"@Dظ:pԗJKϒP鯏S\rSQ#⨃Y?MTEe8Σ0=L:#6PzaT~\\JoN0:zak:1$:q7:;:Ǎ*z::c!Ux:6:s+u@yR%ڨeT)*~:UvzUʏQ?QFbsr	uyU=j1uNFg:UfU$eQjQ;Nv]^?Rꁣ.`\r!S Ѳj`E5G5U$RSӔԓɁSG\rLϗz^HHnBkt՞jj/QǨ7è7qꝎ.v	.8Ju"AԧA~N?Kd5&ɩoKo.OTWfMo~NAr-~Ϸ_Tr7*NRΕ\nhR*YK(^:[ARȂ\nY?ܨMAݲS(+wJ9\neBY٠`4M\n|G)<uCG+A\nu90"\\=D(\\14TxVcz\nA-\no*F^B1⟛b\nM\nҏ\nkk&Tdp$xd)J1V+,W	Py>MaFlWyWy08(,VD+ƾ?7X1b\n˹\n	7:^+lM\nc/vZuI.*&}^7r9\ZR8{Ӳ(NR8Pq\n8ŌlL^Ŭi!\n7SFemF1[bybvHD<y"\Z,(< X:Rp0Ţ1c($s[ދKV,鹦𭟤X{_qbYBdby|\ny\nP79cCuns(\\Q/Tr~MlB|=Wm"T)l7+»+("녈q}*֮;X@*EM_+Ɋ<Em+6)+v0;MPH?ؕ)v''J{GSu[*RWe+R7MVnQ7(;}(2|)26(22š&q*?YfAIw?GvKG\nRǅ3<%|4E~ɽ''AEvbNQ8bӿE[Պb؇TeW]rZEQ\\ZtUq}JIEeE2_QuVQTÉj;Euz\nў(n\\TjwUNx*]Kum:ox pqqEchhj-R<zx**摊fpEs~ųEKsm6(^/tR(ޝxR~EGLsJSS_ŗ]	E~O{ů_y__a"*!\ZVF\Zi\rͦCu4rI4\ZX\\\Z_/J\ZPAgh^-V=Ą%/ӒiYIMOgh,Ѳio:\04[Gsw_*/SѪhuH6qui!>Zњ˾I5}<=u1SC:Ѓmja[u\rZ衃uA0=4G>tiFzm\Z]H\\8cfƋhP/h\00m0ҾH[ҧ:	E=Tum5m2i_(m_MS*GSTj=uzٓyS=͹@DLF쩠]j.koӮXP/aJܧE϶8H~@Hhhh=''@n=IzZE/O/	ʧ}nͼAO<?L~+\n\02:0HC"yѫ5EZ:wPG5k-j@EM<zm\rA]MoP騭\r c:}z{5?YGHoHc7ӱNѱQӆtt/3:n]O''-S:qR:8CC''/}w,;g;͡wtrV!KG:L\n֢w8NT)3)Wt\n:uGs*}#~MN\ZDgN3҇sC^atVݢ	H?i>hIk_I&Tyq:tbw )]p.>ӧnӧkŮWȇ.KFL;s=9At];}>m8}*s]\rqmg1}jEթk=Zy}KM2עoOo_LE7uQ=>O~b,]x?5nؾ~$ʥя\Zҍ^ǟO=7}Π[-ޙt||E\0zNniD>w_n~AlJ2`O\rC;~үI􇃓sY4AwlKwННˏӝ·&''Spuu25TBGdLw-@w-"f]Gݿ=_c>|e%/؁>*k%:d[8BtS`RsE)ʵP?nRJyJ{J(Rh*ΉJBILQқLAwO*S*\\\ZT^TES\nfRxG)Rj)(GnQj?U~Z9$	]ޕJ}eHK9uʑF/)Jc;{(z㳔cw++ͼ&?cyrܔq7Z9{Қ6ً6o5ʉυ)''<W0J{줜|A9sSN}R4S$+W:V:;vlrZr5>uҵLz~OÙ(g2WW7Q	3A9rsZl\\grIⲳJoJ\\϶J_7J__cnCXe˾+(וˋF+TDrp2HI*ە''(Wo^\\}_FFU_QVʵ	2:Qsح\\7I^erSwU(c)ʘ-<߯fW[}Qn{F*>)づws+#b	m[@;ܾWnOߢL|3I(''PjR?+wJUKKUʔ4seZeece̘hl<4Qyh}PBCQz;e#Vʣ1ʣ6ʣeWǰJe"oe[2/(SZ̿(O٤,P)&+OǕ7+W1HyV<=Dyh/eHezdfħZYt]Y*<wyLy=,#*ˬo(/^Ɣo~SVX*+>Q^۫cJ}_+/.*tRVY+UٯU]էieu嵂O򖃧֮7qÔT''̔w$m;Λʻ˗*lbVi򁡞reciS@D옋elEM+)_l3|=''L''W!廪Be{h^eR1SvʯǔW~?>O5EPvCʞweg`/3(ߗ*UKg\0faM`ۯ3ҥ4''72qQ0ɌX:40Ji3a;ީQjHFؖh̓ߌdF[]h{3Ͼ23:%/g62C''1F4Fo;F2{0	ڌ~)1t\\ˌc<c\\1r1IɌZ^\Z|gdX$a,Ǽd.`{ɘ{yu@c/d&3BII0p,35i1iٌӪ\0Ʃqze}eӭ2G;;n3:3;3x!`tffAbc(3jKx[1>W2_c	ko,ݪ,m\r`,[,YL@])r{J4Y)L\\&8	?΄Lτ3!LH.&.bɄ1aVQLX&-	7D|_Ϭ{Ĭkc}[ì7Dd"C"ՇWCUۙL*fcD11gօ9̶!Lw0IH$d3	LL+]&I/]Ic3{˘=v33)h5I2顣N2A9LfX&K5\rgnoc#F09cRY=9rm	s\rsoKerۘܛr&''&R`^Oc=_0''OdN2ɴɜLAsLJm38sf#SO`/0ŏ23B&3_`./}QLybL&b.Mg.aa\\T.`*L4su/S\0Szsc<\\?\\L:z L"scndnVG37_52"2e=e0,e}Oyy<|-g/0LLi9i_C''3''棝̳Og0-̋+K3/S6y}?y<¼ryqa͘sL\ṙ2M\\gwFL|y\0%ArȁK1_Sqk)|c1߷cg̮0]쥙c.< 7{ߙkFCfhb29B90]>BX(~"h9bOo{<K ,2/V4+9 g~X/9KG׬26fi,~R\rX49|ebmYI#=U\rذjPVq+HpVKjX8|4a{?gCeZVWs5cusQV7̜շSzAX֠5x\ZZep;c_Ŏ O#,숻HȴaQ7c''fYGk>"5-6Ys}e͎5y5qq//V#CӤk=k}y%kژf6yZD֎NZe''5d''}du(ཟuֳNo&_XsX~D`N=a4`笟iy+Ʋ\nBXcX/ŬR].`''׳KjjOe}GTsKel17wCͮήg%ӭ\rz%\Z]bCk\rƆΆi=aFapR6BkۿGf6BnamhO6:d;nncxx[۾q6s6.o-MMg.`lٝ-vgR6yR{2vϚCikB6u^6u&@$6my6r*qQffBCllN9q=:a9{tihJ>{M{li {l;6d){<7^ĞаcF^lahY\Z{:`\0/ٳgjŎ?ْZܖb[ܣ3H[ߏd/gTrryY`jd]daOސG7FH={j։uVWT{k{T%2܅}0<ia|GG͟ǚA9lsJ\\}6}ЃmS̶<7dLb/Ǿ7}yr<J5}˂}mnþ}Ɉ}kξ2mosf~=0r/y+	~~޻RZ~hد9$;|>aǲyl6Q̟]\Z`{}6k}d}qlj,_(-؁;9l́$栦\\X!w9d<{8s2#p/x)'')7꩜d\Z''q20rPj)p3;1Mg9VgǾ8q|]Rp5a6n	9e\ZY4pN{g7(t0c\rtc93ATK7nؑP?nx7b=7d,7$yY͍lXM医q&Q߸Qm]nn׳8S3\r.4/qmCBшY9ǍO)ƧqZ-8M!`$g7.gtgoQMMl&_⦞খsS+h%sRMSdr,_87xxt7`	7wDn9[nn^1nL,-VqɜG.S&<&*VsfqcnrK<9͜[u90Л[\Z,pnr~zC?,8.8P''r+>q,}2n&.XtB&qдR.[-֣?	OhnwcLb~Ŷq[ør,%]%UuqT=Nܞ;Krs''_ʥ{q)4>K˥7wNeC?<37;(+c=[\\˻^]p''mNÝZ\n>[iWaϝvsgΎ Y\\[WR;Ý>ʕR5W9++̕\r+ʦ[res~~pHWAsfusWor[ʯkڸ돓܍4W;6Y{UqwNquh&wO3b{rl\nÑ9gQW_kx{tk\\kx=+_=\Zõ,3b2g?\Z26vژkY̵>''cil1]:pݟu5}t羖''vp]Cչ֪+g7<p&qr8s}p}ڄ!<ZCR.LGz<Qw	5Q	o籧n<''GI"^4mE{xÿ%NR^SKTFO\nx4LxEIOlsymygl=kU''_:s?7!GNS~󆧵x2~_L~Ğ ~{r7I+M:QFѱ4oZΛ>ď͔Spbzok[i-uWV8jl"o	?f??-Pn[omjLy۠w)=%ϞOOYO);3si)He-eû3DyCcj~~V/»2y-n|K^[C''G+''NwJ ?ʄ~[#U`:`k8"_χ!o/PlzvlL#bg~Z9_/G##Q_\nT^oju7uM7Gf[v4[~,>nA><K|o+D+6T%Bݦ3=^ OS-|ZAV?UgYe|>4v	SpϩiS1wU:2>.''''wz*`_pm_8/hOmO_G.K~Eu|QgI5%	ف|q;$2/)ß{__j/4MLeG\0!_Wvd+NzjmZG݅g7b[-em`vsgxg߭''UV.;?,ׯ;77~7?''\rS`*j9oHᛝ\\-U=/9|k:%/#3W6~"f˿UoRos!}};cx=wVm''^_<忶oo|.wGG__&z<_Uyo_ÿM''kUy~FLV*p\n0DnvRU_BWaΩWU*QEhT{\\%\\%;o|\nT*<LE{9*dzU짗*J5P%0E*hJ)RiN<SiOUi''ViWRt&lP\rƽTNLuK5Sҏ|ҿ`2\Z_e4|bdEjTըtըhT5ڋVS^WюPKRTmTTݪK.V$%IUeS|~DDpjN* [4ʱQ}jZ4y9C*Y*Cǅ7WMVX8_5stQٵTj{L{B{EjqTs|UsZUs~榾Q\\w^5j*;*#UR-\\QjQ?c\rUӎZC}!DdrϏ*_iʷF,bjV=ڵ#TT*Tl<Zy**8^Y4d@S>w^F*d2UHB*TK\nۤ\n\nTUk;W֫U''ǫ6\rثb-͜*j/֪<U©oĊfՎ4ծ8վڥMcTݪKf"ҵU#T{TO,l*;WѪcU^\\Un*}xTu<FuVt_*Xf*(:_\nPVuUmTJNfJ*uS\0򒛪&{b`b0Uv%+Pu)JuY[u4CueՕ=ꉪ>aT_TkCM\\>ZuYU榪oE{χ?Q=ϺjXjTMFI쟪ǋtTOE{T͉=KT^^f^f^<QO\r6Toՙ-|zU`U[9TufUL>Y\\[qo\r#TߞTu[8UOLՏ?OUq՟TSū~W3F_j\Z8`fj\ZITCǎW#qG5qA&^TE&jqF-s|SjzWV''ՊjGLU+}j9''jZpثf5?v\ndD=N_=qz,~jAB%uA:bCE#R4U|rFmqLmtF6NUM&i\rjWգ?MӖǘP7S[S?yV{Hm9az<)>jk&Em=[_mQmsPzģv[mPOQ=@zJBzJAK=՘UOR=\nyjmMicoޫ]3GS袞+U>4\\>}IzTQ;wz깝36=_4.T/V/+R/]TY^ڧ^|Bv>޴E$^$CTRWKwک2jڿ:`xzj:P.VSZ9W7Wk׫C­!y.PVk''Q4TJG|UopxZVo\\j4zӼM\ZuBul:0Vփq''[Iu\ZzV^Iu΅UꝗcCNQ8xLV-U;VN1SSU>bNox>UQ4R}h|v#+YzU6A\\=y!f''6O<;> 2Y}Kuhua*CԧgYuc$S]ݧ>Ͽ/lTŰDE`ŷ\nH%9˳՗_R_9,2S_~[[ǫoLQ߈[q㶺v|\ncwW%g_W~`rF<Q?t$Y%Տ7^Hdq~wO~ʠ竛fUPܽMjoXn0Rn4j߾VTn_F~tc u@~ӽ{/''Ww9Wh{Ҷ8mQtWk^=SԿ,PyQ7Wx/Q2| F	ZBr;k#`	8C#<o	$L%FAGj{l''A>TP&8es\nA_P"ό"A褠"LОD RA;EBd!wI~-AZd040G0<A_~Gހ\nFwqe0r-Xhc\ncwcc3f0qpaRaR0+^|{GZYo;*L.8\0K''\\H;NS5VHp	fWsRyV~¼¼W<\rǸ".,E2_''xu7KG²$\\/	:3Boª4WS_Bpzauaͅz!DBD!th!4A=QV-DDl+!n&Mq6\\6"BTFpT4#9&	1҅揃--2"maBB\\8!+C8_o/{DB~RHH*l-l	YZ$ǗBl7agwa?=W{\n_!e!R\rT=!u;쒐&o	g|#dr2!cR!㷋%d˄CCӄ+:,OBVJM8	1#1Ocs{Q˅5p|XZ!O!Z!Q!?!QOsNoNbSnWB3sQ¹qB&rsBAPD(	.9''\\9_l6K\\O(\\UZ(T	՟ٵ2frpjnlnDX	,-prR$Yr\\(Ed]npF\\w]Wgp\\xP?Us?BBc''Oh\ZRx<Bxj7DxbtO,UhYVhyn$<*<+.	/\n8{Sk6cv-Vh,o-"k B{~7CY)|>\nÄ\Z@:M/G6)BJ2Qv-H\Z@辒$z0B.gSUGY.!\\F}\0Q\ZvxOk\rdدj\rJנ^ha\Z''\r9L#ھQ#H#Movȯ5hOfkk5~\r]sHTO(?k75\\3>M4_\ZZ-@#MhE4:4:/Ojt:?h?EFkNi5Nr0JK3l"1+4F\ZQS(QQM5~֌\Z1Ќ	~,<|SƢCK3@fr͸K\Z\Zy	}C4I56\r5vNةk\\2f͔4{-5S4SM4Nssu/.L\ZK5LfR3kgqQqtT|f\\fGA͂ߗ544ς4sfhB4^5V;4͒ٴyMح۰S|fEtfE[&@{&i&Cf}ʥ5+hV~]Y5fռRMP*	xYy8oǑQܹsg:wI(JBD6!RfRJ}\r%T$K҂h~|><s=3!]7A8PL9N8uEQ%R^R8N]@8Ppc̯= B@,!`!m?g=\rz΄iKKM[.B	PD~p#BY\0!҂pãp7GvpXB/b-&@9+GHIH<KH,p%wwf>lB2EHr\0$zRkMV	na5[K+8C߻YDxH$<t[DxHx̛ݘ8?cF-Em%C6SBvBٕBIjBP~PoK=Pw{1FBEB}-pАGh&45|$<!<BxqţyY:Fhnr''ZiVaBXBk,s\nՑτ	)Jτ%#ΈM,+[bKOJE6G.J>FY]Om!>&	}>K	}O	Ǭ	g''	DƕU.v5âۄԣu	_	EI%?$	aϘ0N!ȯ&YM\\JN5@]XOs\nav0kGWB{y]$GZ''Dv*Qˌ<@\\0CQ-v''Q=%j~k$.٫JԚ!.ݕB~F&Hu^uuozzy+~>$~H\\mHྋDH\\dr~JDCo	D:n<!2䜉D=D\Z+''"#ȹ6!li@G(!_qmǈ(D(=E݆DY?@N4N"\rDD#Zq:qͯ@:⺚h\r''<qnR~܇QEq	h6CK|D@;-%-E^DQ%n4q[V&hAi nL0''ڍLwEݿhNܳb%q*qϼ"с#:\\8LwWiѱJtDt*#:] \\~&%G''xL<N\r^7c-##zHy{"%͉$p!,8Gر4@TA#S%[x^=x-''"b)ŷKcKpe!Uiblb%gbh1C\n<EFt=HatUx.Q-A%ƙ!9!ƽBL|ASELGL*OLDL~?_눩niG.i3֞''fxČ/̣̽,ĻWW7<$fW9EGy/!J7tb~XXC,%!bm*cJ,? \Zx~bNbU&bUb=xX!sĦωϯ V_?''Q$6o|Cl>Dl!x[u]_߸?#;U_[;ЁN%*+d9jbw>g,1Ԅ1\\@v=t+?(8j!=6op9#~ǉ6腝ѸR☑8*"~&~m"~{&G}8n%qR/qqj\rqjN@q''N$\\nEiK&ZuG\\B5&:L2&΍k{aq~="\n\n\0%q@4P\nlT\n_@XxX	ŜFŚux@}깿\0\0͓\0NXAg\0+N^\014 ]\0p-\0oa\0L\0)( /m\0]PLz	!{g-ԷhszF]|Zi\0Sc#|0?\0v5`n7\0\0_g%  \\\Z^˿\0j#\0,C݀d: sdy*?5K	\ZrV8\r\0klku\n::;$ظ/1/00g\04r%`kf`I\nXf`CCۀ]\0۵iݭ+س;p꜁˾{]ـ|#8⁃=Ma8<\0''O[156wN8>A/0[t;}8q8N> X~.ρE@`f>9Lf@6ຎp}kp3i\ZL?D~"gK<[ JMZ	zD_KnG5\0d Vu%"8% nj17$@$;`[@J g9Hii@xt<K\02a@m?apW	p&\0V,\09N''{!@NHu|_\r䙎\0a@m`P|(<	P<%vR#L\r''\0Ur@՟dfWPs#\0]C\r@cfiw<DOͷO󁧞sfݣ@\Z3EhSZ7~v@5c$xk~B.tځ=8^6+\03q@\\0З0U`\0YK5`q;0v+\0>_h$U^*Ni<&"t`"0Li?oo9`;`>A{Ag@hGPE(.]	A7@]+PTI5@@*9\\\r.p\\\0\0uՠ&ԣ3@h9p"$AR4Ha$D|@%>iAy($fL @6d kf恼ϋAm$(E-(}7Aq\\6(1>J\n@)PT\0bUj\Z\Z@cuxKh	=ہk_p}q7pqpch11X<n5*?3rƛVW[u]hn?9MmO:9@.pϗ󠃠tx,^w\Z#|eNS34:MQ\0tz&2@a!𝏠9虙\0z--\n*Ǐ.7ǻV''+dg6}\0f^r@N{П?ZOg7(3`w0R^\n^P\0T#BAo{4B	\\^;\rns`\r309\Z/oK؁`	{0>=>Ld̂wJ\r`ҏ\r`rB0E7_;`&\0<uJO)oY ay03[̭=>QL\r<8029o{\r,|,pYFq``,\0p,,Z-p.X\r,\n=y\0Xq+X|,NIS`dg,Xr\n,K/[y{כY:XX	%ei\n`XN\r\r}u,\0˿\r忽\nBU01+l++.TR`E5X1ZV.+?+|_+*f*$V~č`5:VՎ`u9=\0ןR:\roaXsft`J>OەN.X?\r6>\r;B>Pl`C>l;6l5&X\Zl:4[%%f''҄H\Z+n#*"|6|5	ofi>;\ZXc`J/ؽn\0~ ?~K{LYp`IbUC49d\n?G[\0d_j΃_7_ͪׯ[o?og\\N^0@/pJN?r@pp>Nӹ	מQw:s/;UW_B)In;NO$$fbؼq8h3I/wZ\ZICI84"$$.>iɕs$-I+inRA;$$MWN$JZKZѝk|7#`V)V8#8yDH&$ L%A~%:DɧZDSN!1-IS$OHo$΢i''Sc\0$50ZDII%$\\KyF20I緑Vk˓V%ou϶LT]I&ImH$K;IeI+HJI:6*̨Hf1>s$s5Җ$z"ˌ(ɆEUdT@Y=gvKH$W%B!$GDoͿ$$ע$7]fJr1Gr''R-$֎&~I:Āt<-H6}L>>H򾌑|^\Z|"3#}$/K:e<C:uӗt*Ft)p#$[IcIAy3FVޤG"I.!]yNȂtM@\nL%;HI들K[I?bHnVD8tg*)IRޠT-)3崒tWN@>D/zOoQEV}H^I_Dzh]Nz}h4!ID<FR޵rR?TqTōTpTvCL*kF* [IǤlTdTsAR@^OΐO\Z"5#5n#5>"5=!="={l,y}fV1:5zR#Lz''N"!u.\0R;H]Ioz"yR]RRER+i\Zip}Ҡ;Ґ+ii84>/K\Z9<O\ZyK\Z4:N\Z"M"{H\Z#}9BY<$M,U#Cv\Z%M?%r$&H?n~a"|ҟ3ڤYG5Ҝ\n47E˹I[|Q?\n$L\nc!9CoH^~#$Zp$	|7\rb\nRٺR5kT̓+Т!G5Ā4CK@KZ ֍VegHMH;ܔ\ZVIV"6"\0f"{S5 Y"/+CgB5(kl!tCfļOX[!o''&C|''x w4Ԇ!\0$X	<w@fHPAC$gM4!hgЪhՐdmd0c	&@&a\0d5d|,͆r5kКuh:)Z?C6(6t6C''@f7bh?&dP	YBFVuж!ke:(	?mϿv,v8iA6 h;dG\rwB}:|hZh~vh<\n\\\\@n+C Pt\nt6\nY6<A^!/.\\Kg  qOdo|Aq.C~L!ծ)T:ÆN3MP''\nr:{?].X*CfbRkХ&ՋբP6\nՖBa(I(,>\nk[sz"~AInL_A7Z- %+lp({=o\n?%ЯA	롄PB_''#J.R@\\(8q(\r<Ly\Z9rBw+lN4`\Z\rA	|q{喤@Oe}{oˀ\nAˠ`Uv*X@rr+Ty*C$T<U]7d5BiGz!>\r^f@BAo^7P[1~u8OC闠P''u~?ϡЇP+d$>eB''54/h*hhks4FCc[EЗa۠^ZMT;AФ,4=M]Q~&Aӟqh&?\n^B_Arddcd^Y?Yibb$Yy;NV.*1Yd;qdKaojXdM䥣e&5dm!N;d]-YʔB]"zO&7Udp8=N #h:2S@f-2V8C摹:ܴd]52"gy Y8N-ɢ",dim,k''˦2dlwCd\ZW&2")zL^sky}yӦ>9"yGl1lZ	ٺ-y{9N񢞼"!W"_$^6 ]N}LH޳ȃƇUG\rHv1''￙L>p8GvN{.o%#Zn$dw7dc\ZdMd;ȇɇ?G@~ZqT_x"O#|~C!T֓}\\oɧ#6"_B">1''曑rVm}FM7E|j6j	rH\Z?z#9D%]bk/Rr˿HYOKȷhM=kI=M]GuCCGd6CN:MNFݔ)ryr9}rƏ=̀k̩rV)a|]H_|xlmȏ7M,#?n$?&*''ٓsItrލIrAwb!(%\\lA.ɥay)O  W;u1Or\\B''+k[-ɵ\rz\r{trH9A~1# T&_{m-,|	b9+W٪לHrr[-3=wC͉BGA=m^5&Wkv{{3<X<H]''D^!\nG\rǚzxmq/׭;^\rwɓ|&y,K!I !m!&,IysΏkn;؉''ҁ<6C@S&jJ?ߟcFfa)X[G_7Lp^`\0+߂=	Rb4|V.ԆUU,``եBx^h`҅55oKKla1Ͱ.5Xgy,cy^b#5um`b#y^iy\Z&`WW0{\r	#0US7ܵ0uj3LiiR;P30IS8c^0;/qp9/\\La-	(,¢*XTd	jG`1hX,KXjOUaUi%lZ_\n5eɞSxc"xc&lo3\n/1`ؼXzm3l>[?]|xׯ-0lV;ax! \n;8os~z`y	츐;K&a''	ؙ\nvj]vAcصvc1xRدq>e&xgogSG8 2"pPR[\rx\0_˟ކ/ހ/K7''gXwpuCá06tt07V~hXVc>qqR`8^!\rNR''p2M''Qp}}8\0Nl3P^NslZG٫''{OUn	5^d\0E3^pI)\\\Z..{.?]\n*&R᪦pڷX\rW_>W5T\ZϗpL~d\nn\\7.4&,_/ptq_-֗	pk['')*_׋On_n;N"uLsr''Ak_ܝp?-?\\2}+~;"<СRZ<4֭tb/x<\0i߀/cR W\rظ׀]ɇ_gxnHc)mRQ)r(({,leeeA%eE)<"褨lܱT_vS)\rP>BYEY{RAI,1֣,Sܵ)Z^]roΚocZ"Eo8sⷄ2g3BL5Q\0G&8ATR_Z(f\nB>3HAQ&-m1IaS؇P؞w),O\nm7"~Lms(k0E$*RD4";7KѷmЧZɦ=ȥ^b(!O)F~Sv|]Q֦l΢4R֫Gٰی)(4eӬ!e!gś`e@,G|y5$PNXPl(6w)vNQRvSu)i)%'')({){;z(vR59PT\\8_S\\L\r).M(3CɑCo_Q<R<4)6y!	g&Au+8?儖rzr2{5{IQ|E;(KRw)FՔ/(g)g)g/SVavsU)O*P.|\\l̡\\2*\\r7LHBOeZ|#%TpZ4E	sC	{rˣ\\@IaNl`Sn\\Jr%smbG~1B״p%1<UGIJ次/(ՙ]LLJHg% dJ\0ʃd\r%Jv#	cI5q9J԰RңP*ʋ:*eJUy:کRR㺟ROI 羣4p)\r^*F5SJq[ZSE_)όHg{RS(R^>|Fi\rMi<CyBimmDiKi''Pe:M_ROtS(={)=])R>>xJ8u+Qz7|[)fVQVQzS"((|eGz2fQ\n);(gocɴ󔩃K(?2C(3E_kc(6~2;LQŔ*DNo)"wJQ`Ŝ/Di"32E.dQN"jGO"5RDcT,q܅,y,۪,;h!:_%D7	Y1"Q;\01--,A_꫏*|!2E+L=0"5kF؈>CTEnA9w"AF~3	K5DDVE  K!#C9b11?u+/ .\nu3u}M}$1uEֻT!Mg7d|1ETqs)ȶ?ȶdJvG׌ ;8#NndndȮKkhĎmAݍMJE\nQ9=<G!/|D\\/f#G#GGc-Khnh#D ^"#6 ꢑq+VDd[xz ޙg3''FS`䴲=r7r	<Go?EH!=|?$Vr.|+rE\\phrdrmrm	]]~ a5ٍYDXO.k7uz6<ryg\ZUD@nk["Y3Hc67\rF~Dݑv$4t:#=?ېHF5d.dHf-$ rw(r};BHV ;<9yIG4F$s(RȯC\n''"j?R)rB E)HI		)%BJYqHRک) !H9)oD\rjf$RӁ#R!	Aj+!uH4<"''HRiwy\r"\\qy錼:WYDƞ"or7EHZtH\r6->^/y0yPtg/F>Ȑz+sS{h|,|Cz\n޻\0Q(==nO䳼o22>|	Do _o/D%F&#ں$RFd&dv#3yώLW}7z3>V!sB''''?fd~22h*gUG\n''qwLQ肧QEbpUhDuʤ\\TUۊ.DA¢Œia>jF5jTOTˤ2.5D:!Ityg-;p8EWE?4B(ք{Q(0r˞M&J;\\P8Q3_D*THiGT?@EW7grXxRQ0T4]%|A\rNk>Q\rXE]sv3v6]H}]5yڅو]nfaC4D7?~k@FG-D-P+Ժ:jÊEwffv}/Ծg?a	3}럃3|K2EAOԱ6z`>n3Cu8yR\rPׄ cS8q-Г7\\ѓn5s\nIG}үDOztt\ZdWRA/^pF/X@4/[ge蕠\ZJ\Zz;^ݐV4g\r?/G-ш+\ZF$7n7J/Q4j4*mޜMFo\rDcKX^4mahM\\Tqމ&mAkДB4sM|дh	401[f^YnѻbW"uRZhμ19&}q1+Cs''h^Z-pE\rHwZgm@%hi6nZ.߇Ve0ZڌbMh}A&Z2mPjChӗV*6}}q5m^\\B[zV0Z}힊?''iEhن]}~+>bJ%h=\nVGlv=hϫ}GګuE`D-ϯ-Б5蘬\rZ~I~tA+DB\r:ɜG'')iGO<gy~yй[X!2@ɳT9RQ^.ܐC]8^H]iL]OGQлK]jQ*Q?jZRWF_vTPT\0?\nETG&\\|\n8I¹7**%AE5vT-{*͒J5TwTB7KvP#T}KeGS9(snfPmnTnw*?#*Nb*T<ݗ*V;@J`*բEUT)Ao+qh(jB5n]J]O]sĀ.E5{jNj=Gݼpje:uDqբ5jSmrՃTb-+E5ԝ]#TۆT۶/TeA=4ui˩RR׶S>S\\DuVҤmUS-(TT!-ꑅ۩/SP=Wzz6K^FjT6c=z"zK{h\rG\n7ϱT[ܷTߗTTu~iOqSY4=gLQB<":nR/?@lA\r6QqQ/+QW0=Cԫrԫ*\n*qkЅotjX&5<5l5Bz&5*\ZU\Z7ztzs\Z-SK1X5޺\ZBM0GM7&:P=gr)5T~j=.5~<54~FڮBW- eESL	\\)5?jq2q.]:57x-5=Z0?E-tzP"TS˩S++\\66rP󩍕&CjSO.ꋒ"ͱ\nJj˨9e꫽CW_m7QjPSL5jUwY|껗R߯lvR6S?5~GXD;OoXG4utR\ZSﻨ#_⩣G1qoS''7ݡԩiK4ɟ:#w:TRgܮSgAU?*?osEs?ߠP/;:oL?H;;BPɇTh\nCki4Řy4%o4C}4Oq4o\\J\rMe8M-z\\(fmx"m6Iޣ@8J8H,-ὡ-~N[|ELӊͣiYӖ7fLVޢim\Z}[A#M5kh4DHCQRiԬl\ZݠFwס1L,h.\Zsv\Z3i7Pa#hŷ4$}Ii4\Z?M&J	\ZhƓ44Q?MfA[U@3Tҧnw;O3JB5ik\\7vmD^6hM6L3if3iiilymKmK|6bf0f9.m[Cۖ}IfeʣkI]\\DىShi''hiv54\r=W{u2i\n42O˃4g47V-h1}@;_O yީyh\nh|.VS X1<<vfsȜ$N;ww-gAhW]\\J)M^IҤEmeH|MSHV5-2vwƁ[ci	JZ³tZb;ڝWaZ2Ԣ<FK[@8oD;HҒвVв.?e}=)ܣݏReKhwhZiqhEhrhO''iy\0?VhyVUC+|G+ZB+j@CišiJZ''FVM+OG7EZJZVZ5/&2VsilխDkW5t=54=_9ڋSh/ZVZWrVhNڼ\0Z{Z''݌9u6֟m"Z76d,Ck-wNZ''6>qi$hiUh_цChM:@ykHg;w\rо*ӾӾ}}DJMWiS$ڏ)6ss+CDIU)=CI^ACi]\nOnҕҕte=[\nTCWqBtetɗŖg\nK''Zz|Get]}y	k\n]om}@XG_yl}Gm9t''ޡ{tM9EGSԀ::'':}AEgT=3/YWM%ʢ$ӹa":r:oY)7YGtFt]vnxrbsn\0}MVVRL_N}$''dގnz }>}}}ޕtf_]m[-ӷfsѷLѷq_;wHl;v:mvMtiO.%,>ɫAJwʠ;Hݠv<~s\rSLwǿݻvwEOLЏo=m@\\Bz@?J{QtSbw(ݯ6M?~JJ?@M\\Փ@{9/_Sbt}z)=BIҬG%oңj_|z)wzbjzby4=q-=)BO+룧}4gllg3>$3,GcTz.=g?-|?9F]O˷xLϛI?]H/?-zQ	08J^|2^	K87=geƉ.z^UJ^Clנ\ZJz<vVGDJoЛ7қ?<Go	W3]ߩLSmlz.''B`17zezOVzϕ~}}	\n\r~jz9}`Ck#5%/N/>ѿjп{O={Tj''4=1EAdyw5_kwCh/}Lw12^272,fd,|,P;X%eÆv{%%=Z#bƲmڌe1-)c(d.r::kfD9PwAc&Jw2򌁼hfPG3h$.wAOAOSY<`/18]8!3DnCt߉!aH~0O.jƪ+O1V??bna1/?c-e0acV9Waؔ2TBdl\nalؼ>1ƖːbckgƎ:C:İ*;w`a+`؎0v-bp0:_g-ؿ5\nNkƁQo0<88c8XBnn4xƑ9#7Gax&So;Ƿgqqozۣ#''\\a2Ʃxeq3rgs\nge\0AW_A.Ռs޹2ծ0]fk$sKW31B;9Fx$#ǈǸ.7MFv	FFXF|OF|F #aF;F#HmgAt9FrqƸf-+d-`ܻq,x	a[i`e,b䯛a(c3\n3-Er''5eA%)fQQ;((_(?KfT<F=FŗfFep9Q^ƨYɨ	b0j2j\\`.hf4b''gf(F\rV.kNk=w7(ӌwZW]FuѭѽǗ񡼅2W[hc|2>e^Vdv2<@,ch(11ܓ?5Dc1/W:Mvb}U.dLSS?2~K㌙Lo]_:?dluc31(d̹1ާ336t0112d#LR#r)Se@TTb.0#1e.TgX%0>061ɖ3i3u3u⽙:N1&0L=VSsy\rsœ̕L=TLx	a"UL:&Vdʝ`2i.a2K=LLɿLLc)f1k3嗙xr&^q)JafsLg檀@87LJLC!4tg\Z0ն0)ILML%LS݋L.2͎0737{d3h2p_2[0-3-o2-obZran2d`IIfĳ;;\\;FLLok71w;2?`Jf:0ǘo3.c]''\ne43extjb:[,d:_He_ldtӼt_xt0).f\ngzy/aH&3=^`zfzY3ڙ''G3}}g3O2O<ty:y}yaي^f|ftcy~Pgy!rm+!̐_b0f0fI*,qc32o7afb2V36^Ws1$92()<fjbffj32L>Lg{t03o`fu0q31KO1y1E,b̿EbcD`1ʙ31K4?2K^R%5̒i1\\mY.ęݻc55Z%z8flHlf60Mv̧^}ߙ/\n u)}Vf͓|kq컧=p`<2GC6oV̑1_JsL%vMP~9Y\01֨1<ΜY5 ;9{N99;97G9ߛ mg)<c)Q5XJy&,2"KFKuab-*b-^Z<RzҀY\Z<K#(K`	kIkv0K(e-tڱt߶Vo`YD''C0^ubX'']aQMYc1,?,,,mbUXX,2ަ8b\r/>oqr,HK%4:YxKː%Q{h-`IDX$KzK&eɜ4Yz,E^j-k,5fXkd[މe4,2?eq.ey,h\rk[.*ڎemy{lX6Otnd;*cmg9[Xο/\\8@ۋX^^+Y''|Y~c,^Rcb^QcY㝬&Gwϲ.{̺$b]e]na]^zb]\rNaZ	Ye-u7Y+ƚu++zQ7+z?}/u{9.𓕸c5+i)+JX=܃(\\).ʺzఛ(	a=*c=9U*fceYݬBV1x=*fg/^1sU)Uu0XUϱ/vjijWjc%kKYtV4z`=3Lg=7Sgp`:zώ\\jea=z͟;={_Vł[5h=\Z\Z\Z\ZdFYaYc׬ klcww&*XSZJqTK''뇚kztw/5f̔~	@֯gѬY7kr,kvfU(cͯe棻19L &oS?M1yST)J\0[h-_-:[ԶS#aj\nf/ԚʉLC40́dlllIBuJZ-8NW?.l1уPVlV`+展.bDJ1  1Ҋv]hl`{kɰǨ!%+Fnї8b̔Q9cm݂-`<ƸAyqfb9L ~D\Z1H&։I`V-lVpQlu*Či`F:fWǌs;ISִa&90eN!luf4fn\Z3O\Za[aV#6fv^a;0?)ۥ\rmR\n0l;pۻ	s"*ylNl!_U\\肹pb.As\Zs>c~\n^;\ZՂW߅ñ#}a;݅Zkݢ=ag?ƂaT,x2,''vI9D]:]7Bޟ)Ǘ;[{X\nna7˞bY,S,Vw%\\BbE3׋ݡbwRcIW+X\n[K4/,oTe:7cKE,Kpڣeð{S`33p	{o=r*cO''QX~+aMX!샕8c%\nXZh\r&XͅzVbecK`\r5BkTÚb$Si5{܅5aX+kڈͥk;Z5z.֡܄oðw۱&XגXfM`c=eGX\ZֿwBcا6wlHAؘv.}_9}?}zMObӐ6wοD^fb3Ϭ"''z45wMo%3+amg+g/^^p~qc+ͱ=cl+w٪ZتEEl59Ɖ-l\n=lm7yw[φk;:+Re%W\\C+K+^]ef[6a&m`-Oؔ8q|F?lʦyiClN2پ*bc|M6ޏb+8߼e]%Ҥlv-kg_\rl\0h$hp9b{imr\ncMßHdd14fo69pa[nŶVNl+#mK~ٟmƶ^Ķ-wcۙU=hυWn-{_h{:{1bZUZ2/}H}HU+cl}y}Lo}\\&ؖ}bDvDw2r/S[Tc.f}f$K/<a''/68}d_WwC?!d0ȎPgfߚ5c6g߾Îg1q7#qWofBI/\r4+vvoBݷv{ގ-{j4Kuj؏(UGv$c)''''Eb9vq]..y.}Pͮ44`WUjT̮ZȮAVg/$L݊\\b\n#mn3bgZg7;[2;:G=+=!1ؽ}[`	[;ѫb;=Vqm-[*{<TcQb	\\,{.p{f{570{B#g#wǑw(0pܞs.(prWsT|!x<FsTs8߼8p	sƝ8ws4.lhmhĿh"!%-Pβ\0Β !Ί8+9+ۣ8+28!9$Mh1zpd*9AF96)C>;q{9Ly3aY9[\nn/ßA0WUKk8f8#3S6sd>9^c4qo9Z5uuԥ}:-gzsF7`(KgSc''gm\rVű<ϱα]ʱ''r6sM>g|Pyq9qՔrj8Vs<Vqn~Up\ZsIhW_rN:x{p|:8VtVY)I93Ӂ󜳢PYwNvι0sΥ&՜tN(q>q+\03Nd%\r)\r΍<smù\r*[qbo|Ļ$hqpWr>$>YIoIVȟᤄsRnDqҗ&q2G9YYz{o8&J8$9i#QJ#Σ\\vNnSΓW_9y~q^Np\n+9EF9Ŕ''8%cRNhNySNũN5lƩIũ}S~nNqiqq&pzq)l<[yyBbgБ*À-pެ8op''8/8S79oI9po}:9}˜ne85&@7Oew98^1!a	0k3?+}8''8_||$r&7r&9O8?Vi241Tș)yzUUgUpL>l.Қ媛gj*|.jor8su\Zqsu\\\\T\n{J{.an.K.u l./wgq!yw.%_yͥR..3SRWjqC\\^mx?\n\rsVsq\\\ZJp%Lqk0]q:zzPk\\Ï\\㼧ܵu\\g۷s<n暑p7q7\ZrͯrrTv\nV\Z߸r?xryuȏ:p:szrøOzm܃܃u׸n/pݷJzC#\\Os\\ϊN	){l^4Ο\\Lv)6|L9Sݦ܀?czGn%Mx])6uZ({ۄ*\r=\r-m㆝\r{{q#u}܈!=no.7ώyc{$7jK2Vmu{[y{;(7unl?nIWnpo	7\07qW7q>{GM&eM''+qӛH7\Z7k	͊5Ykɽ/ޭp/ν/<N}@>\\q^}2[d\0Ɉ7-Nܢ"nQ"n1j-qrYsܲ~ܲݮ\nCSn宽''SܪܚZ\Znvީpޚ۔''>}ś<3y+B;=%H15)f3m??0vJvL[rԹ]p?A܏wr{Oq{+r{E޾>.9nt;lw`ʚIuk6wI/{pk/sGrG~]~QcpN~WǝsdTrql3bx?&s~=2z!O9y>N2YOo2O1>Sn)[--2⩩+/XSPS~[mu[WeUV>i\nx<g-|\Zx+PqUyzǷk	<ȓdvV\\[g"*xF;x6yGxk	u!o}f\no}\r/Bx[6KYͳt2YV{,?<m}DmoYE3l+y;/*v^~e|V31Ϯ$ϡ>o}q}JxN\Z<k,O]ANyg+o};wT=wtb''+dU}s<y]_v\04;ёph/ b/(ЋT;w}ޅL^p5eOx\\y_]Cx\rxWثxWsyWxW4䅬YW¼2y^y\\8v#u"Myzȋyċ}(xNyޝ$N^/侇ǽdo^\\/3x/3/k	/$w!޽ԇożjyxjyMi|yEwTyŢS\\W1+}+sKn**2yjt^?^tWƫ>ՅI[x&^s8k׼o%z\Zxlry]\ry]>md^ݼmއ=/zLy}`^ߚ#~OOxν\r\rxCyB0bv\r>>zV2~ϛX&MXϛb)ߟ|2xN95UQK޿?1o~b-o~ފ/L_\0\n:\nJzbR\nPW1DUz||5jں2V=W2k\Z>|._s&_c7,''_WZ:W,3>q>1d-.󡓖|X݈O⣄A>Jʧ.$`\rƧ]3"I|Ɠx>s\n~~g~s+d>/Մ/H%{l|	=/5kK^|UAy|m#||?|_|U56V5שL׭t䛘ק7?=⛕fu"Y}-ӛFacs/;|mr*mV|3ٓGB;#=l]|[~06<; |I>CC*a\ri[*s|76}WQ:*cߣ <߫lG"4Tyus|XuOUV%ԎӚpr/S\rM@K}~cu?E\Z?b<IǏ?ɏZGio*ouG?_Ï0?YD~''qIFiNӗ3Zʿwf?<EostfP;__V//\r?Z/䗾WXW&S~ŷB~~-\ZWkVױZ&~}[o2--3CM7n;;:~w?)?WlNE}h-GQg1GfRf/5#/_W:qnooos+''''ou^Nk\nύ?''SǟuBssqP@a^_X#(~(PaXT9w^,:c)Py\ZCG{%Z;hϞ,@{.G.	V0\nۿq\0V\0|* * 	cogb\0b/@X:uL@[A@K06	\r,\0]/nRs''j\\[I|#|dfG xg.ѓ\0{F ɍH~/".V%0|(06kK,p:o3\r`r\rO6>:''03"0&t5A`G`\n>X)֔!X%~?7gt6I˦][wVS]S^Sn`}:,~W;	5\n/on\nJ҇7m7=/BpX1YpXpBp䬞eEq//_XQxV;''纮''IKolhsG4ierraϠ "OpmI> Tp]"DR}AUB-`ALAt{v?]c7HsL"H8E$l$f	e$$AR ?Uz[2HZ!Hd.\rdrh@}LL,ș\r\n<-x21!Ȼz]}f<AѹA%E&YPt6LP		Q;AyFAe9]PCPՒ qԦXGB\rPAö/''!&:\n9.xN*IК:"x*xMGоpS ~''.xg<+xwQ[ΐ]M/A7''Rmp[ᨇ''@sN〇7EYwÐӉ\\>m?s}g#yyѕ)q@^A0?&7'')L~Snߏ~L	?wtI.fM	fi	措\n*%''X(vG(n {pP(^(/Ti\n.!\\-T.\\}_P}PsQ(ԲZ¥~ƄiP;M$=tBLx@\Z?\nuB	I7	ɆBxKb$5!''U	{\\Bla(BNr+\nENBiE(sx$M\Zw	\r盄FDUXhd^hg''\\+	׎M2z+\\8 \\7.*Npn<Rh/VZZN<nY(EmNhRh}''B]pQFfUpEp]n>eоE^x@5˖FKKНh&t"<lHx8YxoᑵB@OsEõcVyc{''>	OZmzG}k?M	hf	ԯ\nAgJA%#s[KGKE	/^1";- 2[xBxTzh0,S$+?#	o,[''A} S;H3]''c	5m	;Iid߽&PVvS6O."L''Lf`^	o&	l[.|">>$|ذ]_a0O(;	7\\_#̟G{	ƄQae5aڮ^+Յ56υ\r˄#a§.=W!״{7AfP]awk	4]m®JawgAan}aUa_.Prvqoϋ\n?o~;X-@8e\n(\Zj\\)up֌'';> K*\nΟWr{p\ZW0+=+~VU6?|oK#\\EW''\Z]Ɓ|i(tr\Za[:rKuzKp\n8R_]㄄8\ru\\a~#ѥ"\ZMé~.8]Gΐ&qeCߊc\\pJ;ցδ㼚8nqA{<.gQq銋]Gq)Ue\\&ⲟq#C7:dkLkܦ5Sڶ7q7z-S|=o	77;f-pD,l)7ۧ:ŸEYn1-͛qK)VZ)ŭv	qk*o?mM	ߕjwwmcp"''|r/|wF{5z}Խ''c|_3V;].\rpWBh!ڰ??!ډ{{}{VN^pK\ru<@ƽ	-G܏u9~W,?#\0x?6\\\ZŃ^sv~H?=_0''jp:~1/5/OݻxȝxtᲧ"XqxG~߈9Gi޾oDѺx|?<tO*>''˫)?<ُ\\Y.-~O~|?Tsz	h?ك;y3G-xQV^2/mc?O?0/>Nx)\n^D6kx7ǟ;?ϐǟ\0x57ڊqkiXoZWnGn	x|_6;t»LzU[xlFV>؏];Ue)|G_VR\rד;>ᓬT''xŭ\Z> >m\0=skEN{@b(R6"KEOu^fm-6\ni-yZdJ Yiݽ''Z4.Z\ZATlhYnhYLC 	-[)uiVpE+|dY#"<; ":ω@ܡ!&1TQ9(BDTK1*D"Ε1g _UPqc""oqǬ2xzD|==HU$ ,	CD"H4 uuEM"q-"="΋5;ք֡"ɜxȤhh1h}/\r\\\rцu\rGEn6vN6^(2#։v|m2	m ڲG%_dj(X"%\nX-ڶ]dUdO.ڵJdUd''"R"ڳ(r8-rHI\\+G[''ڷh_1Ѿ)%"gD<DkDEس\r[٢ejI;Wɸw\rA"o9+wsSeihe31Qi9(X((S(\n\rѥSk.P^QX}Q<Q:kJD#xǢEnݦD1jQ̦nQL5QQ\\P(Q莩(!J:+Q*(5K$JD{E7DiEU4QkѽgE|EE,D4n=+(\\&>%ѣE	QњLQQQgQsQQqXdQ뱨**owN*G.Ujd?DjlQ?NԔ=0=/==ϖZ<EbD36:袎F;ޔ]_7,_ݲC[G\r \Z\r}w}U4b*\ZՊ:BDckD_E_ݐ̻E?EZdLOwbOѬhh\ZaX7Y,3''^pCH$V;(Vŋċڈ,ŋ4ċ+8b/\ZLwFbX.JR2ҁa%Abm$ֱX!^J$ֳ+^%&b\r1,õbxMLqS41r!fP11C.fg#41[.2|l!1{xDpN[L wEZg1n*NK2Œ?b)rF,$''c7]ū]TĆ[֊\r\r͕''k*뮠b{bbxIxV.\Zbv9٧(yko%;Ll)m[2[[7;ΉwP;|VkVNlGJSl(sV@t;X\\\\X;Nzb?u\\UG vC]nćŇkG={=_qH|"VO|d~{wػ0(b{žiSBf?񩩭ħx&&_R\ni`~FՐVqZ8Ef/?7[pqHy+T|C8ͬk[WYűq;֟A=hq|%qZ,N/NH/Nk=Jĉ;\n=;IIw\Z2չh8 \\N_*gTE3|gY̊3wW|5,_Bg͈Q=ac?X)}G8/y+NŅ\nqap@Q\\4V\\<A\\∸L㹸uqy"5X\\ٲC\\P\\Q\\{kAyq3]gsgp\ZK%%K \n/[8ׯmom}>7{Tdq\\FNikok8_a^ÉqOac̨cvH<p[<txE<&lD<RK<6''Mēf\n-?3\Z♞r1"gW^ϩ?\nĳs5⿫]hSw:KKOHJqD麶D鑪DF\nDug\rC5_Jl%$g[$;$owJ4B3%%K%ZNYcm^7]k8FK_B.!:Ks]h=	EH`-Dӻ%5q	}waCºXqJ8k$͗$=ޜP"+xIIUZ%hpww1qĸ)Y#됬iO4ޒn\r]&YO&Y߃I6''J6]LlKk%f%XHtI\rkGLu7+$6o$%՞؞؞.J5Kv+zHO=ל1''qo8\\s>!qD8[J\\N$J6OJNI%%7hKH<$|Q/KrBPrҨKr[_ 	2$g6^rJ)iO$g əۇ%g>%g+$$	ssII씜+IΫ=\\(	/	.],	%H.HJIB3$a\ZɒDII亥$԰$q$\Z-\rJ$7e.ђ%1Z$I:KI2Iܡ`I<)sVUKҠ	I$]$+3Q$Hr*MPᬚ$jFqEk\\}S H\n$«ђxSIaҬhRR{,)I%ޒ1ICIEx2礤JARm%.4"J\Z\\+$\r㪒F$H8yRt)iP(|9#i^''iQ%i)*i}Kv3BfI{佋}C)CI|ɇE)mD#*/{#齬/ז.JD_%H>K>u&JVJ7\\[NH>JyJ$c%I_0LhޔL$dnH?%O]PL믒AP\\@ߒ.ߩ/R9T*HtRptaDHiNQ.:]Cf ]}T}Die#]AHHZInI^K\\juIvKsڟiR|TeT$]~TWt,%8}FR~D\nH\Z)8)%tKI{$ǍRȓ%%WKa8\\\n_&+˥)K*J[3RZlUÖbR,kD\rKyOܤ{yW/JdT*#KeER}tR㿇knK]o+ӖnH¥jI7nn֐?MRsz\\`"b[ŗ'')"CmS]j*ݾnՕnGCYU$q5@j"ue&JjRwYVMm:Y8J\\Ǥ΂R>Kp\\zpQAmX&uڤt`K_WRF91Wғ5iM?\\gHKmi陧ۤgJ_ܥwJUl/\r,rHz\Z^I^uϔ^,\r寒PixH\Z-/Ko|@\Z5,C\ZjP\Z#KzH^HISU.KSeKӔy44%C,͌%͚sfۆI\Z}>FJ&-ɐ\rI`HrŶ2tRZ[ZK+b\0ii%<!}"ZIVoVHKkNKz祵IkgWJҺ5Ҧ$]җQi:ikrmFQڮ[ mwI;VH߾!}7.}+Z*&~F4Iڳ6]T*QEVIl鐲t[:tt(U[:N~~{W:B:8IǔIǯJ|_`׀5	gX:qV:NfKgHґJ)z&-KWO:F:/SmQL))\\)9Ȕrɔ	eʏe*.}2ՏeEe$LT_P#[l٥!*NLOl9D{fLO;^Bl$/[claʀ<xtPF(AוdP^yℌ-lݝ2ꦅ2:妌~HFv1e̓2Qe&cyreg?dG''U(5wKewd\02L|#5d\Z2y٪j#3ӻ$[]$3)T6~{,3{_)3׵WY,bdKeΡmG.ɶ.(GeKdzem2e{0_ٞ0ٞ22ӷ2W|yX,;'';tzFC/ȧ<ʎzʎz<IKd2/E츪TvDO/m^&-|8PHJd5T>|I"*VHV"#	EYY	HJ"羯2"!!^:Y*StEwCe!~U\0Ðڐ<Hl$r;$԰*|	~rG6rH]/zC<H͐(]MHDH4-\nr:q\0r\noIwd\nI:4I$[ARԑ܃G2GƋGdGQ*$-^>yjt/<<-$z-o3o,C\nLH P9R6R$Bl!E i /A^=)\0){)[H62yR\nQ\nZTx6ՀM)C\Z.hC\Z<`i	HHklzw	ZpqX\nQ Om{\\=\r2\r2dL]!Fad.=ȈdT^2v2_\0&])T2LǆAST!Ӄ<Ȍ[,d&䇴d\rTYyCm,{\rum+wd\n<uj[Y\rBV.B8C6ŐCsg!@>~\rwoȿ`D<*0%d\rTX*ׂ<SnZs*ݾkT${g	U#@\Zw\ZҡhPPP!P\\	T\nTwT7\n/=ow@2	5fN@Ͷ@<:=2(RZk\nje	=	=$8\r=y\0\nIBН(\n{bBg2qTbB3P>(F;\rJ@A(DJ2;jRuP(U	32P;>qʾ!rPn@''*|\0>~G#良PkГ/ԘvnP[Pۋ2PG|C蹓fsE=+Pg6Թ\ruQut@]Kz*KJB//LB/A݄f\\0,j	ƀ2S.ַMPX%2z<U454pY\Z4m\r6\rƞ>\rBC#!;лfw_F>l\Z4Z\Z}94f@\0\r?j;O&.hshBh!hЇhJ%#\0*}&4mv@!xL*IB	4\0ͥ`y<''h^|4\r7\0;o􀾈BRwhq"8h+q9$DZ\0-~}	}AFeh94h!7rw76кsg\r,\rK&oЦh&ڲ&C̡n''zeh=3G]ڇ]W]Ю!hwOhOh\r훔~xyQ\rE~: :z\r:$@\\ãIQMKX:LօN<NBCtly\nUYtt}/h߰LI7L7LUL&=\0je6V	0\Z$L/L}&	lEKؖk090y0L2LQ\rYLI#|ZRy*uJ;SSvjvCa\Zaڒ0+7a)a:F]0|wLl;	;3PkT`FU{̳`uaBaFpK}0ni1]qӋ`߁A2`;08\Z̀!?_Ս`tH{?90R4k菮Ga0\rcz1}Ca=0jcoaxWN0\rLV]x+L|L|?	vn;1vN\rra!ؙn<>S:bzؕ0wװ*?aWuR`^]7	v\n\r:1{9|L&;\Za)`A8,8#,UZfBQ?XhM#,s6kXD8,-\ZRiݓ+_Y܅ŝ~__=0`	TXB,1\r%t\r`ðG7RKa<Xjc@,MK܄a#cj''?aOTzaO27e=+²sXv-,/ V+\0$5XX1/XKX	d\rV5\0+~끕݃vL|`e-2YXyrb;VQ,{]~V)J"aozaU"GXU3XV,V\r;KWiM`\ruƙ[`q<{	\r؇c.XGn\0-X/~p#X6x	6t67+ȁM̙&raz)NTO<l l:l&z\Z쇽/Gl	l75a`~~#UV̼a+VawZ+a9;a&n%7nFc˚p9E<R\0oo\0Wn+3Zpye\\)+|F=|\Z|''|''<\\9wBf\\zwNw?5ͳᚐp-4\\V|O2\\۰#	ח	^響識h\r~\ZT^\rͿu.,[*]@?8pJ\rxx_\rG=G[nѬp[8>Nh2Cp~8%8:w\0p}I8,n]4h\n~N=\0?́MK;MNt~qk\nUI~9/Gu++oW~{$հJN=\rM0ff9[}^+sӇA3`+x(!<.քzNL#{#Yc3	?x~x<ixD&n]xyxox~xqӣb7xnV$<mx^&xއZx~xpx-^RyZ^:U/WUW?<ylƐEsx=/mr	mQo89''~NP7oM?|Z;zYmη-xsx&7\r;r5>p>p\r.~\Z%G)uѺ{3|e	>V;)[?>\n|>FOAW,^JK\02|Q_[_|H//eB+Ng''gM\0R4>xHgYe`˛ܕj@m7 7w=	(P6=''=ؾPg	j\r~@e\0~0zI`W/`7xؽahտ.{>{{Eޭ\Z@_ak=4\0<;X*\nn\0Fˀ$``w̀;\Z0KUG\ZAe6X]\0"1RXp|p!\0@YU\0R>?\0?@~(,\0`\0x%\0\0O`z7@HV\0 @>\07\rv	]<:h0_&];\0!R\0%"8Y{8-98\0r\03p8_+	89g\\H.W\0(aʯ6?n7[''Wi1xޱw\\%p=)\0_[a(Y\0@4;\0wt8\nDV16@Lp};|]qxO ~QH.I ~Hf\0Hk\nE"Hr׀z7 M\0H\0Ș\r\0"YT٣\r3C [F\ZȽ"rzo%ׁR(wt/uW[q@P\nTo&T*N<PuT[긣@\r\n	C@j)аfT97МEmGځXh''`t)9\0]k@w#4z>\0Hs''_a|8|j K>Cٛ=V5`*005۸)0};0\00=m	.?7?5#c`H\rj<,ft`ekҷ5`!^\06HP`\0%4ċB''aB\nBvNBb4b[s(BQ_x#4B$Sr/BPC҈]\rnc=ڦ;:/:5|nB/2b76boN:b_ā\r<QIIɣ QY.\ra6pq_0O@G@X(GX<8j8JB<<֋<+FX9!<U=.!" !Aw 7$@=݄@\r#-*#p[1 AA݈ _-EP=d/(솠 7,}''`OU!8	N	BB0!< D]c\r52M;)BTDT_'' a狰͔Gة3vu]"ޢa:pP	G8G?8CFA8<@\\#\\?.	+:nQզHĵ/kkS/""n7!n@,.\ZeQ𺛌:f ^#"|S\Z#5}C5D_DV\rqgp>x\0y$9g''#]EJC=QmB$"NG$F$#I. R_!R<?i#"cfē`_Sۈ4ĳE&"H"{*CE4/!rv!̯!ш\n'';o"8{%#J\r#&eD^DoD%F\0Q2`16AdhqD4<.C4 $kMpD''KD; _CX\\F@!Fm$h7BшN<As!\r#o"__l_ADU5	U BC Fۉ.툩]͈>Y\01y1h!殧!~raŘį<R>bپ\0\\XA"=@/ 6,m!)AWn7v)qm)53@G\ZHY6rKBrk)''Bʹ! .8Hr/B"w^xYTD*_"ջFAjlnBj8!5F"5/H#5_!! uMjzk{GKېH`^iGi\0i4"\r Mբf_7GR.!-uG|fHgG17"H9$43:v	Ӎs\0#DC_w!qR&Hi$.+	ƞAdm$y&Iy;}BV"zp$Cɜ1D%#d$ v#9HN7$3͑q)<);K6 ŔyiTit$v0Syv	c635gaHǫL9\ZEy1zRaFyyYyg䕯ϐnkȫ9K;7"oAތ1CJ#oMEz =\03Yߟ ֯"wBu"Cj^ Cc !#@F8b>*LdTdTk2\ZMCAޛ|e%!c/"d6!hG&X!⺑	}ڏLiD"S#S*/ 5^EI-#ӐBdZ12b|Cfބ,z̪f#ۜ@~|q|Q\ZY,<,FmC<,iCYER 2YB=،AV#+R*Oo5 LCj1d́S_w!Tl7l2FތlyzWA4"5C(L=+eǠȏ_w\\Ȏd:Yy@vyU!אw#{ӑ {j#|r9p59S[*2@C؃VA~7G~lC܅#g7!E"ՑIsC:r2#}uS\\cB+{Q%wPv<Em2CI:*$K~FmYGmN"dCPR(($jm=xRHG)Yv5vr`(@1JyR!!P*(PUe(͏Q\Z.u(Mh~V<Jkes[ێS5FcPzQFP6I(+(E>\\ԁ\rT''\neh2k22=2g2F>@_GRSFjD:pR/C1/e鱈.EYQ[PDQL#5J$"P>(Tm7\n5B/H0P(\\\nD]ΣqPR(Ra"2CRTPR#t2@q2tP(hpT%9uC*EY@8ġlhn(\Z-(;Y=ʡ:3n:+:{rيЊrZD9.\r\\"Q.}(%rAF]`{b	uu3,uss"G(fL*3u}[yצ-UWzkك5^G>CtG?,D;QZFT*u&ChESŢeGNA_wF:4D%HY\ZuPwR֣RPSv(Q''ԣT)T鞿ͨ? *Kzfz6<SN}:*[&*;\0#ʍD%< *Z";U3U]*Q+GtAjYJ2Q6Pe_Q\\T |8CUZC&˨ڑ:W!^gagu4zǸjBpPQOjE.\\TwQ,STfoTߑۨ>c	Tj@4\ZgQ\ZΨaᦧícQ#F)gPTPcSqԷj\n_	5ueB>WD-MQ{Ԋ!ZcP+)K y;?Kh>Mehɜ|]h)Th(Zczj4ZֺF8z+,zhuZVЉVX@o[>VJB+]ۋ\0oNrt;Z#\ZRV龅V=~&w~5uSq1=ִ%5Fuuh=EOЦ\rhCWCaqڒg>&<FC^=CCa\Z0\Z~\rĝC)ЈP422Fͪ1Иhl#\Z&Jͣ''4I5M*BTKEj.nhz4Ds@ui{%Z--ο>1GA[k@[jOZm6h ]oh;ZNavhy>dv,uC''E_\Z/B_=vv?vB;/D]F_v~\n\rnv_;倾a7&=^Z^;''wo[#ѾLoV-2: HG<َ|U`DSP4tX}N^	Aw=FGy0ta:*:.~B''9NG''->D?YC?~B@@=+{O>)z3*g)g/9/ߣg9*ѹ>t^Eşt!]hADBѥ24]FofЯѕkJqteirTt1*\n]UEW{H\ZQ8V;v*BnF7?F7E7YD7z!\\~?n}\Z%F>zݦVdno2Bw\ZDw?	П^Awv\0GkE,<FKa+>zxh===UA]F[\Z=a\Z''Sѳ*蹪NϠIϻ?z0^?^>^C/{@FA{迈(_i1fLfSwiT̆\0fC>#W#Cf[fAL;Fifg<FvF+FZݎQW޼b\ZFS\06т``t:1W}G0''11́,ḰzUvc5cx1[1rƘbL190N`9݃0ga,\Zl0Gyn0`Ub@$0U(nO 0J 2T"	3"apcV\Z7Lb6G1`''CZP\Z)CG`f2EY4eb1- J#<2}XÜTm?r`la;.C̙A̙9>Yf.WWUk2-n(X=\ZIs^l٘ Y0yp\\xb|<10_@owLsyc"O`>dca1AZ2L(J;pPDNc\r0TLܿ	L|Z>&*rhxx6\08?Is<yRIy''I}iIa24IWIOLaS5L/&!&gq\rW0y1yBLnŐ̋0buL`LQOL)Sryq''SՊ){yc^wGc|lƼżJԊc:%c\ZјlLR2I)}/Rii]bZa>6a1=%1}7''1}g0_*001%o0_ݛ1%-̐	3\r3''f(0Ōw`b&a&fr1S\\fʉ؆Ml,c~`~eaJ7c01KW̚Kif=\r^׏]lts+y\0+ŘJ9J];bTKm*z۾*ʝ*<\n&v+U	Īê	X:UvZ4V?Vv!L>v;֏Ww_bZ5\ZAjVXkXX籦Uf	X%-]?XWuC6Cg5ܰGnaa+Xx`^,fafX9,2Emvb.\ZbXl	pyKpK\Z~~,f&3WciX6/,J1rrMS=X0E`|P+|cEaEe''Xk dd֦:3)FP<\rĞS={y蜍utabO΂`ŌX%c)u0\n9"q`&r^k>XLZ]>g{;;{B\Z\rt```\\!2!ؐIlĶHM,6J|\Z	(6~GlK+؄''\n6;lҏ}d	l656y<0}tSzĦ}>f[o`3We906''L	r?bk0;dlB\n>|[>[؊-0Ėkþa_eIbX\n؊\n[1\\V6V`{7ck-5]l}m+~\n¾\r6\\mh6MUVwğw-R*ؖ%^/lK:g#llkKlk3MmgVc;WlO@;;x1\r;Xe<=a{b7R/%cͯS۱Swag6!?baga缾b>.bS懰Kؕa\0*nK\Z''\0''/''y`''q5F2mn;m^msm)qۧp;q;GqʇTT{`8pjqj?8s8=18ݸ]qup{>t0n8;pzS8}<>N$no(n(g\ngb~gxę1paXu;Ew4w+wކ;wA\Z/`58=>LlqZQrqG8`Apӊ#ٌك8Rꅣhkn8},2ı~ǮpƱpA88!4N8҈)įcqL"\ri\Zg;w&y$FmV!m}c})"Q~?Α觊;G99qNo[qΰ8pW[[-ቻ[cpu8=ep~8N.@\Zpb"t$aM)`\\0:8/G"\nCpsMM{	{,%\\܍~\\;dz5.n	ي{KԊ{=Q==våA''qongqߍrr,pqqyP\\9[qZꋸI+K/{]qjW7^^%|+*eqٸZy9k]4\\󷓸X<k{=׎ZõO#pb\\7N\\׹op\r\\=\\/\rډ#9>=[-nPY7م>Syiىyw7^/n\\+7>1}}p.2f)dܔsv5T17Caf(f!_p?U~hqFqɸe&g([\0Ec҇Vܲ0n9\Z[~BVA/ܟgŸ0z8m866fq_qfozp/^f/㏗.PRͪzx/[jrM&ea3xoxA0:SW]	^]($~R]n;m	^*9^-ﻕo[߿T?47Tqxc(\Zo|Zo|\Z8o	\0o	o77ދ?T?do>?Ƥo㡖<a'']_C\Zx\Z~''IE9xR[<l+⤋zi-x{?6gN''|P2ؔnD7xSAdi:6h3{x)R9®k619)"FŻy݂Yxw5{`9v:''\n=1435yMxP''9U{}_+A$QWx|p\0Ysh;<Ћ5G!yh1|̏|o|\\>|BK|''ÃFA\0Yc7}gNay">k9ղ՝0/:/؋/~/!_Z×\\;O+L\r<oަ|U՛s["Փ\Z<|9|\r)f3`|cyk;Rh1mb|k;u\0xm=%{>{k>W"sa\0sv/P\07~(?ڑc*c\rqbG\num&''Ud~~*D?x?=gXe9I&M\rgy\r~A>}mDQů?}''k:2g+zV?sM7n6Bkfs^W6U¶iAQPFPl (NCJBR @P\n"\\C}5@P4Of4n*p6/ %hoK\r{AЛ#WZ{/.}%~F؟=APΆ`&f\\"f~<$E0W$T%9F+%	0"ȟ# vd3c!`)Jgpʮ:oH+Aq/(5L B"P+h#ڽVG|&p~Us? w$ęLJ!Q+Fp\nM8Up:*`M`z`seF8A$8._	._.Ğ#8EJW\\z >وpu9՘buk\0#:#}]F|.|/<	AƄM$RjBfR	a	ws	ubB\\!D&b	do!iw:!@HzcOHYNxԲBHmxDx\Z IN_&J<*"d	?"As=(5BtBoB^t#!ԗ߸P͖PdRG(*&p&%+vBOkm#RAB՘)9ފиExw{Ox(KhuAh)"''	mTBۥ;v,S+Kè"_	_	&Մa\naa 0jO\Z\n$L	#Ƅ|M0Jo{DL"0ٜK>L1%j%em%A%,(<Fu_u¯&[Y8a:CEº/\r9+0yI7\\GpN%n\\#JY#$JGe.D@}ll?qˑ-D1|/qcQIzTqqg<Qx!QUOewZM9GAQ?Ox`@4DFmDM2CaCMXo_GJ{GY|oD`%N:CD/g}D"f9?Hĸ|''b\\	fDB6(@$&CzDRq\r""ҰDQw"Ldc7Db"&3Knw"r"a7KCD!hJ<K#\0KD{%DvOU3O#Hӵ=D\r5k6!ExÇx92xqLLt^&ƲSp9ѝJtg8˺u(ՂW*DK''YDω/D/	+L$%ϊAS3P0b裗İw\0\r❟ĈC%Fޯ F)3Q.\rQ=bUiCb"CL\\$&pI_])oƈ\ZS^*3?׈_mz''''Ww> f]#D0$GzI,(/ }&1%T~%!t" &>-K|vʎ&)Zfr;X@"֍%ֿ!NlجHlU''|Ip߈ئbOl#Il#~<dO,Gh$~R{F{T=<b/&ΛŽدJ/"s#[Ó}Q|6ql-֋3;֒i}		D<q#E2J:[La,T88qNSH[&,HL\\I}#5q\0qeq=J\\?FЃ7}d<MwM7M٠$	J}@YbpK"(\Ze7;Pqh\nl@%׃%pp_P9LTyՒ	ZuPFYP#Xw_154PԶ}(hp=p_6f&7;*\rAC[6h\n\ZdADxc4)w7;@QU`h	-H*X\nIB70a ,o+ B[" \nB \nĎXAb1n:dSI*+RLT\0vͪ (A9d  Ț\09$+8rW  %ȟ\nl@S5(4v\0Erh^K\0OXSSN~W633,CA{\\ڗ2@v1p?Y:x-[v3!x|7/\rdl(x9"~\0Q^757cgM7*;A<\rz[@o\na\0kzv''3k`0*0-@w7O`aY0Z9.[cXc`50^Lx\0&Z]j$0)>/|z|H7)r!0>rO-L\rN7i/\Z:i7fYOۀO{LH&Ep0;(e$9`0#\0v;G9IIPXx\n,gtXs,Ye/2RU#	,D|Vukd5A`m:۳K=~\0|6\r!``\Zln?\0[;΃(X-?vAv\\8~BiJS2_=<5x8!g88>}\rS}i}tp]N\0Cs~8\rϽYbA\\.-z[\rPD]&l!4ڑd/䤴I\\"I~LDR$)"),rHbI۩XҎ4%$ej4Iy{DҴ#iI{H%H:\\.K1Nڧu/2tO:PL:0D2t&GL#F2?tՃtt"d8\ZtO:##2&YB<I	\rJNd5J:~nt\r	jϭ$_HN"ȉԁ$	V/P{I$\\R	7"\\$ұS$8u~4$L${ؕĮ#qIK;H<)0$I"~#IttB^t"ct0d!tdG%V("SIclo_.X.dM.ՍHoIHRICnJ''n#y4Z:X۷$	R$)42F\n#h4HQ;HҽvR)vn]R܋bRR|%҃ěDdR<OzHDO)J)gHJGRIy6r_E3"R11)ە@}M{Lz 蚐\n\njIE;ߐ\nHˤB(tYTG*+Az}5u2T>A\\+$1$醑,FHՏߒjɤkIukӓt	RoYjt#!rҝJjY#?@j婓Z>lCj˄ڲH/HfO> u=&uCIqOI_6̮dIIUHao!&ҰUi8҇41;O4w49$M="M~L&͜''&%<cEi^	i>thE<HAZIR*ՠRjz3i_!WIݷݷ$K%\06yddL?,;BޒPGޒ!ˁd9j;Y^2,JV +\\$+>o''+ْ+KޞBVKI#+W4OUUUU{d5RnC&Y2L֌eZ0GY󸑬;F1''5Il\0K"\\Y%	[Y&wk&&fgfdm>H''٢<|w|3J-ߏ!ʞdm2d!#ddHFQrwh\Z2Q$KdrL S6Ȕx2Nf92g\\u.''uc2d\r ރ,̸EN"k>O:gudkG+)g46OMF- Y)䳮4"<|!}{Gv;IO8Cv"4"\n!rȮt\Z#||Yv|~||ѕ|}\r<|C&{溑5">`''٧B''"&\\^!fw$OCɡprXl=ΎEr̵o䘛S{Փѻqugƒf+-I,rcgrrU-&f8rT1T*99êd/IhKdr&y?9sΞV(9_Cή p9ȅBrіnr!\\q\\|N~ҙ}+Ce7!z`C rUf2ZZ҇\\W\\HǐkT뼤o1oɍƯM./MoMyZ{rkO)r[#rG/ܹ/_ɽGB}}䯼&䡚3Í[#x	\0<:\r''u~{߶$O''\Zȓei+yFN9MM={<5<''xDZIWEoU#zMenA$ku+n;)/4JźYŭ%4pE1E"e&sK%7EUEZLQ_ʣGH{JM,.vh8R(:u딽\Z&6ʁJ8p%0b S)F14=bNbFR̃b)e\\ʡW#K}?)z̗ȥ\nP\0#|\n"P(#(i''\n	\nl>_g/QhWGi\nc/\nsHapLa''pU	EՂ"TDPNQNPl8\\M9r%rVэr|rZr66rNrݓr>VrCԆtԑlt⺓pcp\ZOLERrUzrUmr5OvHr|&Zy\r`ͺmg(rO)pxz)^E;/NKJUJP4_RBj(!#є)wQ¹(w6($JtJjJW)%ۄ\0YMyMyK$JR((Iy\r<%E?By@y0%ˤ_"PKz)w)R$WNɼƣd<HyWϠ<(ARr:Sr9a|PJ~ʋ.+BD--J%!򒺇RښIyuRvNx{DRGy\r-ƵR"OyJOeSjۺ)ur)j(o)\r=2ffʻ܇(~ʇZ݇(m(g(m?)NΙ6''J#\\)}PJ嫾e&2ZRm!N)eH2t22*s*QƶQ|.RƯHQ=@|ǺQ38T[eʛ2#s27âj ٪\0hJg||e9gϙgM\ruĕ~*!@Lݔ@.UusZ[d	m]-TN&uTTZTUwTU(WTՌgTMX:Z!U-=uV)&ى\njPu>Qz!TKTQu2uMTTH5{j͓j=jvLj=୿T<8Оa]%a&U7\ri-kTpѸ*#\nM%SaWM\0hϳTܖ.* 0H4*f@HRR\n4g*}$2PY=TA*R-v \rU;O})Q̩S9bU\ZաXz''(W`WTGX/ܗ!y\ZڨR;N_S}ͩ5eAT''T}ԫ{cWW˨SEd@TOy%zpǊ#K\rԣ*yP%jp\Z\ZTA\rv Q^&RﴼwיԈԘ-Z{hXOԸ[z$mꣷ/vRӆS卩LRAlf:QW>?5+zǢ풧7GP2ԢWԢu9jZ/Z{/Z&S\n(jn>\rzJZTZRk,j=}VO}r1{t@mI}B}77B}J}{_cvjjـR;cjI	ΙOJ."jWZ"UkhKosm)`-uXut::^-ʆEHD:!c:{iu:Go|H]Bw66.ԥ{+QUu5R=}uu}#ufu{׷=O#_-HMs݋&;L,1M@&#XҶAѶж>5h\\WhiJ	4K4Fm''3MEc҅Iv]2t.R*MSMq`h{nPi{ =σh{zhڨVW	M[a,M_!W$m"m%ځ4eAOa4(\rx\Zd;fG3𧙥z𴃘4s@a\nڑy4fDYю IT\ZH[Ӑ44\Zq\Z>M:id\Z9nFQQ`h44<xј&\Z[ΧWo8tƣni®4:&\neN<>H;yfs=vY.ɍrv&F#܀vn)v.v]څw4''_4gIsw"b(rn+ڵ6苴qRin-nyd<Qhޙi>|[#i[iWe:-fއ5ZZlC-g-"Kפ=>%/%i}ش--AK+@ˀgўߣeIhϥhϕ%i9KZr''-ϨwN{Fˏ0^+\n|UhiYB\Z=>Z3ZeR>+Z'')Z̓&ZwZYZ\\Z,V~V7V%@h\rBiZ)ZSGF,Okڮ-@Z{@}ֱe/#1Y@NӺzGz.e+>JӾ֡|H8Iw6pq6ԡD^ʹew\ZmؠM>qM\r7f\rgh6Chshd)eڒ5ڒ3Tɤ-T)VշVwV{nVi_h:?_\\cʷRh7T]n_?]*]d}](]1YcVtebAW\rOWlBרB>ZN~M~~p;OѶqnSJ7.쥛=Ч:N7L7ϹD?O[pbgV8kUP-ݪ}vCgp#Uӑc\rtT:f\ZkEǆܤcӴZw:nLM5:N:-h_I3:IN3ktƩY:#zΖDg9t̓B"yjKtލB:A4҅~?1ti58=.ΏO<$Umu63tGMo/ӝ_/x]]t7U{y3F)7qc+c)}u6SNEߤ( }oAA`9z6z=EG.xУNc:zܿez|p]w\ZUzB)z/z,==,*%G\\?nHO裏3v;Yy^ZfRyzi^I/	aDEC-Coť_w&?\rw_w{轂؋ބ(zo5gVzr(>7GH̤p[>>E|>>^x>ިAm@F&A8y>Lv5["G>}_}n}.בhvhM_tܣ/YW+髚UC{2u}!qi,!Ɛ،a`Ȥه4bcaCn6C>&zPt-`(.80vj1O0ʕ{*eZcc\Z)C힘+%{4ihdhY3Hz%MC=`|{R7c{)}$\Z@Va0\Zf`dRGA݌c*cDmЊ\\5x0#&qǞA|Z\02BO5|>`32!֡ꌓxbɏrp㴧?v>Їᠾ\0{pd8|d1g2ί2.f0_1:*N\\\ne%Z&ɸ¸L2g\\g\\2ܼ2uv0s AUra\rVcڋ=uȸX~e3363i `F#4ZZ 3b?b-0"TQM=F{_3`Ux݌ÌFYF8[G	Ͳt|	#Y7#{l1`9''yRygz͌{\\"H8.Q#JFSFE6fTtU0^92*eW%?op?Ui\0dTz2\\6FQg}^`[2{o)1z2o߿c463\Zkjw5Y{\r{>lcú`|d1>fJ1SNSs?ˉ\nxMbD3z=ջ}O}zWR\n1.ng<go1÷wI''[ƔQ+ca&<cmke<|1Y<Xb,\Zb]Ҍ??kkU\n3\r9ߴ<?{\Z:)ܔp)u)ّ܌aJ㤙2Ԙ[/13`a1宾c\\gk\r0d/3\\ƙۦG{Pi4s:Sr5S7e]]gf1w]f&ܕ=SԼ|9^ejeOdsw2BN0. 4Q4Jqb\Z51c&&d	+Y=Cs̃=LH}桞8^aZ" ih<{<<ڢʴ6dZleZg0ckLL`&(	xL&"܌,bb\Z=;8*_}IeLe&5ImKf%LzI&[,ݭU19L,S(a\n1E7iL\r^*ȴO2vL{txt9t<</f^hztBW3M̋͘LKbMhLK;n6kC$_׳"7dz8D1=1=	W|^AL^oOV&w/wQg\\a332̀kqf3lhyGN93y.3BqQwMbF>xʌd11DCz{"flk}]}rfg]̌s`ƹv303Ĵ3fSfrWCw3IMΈ1|bTNef^af֘ϰ^3̜ߎ#̼Dffu	}̂t_f%,\\gh3K1KL\n>2_aZ[cbǜf)0''0+}Go2s5Q̷Fon1׉f\nlcevR2o>fv?Ybvya9_"k_=K̯-j!S^s-Зg̡T09b9HcECceLRCs"J99Y(˜vǜe?aݙce΃''<KyF\Zsee7ss͞1np''\rϒΒT.bIYKdɳd<nd\nY\ZXn-,9W,w?Xz/m2*mjm,\rֶHr7k{CrqY"7K&KR/fz$diaHft6lXzYzpޠAp־=XoX5AC/``YeeQ2jmcC,+,L:`#e2Ob\Z`qŲ:*`aYM&5>a[&7/X-*,K`!d3,\nQBg0,P''obYd,JQEYo''X,\rא{7$Rv%a	Y⚝,əK~<1֩[{YMlOUγra9]aJ,%֥b֕7,<e>*5uu%uquC.uR\\dyC|^<f|+g&|JYGX~ҫ,wY~x<+Pcf}\nwa9ʺ\n/8ºafˊ~bEt~cżu˝̊?e{Ya$Vr+J$d$eldRgXiv4_VZW?XOUa_YYrXy>VYV!V~N<+2U4Uc:Lffko*XoX5ze_ViKV;ղ?HC1ǗծjOcuh:9ΑJ֧ϷY]Էn3GcLJ!rYW~ kb5体5sb\rߵg}n`M)SY/ر&YSXtxǉ޳fdRSXs\\\\%k> 5uXg5d+ZalFVbwVYzGY\ZY6%to7=mdKdKR!|Tqv).&-sʝ-s;)Q|[n[^Ǝ-2[V}Vzq΀Uyll_*ljϗze''>fc(]`uٺTH{_]@m`6؇<aa	f[D.>gC?`CٰZl|3gQҹlt)`qil#Vxe6>\0(\rNlR+"UeS9Zl=wdFlp6*W9r6ǭ͍f[O|E6!-HXb{٢$<[4Ķf>V}mk^Ͷ]̶Mde6>cvg;4c?g`;f''f8lgf29o7ۥvc/5d_ַd_/;e_d_QWf_mʾr2}mҎ}m}=ʀ}À0=[v=Z7^cW޻3wo>3l_;;X;;DfƳ\Zzw\nwOw\Zؑ4ّgّY$vT	;S1;	;:4}g޼};Obǟmbhc?d?hg''Z`?5~ځ8z7;myv4;=''?ٙ<v윁\Zv''vdvnG80?g_~Qu]d.lg6KnKOK\nKo٥WXvs]am~ӳ]e6<\Z=ew"]nϱϟ_n|bMg#ϲN8oes]a{=6Ğ@''N	"{ {+!PgO@c*{7b\n7s&{i<{i{0\Z{iUd鷱NE9#\r	F**g3GÑ\nlqpd{-9re\nu|b$GeGeGmQ>1h_Xpt/ps*]쳻g5.k}\ZǠٟc''LscsСsYcn㘟rsC,<8q=ut{0z@>q\09"H]\0edAg>`x%<݃pR\nLJs{ÝCrHK6r{>ΡX19oFQ>awqNm *p,!sU9\0sć8*.kJ5:s2(t\r2>Aqa99xqX看+\\H\\xJ8<8K^8\\Rqr\\*s\\SќKz6k-KS#IMx\\pxws|n.qnr8~\rDN''X''87''=\Zz߃ȹ	qN.''zsυɉ8˜xe''X#''E{pK<hsqsa#\rUN*IIs9IfIW-_ᤧKq2kKga,]NVSNV\n~N6}ґTɟ2H9%iO8/t8(NEn%uN%SMTvm]ͩ/xrގ 8\rw|8\re9fE''N3:9-*8|NkC;Ca-a7ltv-N(to`\n8=I9=ʜ^0!NoNs#Bq[Η~ZNǜQ#gXj3{3j/-rƝqsќo\r)\nQￖ8bTI:gUg&ۅ33c3KP,zr~5ks~''''qdĜ`KG󜕟Οu&οx^HWre4V2-S\\-B\\WSWx*}e7WwW\\\\>U-W-''sKD\\\r\\̀c\\(_v\\4W{Hk5ݿ{VO5l\Z|\Z)ypʑ\\c)qTL	II=kjr%*3lmvG-\ZM\\\\#;V6cc(.B=EDn"os1JI\\)sń^b̸R\\\r;.3KjԠ!.mY.3/udUSe7*r9>\\z{Ą˽rg,B\\%W8W|"׺\r毀{*2{+kkvkkG\r]:WܳgOrQָºNT맹.k2ҾK+w۹"ՈܫosEl^`[soTfp=a\\B_n)Gn@n`n8\r9\rI↶<I˽v{g7<6n$΍ʖF}FqTn)On̪	>{9`,&*&&{pS/sSfrSfn\0nz]n܌''ܧF\n(47j5B͎qvB~qsӃUJܼq\nEp_\Z}7nY\nnywnuk%'')ܪn*Uͭݙǭ|֯r:666]6ppM&vi6r2{ݸܮ|n_~#s-e\nz1Ke<v7Ekw|u;⎮厝IapǹFs''q''߈S^q*qgo{sgsܹOw?}ĝ.r7up?>|w5]WuSC0i_Nߑ$r<	7OR3OXJ9Ϛ''-cɓȓ=S1<<ş]<hގWry^<՗<<:OXNힼӄi:4\Z44xZxZwx{nxxK/	ydy5|3<<1֑gLuG}GL<<$[ޡy<q:J,J;&?;&<;v\ray<}l"Uüiaye\Z×kH%<2ģvJ<*=7ǔco]q-Gx[<ᶝ<q4D,D-Z魯"fK$"x;lZmϮϳs;?;[([s$\\9>LÕ5$ν?s9Ÿ<5z37,wYwA/[x''''ɘEyh]<DߖB=}H&/@//p[%/|Bgyah^8wWREfyQ^T/ڦ/ݗH_K#Uy߯Jx.xw2>Vy4	yϊxLx9]\nE_^i3Wk?xĸWbb+佔+:V{U{W+Uh]tUPyof\Z^;ּzhJ\Z5n\Zpek{g{|עznz<v΋ֵ>庛kx}6!b/:''x_O|\r\r7J:~|fțD(]Mf	jo''xKxKo>`yKy	\n7o5[[7 y#n7,%kjRD/o>ȗ˛xl˷4=Tyk|ŚRWJ|叇*k|u0wq\nk4w\nr|DK3|mp6-ͯ:~_''??R7zo@@~MȪ|Q(mAEݭIPձ|ۡ''@qG4ck|7UOr{O|%4'')2|J,O+齉|f>{p7k7&|i]2Z._T2η&e~|_X;Er.#p\0/[%SZs֑|Z|!c)D-=|/bWqWs~\rB;A1~!??G~oNe}]~Ϗx\r?jGqQm''L=364p7\n~>?N$Ǐ_G<?%It>~::?C/~f$~a~E~7܆6~SWO3/os%~8K/KWGe3eN~-Jsuˋo#\Zݯ\Z2~V~x5k~/(o~HtⷫpO~ǈ/sܔI wM𻊷{S_]C. m\\)>?;AsrOgRS~3o/\rZR_״--	0[Re(\n@뿜y''@"T @@@Ѯ_(PC($v\rT4i(**TjO	Ԋ]ýLJU#莬	E\r</<\n6fB`n[phys\0.	("VY	|(yM@2ʅPN@P/\n\Z=[@gx@NR+|p6	Yմ@/~\nN8=XnX|\nNil/\\CF}̶rV[p^)PpnϐIF,p#.\Z<v.	.OOx!$5Ͻ-4G8K*''	|\0_B t :(Uz`*^~RMpj bR_H\nľQ7''$&''xoC AX$HvO<n,H&x$x4R H}"H͑<F_A6 W (-	?\nD^ŝ$^BSPq_[3SzD$xcTZT\nj6G궤	/ԧ޺!\rFkAh/	--''_S3Cv<A|󇪠v7CзJw W1؏''C3潂N(:E0,|y	-ߵ	_y$8-hG	<37	f*?rٞFBi|''i%5%zk"oPrKBi?B8t/Og̹[B0LpZPNPE(ׇ''	_8fBڐpsBx pGpgFPU&T}rA.qS8T;U/.4r)4z(4\ZpZ8cPW!hBM0u''!x^#g	BE?)D	n	QWJ!\\k{	!%2i"!J-rB븭BI3\rᩲ0CUhExiQxUQ,#<''8.<׵(<*<*]%"(Be^m\r^bo|)5yE1zhztzˊ+~0߂0pG.ECQ9pSYao0BZuG}DV''y)G{"?C-N\nЍ|	Ħ(aIl''L&\n7~\nSUiAaۜ0>\\-T?&̌$fH\nk>/x+Ff\ns}¼O¼2mEK(aqȐaқWY6²2ay7߄UU_Ǆuxa=灰^"|;E6>6|6]66m6PR/|VR/*;m6O_a[oaQ-쨶vN	I?#O~=ElF\r3L##Q_P8O8\Z,&]-ֳMmM<Z=T8a!*Ip2p*N8sG ypp%\\g\n7E^ąѦ2?drhs_l}ۣ"=4"%Rm)vx8v<)1%)I,TD^"h+S1%ڍ)ڣIi/	E:\rd~!*wP"C\ZPdNdR?)2fE_\nDEۊEEYEfA"Do"x	<3MDUa"JaZ-B_0/E}"H#Yc"0FGNH"o5QD͚"C\\PqԊ~P(^YYYԊN:Tl5EsE?GEJs y7?B5eG닢[.E+t[=''vxMt}և"ȋ~AP$ Jo(/MLlFBLE(]Qi(⢽(jo(N>''Rŧ=ȋ%6\rEI.ҢK4ѣDE鐇F)Wy(3[W=R@e_ȋEٝQh۽7JD\\QPQpTT+-*.J^]y.zuQ&&){(5\Z\ZD$5ѻQQiIQ9QlĸQ?U\Z"Gײh\0Y.\Z*\r\Z.KDcEcѸfxNWLR4q"D?DvEEܞќNhiY4[RV$Z~M<Ѳh5#+doZ-o].V˔eʰ[;rpb,/ZxoJǴ;XwX̉w\\?#ޑuJ(++#abyXMTfK.5Pbk\nb!XX&=''~''֛mmŉn={V|ؠAlԵKl,Rl|]l2IlV&6%?;i''p\\|+C|l[Xz,_CNZb`''FtxC\r1+w	*Dg1,&%%T."f^Q\nb\\	me$0-|->u׿b[)-onLZlYlo.+N;xbWbG{=ߥ+JScKy+e+@}dV|M.v\\|i(qX|m*xM|/]|\Z]|랬أMi-7{\Z$ד(WNύ1\\XQ\0ea"єd\rг{?v+-+""Ew9w\0H\0!!;\0!Ol@x (?"6"|\07z7\0QJ(u@ԛ̀e@4?sB{b>*\0b?S^ H(\\''\0n08cA\r\0\\\0/h2[yl7799EI)@A@^$D|P2Tl"\0**e*_|<x<x	xJ<MɟԬ%]=uԾ\nk\0\0åuF@C@kV$c%EQ4	xu$mmF\0__(\0zY>^@,	vc00hNN\0C#I\0#\0z\0%ex	`,Aex\Z0L+&{ɥef0\0==R46''&e''`3`OsP{(g\0XXvXAVVϾ\0v\0֎\0\0֛&DFm(ߡc;@9(_ ʿ\0*\0s-恛Հ[,[-mzwnjIZR\nPPi(ШШ_h|84hhv{P29:phŎZ˅;wm_,M1@{tࢁF\0k~*:h:uNI-.gI@7@s@wR8oGO@ϦC@/6[xӷKڛ<Vtve`sm=\0^t^|g80H,0I@@M{\0@h3 f)aQ bh Ļ|?Ӏ@@ yhHiJ7XK m2H[2f*m\rd_\0-@=g#?@K>Pr(=J7!ao!Jo!c7>C߭+>Wg1$0z0X<\0L*=LI&C7>k9Gioc1߁Yp``v0q`+1yIys|_{Eཨ5`X\n,(,L,l	:,\n,>,\n,V2=gU''jK2\rXNw\0\no\0wo;\0lG[lKSؙ7v\n|	~5M>\n||kD\0D?Gv~}$o	y;\Z8pb&8Y\\2ni~\0~ٕ	g39$Z]Og(G[n_rz''ߴ?7mׁk7A27  ''ͶQ͒<}&-%b%Zzu%:V~V{H\0q#HwS7Hwg1Ha\0\rO4<\0''4dd&x2/ev!A K.%\Z}csEgdmbv\0S3U:kB~wIAN[UANAΠ%U?7#e@GЉ  bB\0dqd=ȧY:#ځV7VAmt@@Х^((4S$S00&BA_$AxC\rD!I `ip= ܭn>g_DAS b,bW8QATW *>:@1ib(ػn8Z@ m\n$LpIr@!@@ѠVyPXQPd8tuPtc(f(V2C/@	Ar($z":	zYЍ<i2ʼ5*leߺ\r\ZAyQf|&(PiPr7^19P	PTPrtt086TR	Tje*>N*@QPУSm*u 艷w?PSP/PQj\\	jzXj~jj5r&Q P|Jjp;j7ԕ#PO͵Po5g{n|_V:h0	hch*4\Zz\Z~\n\Z\r*hc8)h<\r4\raMGBrZN\0!ho\Z	Yd\rw<V{Zvm|\rq9%ɀe+`RX1\rV,+AJ5`ehxˡO8_V:x[@x[#x[jxifV?\Z5>k:5Z``΋ΛxQXقR`}I~;Xl\n64\r.XOFq/`''`{TsdO`;`=z!{_YGߒN{>/@GUر\r|Ķ|4	 d1),e9l>^{|B{`΀=-^jf`wyw/	|RӢ\nY	\0&ڃ}Oi3:g&Ϫ#wχ˃/,=!Yp~e\0乀!`(b;GZ50FiAo`|@+w^dD \\T0&̔E0\r<~ywl~ž?%`i=Xڎ\0KǮC^p!CP:p(8l8"b\r4GN.*<_1=y/~N''zn'')8\Z8C\Z*Z&ECS7Eoo''LoߛDS1α&sݢw!໘dp>\n\\\r\rw|r\r|.>.r:.feKepwpm6"F+\0?֚W\0?\0?9~`-^?*?[k9)SK5)pmpC[3\\ibTn=ܚlnHݬ__=w}"fGwo7,pOop7ྀ;3&]4xxf+y<}\0<ڧ\0bxX<v<0xb#xKOf肧\0_Kv,%(R-<zx\0I]փ_(nB4@#_BoCT *BT~@x\n![ll	qf^QAJ uS\r6&2BH :DKȎA4dǧ6Dt\0W\nR-dg`i''P1\01:1ꉅkUBL(Ip4tuY>9bNyŇXWA,@ݭؕAZg[kدBC]CC>D88y@?Bߵcs5=q}\nr<<DjC<5 \r''!3w|''dW:''(Qȩ֐3\Zː3 gm& ~{ ~V$9m6K!UZ R@`L3!D}`\\ eOn>/@E;!Cҋ:B眇05f!L*W\ra?AC~6D	q_0PDmDi@>B\rS!ѻÓ؀w(H\\7s	y?$l\n$P!r$HJ:$UJ\\\\V6  hH]kH<$k+&@!w6!9g+ yv|Ƚ nC\nN! J%HI-t)H:gGnVLy UlGȓʐ''v''ZTH\Z33fHm+H]/R%F\ZHKH3HB>yy\r;&1M\nc5q5ygC$(Ȉ[	d\0~$3''K\n\r2~d9\r2|=LC\Z숀fdA~R\n ?yB7!A-_ EYY.xY?YK!+ݐӐUKU*$C@!!J.CeP}rP9ETf$*gBPPeeU6\0TݒN·:)BU>@4EPFT#Y88\nAuEwzǡzm>PHH0|7ԨԼj.ˇZ:9AhPkPk>m\0]7c6`kC?;@_A<@Cҁ8=cu:pC43.zPs4kSnu"Iz2=9q\0\0s\Zԏ>,%\rzg;K%AP@M=Caٷ,(E܄"יP)7C1CuP)%B	(#JJ%RPPft''\nJPPqy<T9*)J&5h4KhM''hhahX?\Z\Zm74R\Zikx߁FUAl^EFhCG\\hb4	XMEC")k25ntYUh:EhFX4cfiiCQmhL{4/lZx-hXBBTGh	ZZr2ZE\r}B\n}\r}~?XhMfzZ{HZw6>5Z<RN0m>\r\n05v@;B;oX@_݊\rj\0}5\Z\0dbCBdݟRo;=mоi/[зϠkMۮA?8\0TmBǺ77AD@''O@''	[O_=~|\n:sEҡ?\nA3y!fbX%t		]>|''\Zߡkп6<\Zq+t]&#m 6Y事a\n0ū\Z0\ZJql˗V6lm#vb5Lz\r+i^4i)tazr\0ӹQ\n0Y#&	flS3N<3`K`f\ZJ0>]ưP0V=E.A%ءyvs9s*srVy\r	7VNMD<a0st=EKX;\rD\0%0`\rCV`[0>öl(dT!\\WO`w&n	?킉tak0im\r\naZ`ᖛa\0ȣaWNîDî1%{KRRG`׃6înt2ej>eұ,c,}X>X2,p{(,ސ+ 8еV(	++,j+2+\r+	V\\\0V\ZVV.K\Z`:0X:JuJ	ONThÞaOoc\Z2{\0kkh\rkxku\rb`>q-\r9zS"lRcwh؈{#5vfa`N>ρ}t}y<Mþ?M<}n}bf=as`C؏#|\\:w\0lѨx2JumؿM಼Ul\\]DWqŻ\0\\W@j~ p)_M\Z\\\\7j7\\\\oA׿7	7R=	7J_71>݀:M''p3SpWp)|ܲ_qR[mv8,^no?0Ww,it;=\nwˆ8.퇻&ݷlJ{1~pl~M~	h	''p689fpw;8FCNIpWN3j\Z8{οMb<.f%kprxHixHxPx@x,<><K\Z\05,c/ᱍn8]:x2<^w?O8O(<OL҆''!7ko	~evwz#xm;<./x^(Fś5?xP+:^>iX+MQGǑsj#A?6\Zo\\7\r|7/7[Ԩ[8V:NU8\nZz\nz#mq@F\Z3BLp|$\Z|\n>\Z"h>\n&ÿ~g@C9A''X>|z\r/i</}W3kDzKFP)!x-;ߴ?R_ \Z''JE^o[T_ P5CC''\ZBDb;Wn''4;ë;3m+&C+maD&eyQC\n¼VaveMu,X8Vm?ػֈpPA8-D8<GE!]݊88$\Zp "AF#\\ k#%3ǳYRjC~"NM!μB%ш@9"RQ@C\0\\J@b28䇀szt>f\nUűAIf!(T''DSES<j \r!\\Ar&D#"TJGBW1W1F1.!b5DvDd=""	{\0XHb"nC$w^@&#R"i+g7n nܜCEƶ"ҭ)$Dz=",\rȞڄ!}DܕFܝSFiACy#\nz^$#J%\nM3DŕycD{O?!sϫ\r+F1Dcd=h\0wѤhr Z."!uNUī W]rO5oA}A\rtCWF=sA1TkxcqvĤEbj?\rb\Zލ9?CN#濔"~9mF,@~X<YX7 V,1KU&GރX׹"6m_!X"eT/#eʔvJHA\nrN䖾)X:r	j\0\nnT"5\ZSH7HH	&H=H}~rgz?`?/uih1X4"MG&5H3w1&ŶdE2ri$GGZ.#Y6QH[}{!!#N"̐?W.9HV+_fOFz:Bzũ"2#֍޳>sHz1wmy&y<y1,"o C79<y^\0E^4!/A\rHH`\0	#A$; H&v	WCB͐0D*"HQ$\\9 aHj	v+IS}HF^$\r׻[{#BH8)xBJҲmod.2d:\ZEGFAYȈ|dȨ_Ȩ{6+Y+OȫF7$DƽF"&2Ͷ\ZV62/L"A pdV5d2WP{H,E,!lECE$5yd,\0x>t}ȧ59duKvYKEJݑu#^ _4Z"_G6=kF66 [ [hQI75ٶNGv";a{#.C%!{]!}o咑oC. 5ޕi],rd2r46idTGcg,E+X29֔|FN22)(Wow;1rEB_ sqok,Hى\\UF.}\\q>;\rB"׵''N"D*ddɶ(y\nJy\ZRRF4Q[~GmV\nNGQjVQ\Z	[QN(^Oގx.K2܄2.BELP"PQV!=r\n=*((c=>Q=P6GA9Mw=QǶAsP'':-P''&QQ^[PޏE(VIG$=\0BPͨj''PG]\n)~_@(\n`(&A:P=Q )EnqGQ6Pb6v&E7@љWQ*(gJ|%IAIPҔ/(i%dBڢ""b\\mP1Qq/\nQߨDpT(**JCB]IP	PZP7WnFE؎JƢ2VT	TtTZTf*k[*-ugDgW+IB?B寞F[WJJPeP]P* Zʸ:ԣ8׳+QO\ZbPOe7P5i*ZgTUc\Zj^QM;A5ZZP8]Tr\ned/ꕠեסsP7J7AinwƝw!T7~6jf}&Qfn7P/>>''E}\rPQ_B/zo+Xf*P?kQQo#QQP!?OQ\rPQ_P?qMqЛrg''r;\\wZGG+c~D[8Foyy\r5\rꞀV:QoB5IEhe@fmICV\r_@mE7ffgsܣmqmQ(އC	EL''zg9O,<ϻ&9ɠm./n[΢ݎ~hoj9Q''}rG:g\Zچ=>>JAFEA_<iIG_A_R/yT"E2tߠl4`\Z\rA%Рh#h\Z\\胆|8)lEÕ2=hx\ZF|4NpA8hq4э34ch/4}fچfz!̌}h+4F(_o{"M*F\0fh&ZPEhA=2:4PGG\\\\FG7q1]t""rj:VNB_WAo@D>N''CgUCg:"tn~-n~:OE/g],@SХ貸Qt]tWtJgG?xǉj''nSa)t-t-!]gh@7$_ԢMf\\t$wY\Z53]݊qApׇFAYlA+g1@!zgnCAfN:m9=d=\0F| =?s[+^W2+op5uid/F߼##ۏ̮bd~a-0(]bcvbcڪbtcKOb?l_wǨ]Ũ/bn`zoaԃ1Zg0:Xn9F7\\Jcm1#,c*AbLG]}KKMuUcl!aʜ\n1\n09ӯ1`)a[e0GZ1Λ1];9c/%M}9ǜ칅9߂99=vsn;La.Z^]>c.݇cb%qUSKb1G#l);׍Ơt10\rA+Ơ1^\\sCrÐg0w1܏zC00c%*5pbx0RHF(cD1b\r	b"D!a\\`v`.bc1Wp͘xL?Lm/&6IǤ&R1i#9L$V`0#7)3VĔ)La08ʿGDS혧\Z+0SkSkԕԽoیi`^0/1MzLK**Ei}ƴmiyu0tb(a(̛vL#Yb}}yky:p[=ebüR0~0O0cc/0`&1MI\\dfmf\nUZ;zZ\ru9L<fzff33례q[3\nkfo̟&=bFfkb?fY ,gaV1k&0Z#fِlأ0B2pyM|VH>V)f\0y\r4v#}V5UMUj<\nj:\ZauTc:o;awc\rձ>X;I\ZdvkXݵ8<iBbj\rX^W=^j{`m~0w;CMaXg\n1;p݁uĺ`b	|w\r֫\n{23r{%E)_slֿ&pj+6\rşρ3X,"б!,|g:ᨅE\Zâ|&-Bc1[\\X}6c87,,''be²Y,;PnaeXw9,2ñ"TJ~b%,V\Z~8Ćf\0`ÆIذy46^P`#FrƱQi+(}lBlL7ՎM''aɅؔؔ9sl9׃M;y\n{#{u؛+؛\nfdc3JYav;^S؜/&ܽlnNl~#^`"\Z-6cmؒ2p2^}x[[ލ>}4=*c2\Z$[[[j}m4}\Z׆m+¶bRmKZA؎l}·.{lbMb{w`:¾`Ya|_cvCNؑ5''ر8X\rHq+KT#vNv\r"aZ~~}׀M`g}Io`8b8x{|vp\0`2]`ҰM}''Gc-oɘ+6dqʞU8tܖZVEp.)oRvqj9Zf?N!^Niv\r|ǷvRv`q&Πg003ۍ3c?bqBi|, ,i3Μb3O<35Y|(\n8$mգ88m26۫e;gOҌs\\z;xw%\0t+\Zwn,sI8s	on?,ɒw8_e8cW\r_G]hػ,^\\]\rwyWTA/ j8+jPNq0F?qP@>!>2p}q[xPNhp8uW~:\0#H_gpd''8rEG9ꋣhή8m\\Ǹ3cUn8@%''8z.88q''yJ>pa[4q)pn\\Dr.r	U=RMͭUmŧlp	p	w*N*jqaʝt\n\\u.#.O=q{A[p\\A>\\v}\\	`bW\\ր+ggqVp1={zW=Yz"uW_ksxy\\ǵZpmvp\\{g\\ggzW~^͛/\Zۿ\n}<o\07{7)7w\Z7q7\rGoFVq=p!YO^,T|=7޷fиYSY)sy܏Is\\HϔQߺ2܆\nnu3CmLilmG\r]W/*S-[[Y«Ujx}X^c\Zהy)p,uV;bzz9x}X^?+rop7\n;7FHSxE:~׾l~>-L=Vv~WwH5;/;d[GvJNgeǐ{n^''n}^\rxߚ/xY)3w϶=ikL\Zk^w /AV I>zr"px`c(1C\r}xOB*pg	qQlǣRSf3<:\0*mc\rxT2O;''W񔃗<<Ւrxr<<#gMNlc<ϋxkx"/z+K]6|,>Jϥ#Sy+7W	Z|\0>!>O>q,>%|r"8O᯹h\\9EOoo!sX\Z&>>>$^_8k2_엍/a7|ez\n-|Z_`s]c]͏-L1|<|wz>w[3h~,p?Q?OOIO>__\Z>ώ4H*?drsu[iBQW僋zm~QGtKPF&(?Gج_IpRpݷ=*a{\\CPM#9Tj^A!A3bޟ=J	L''t/v\Z~s9a[=B@$F!X5hl6yC	{{2Y}6\r?"#8~''Q&A#G"{	G߸y^cL6\Zݹp6p<1Mh8K,"x݈$x=3!xUIw	%`S0	Ww	߈	g~q?)vpnxpzp+upQFp\Z!DBB\0iK\0`s\n1! իȷk/[N%''	k^b@ryJ ]#:,	d<yKv	lH%p#h Q%AbMT&D#DoQ+vܩ&\\)9OaGڙNK^"{+<2!%3!~p]őp2-pV^	!\n!=-!N4 d&-١;˟	w1s=\\B~L(|n{C(.E(5F(dі\nRȾPYOx2Nx\Zut(>PJ+i''<?:Ghd$T!x%%ұ"Q!.yM~&tOd <CzG_o\Z	R`z:a$&aΕ00:L$|8M~u§)8s\\ѓ%nd*%7e·U·j6a\ZI>[@K#z"_܇y\ZBwGE GXZ#,&6@2"D=`|9MQi>qc-DgmH+m<8QQdB jA4F<In"j[SDQ<Dm!ĝW>w\r\rJ{D0ɘ˗I@n"ZGthǉh}fh''ZmSv-{!\\\r}.oUc_2#OtiHtKt{Ety@tHt?G< C<-x1urѳ՗}$8\\,A.%aE/''^TGU∁D\0c\0A:D4"$	d"Ypʘ$uhḎD\\<H"R;"tHkw"2m!:$rglDN"[Nvy<P("''cDq.()X%J!RKbZ1bbؗQI<=CG%FEc1Hb8IEn!9 u$&>%Q''!҈ijĴ[.o;oۺ3b&exkC7''#wsb^n%1n1 X."<''>xO,~XRM,$V޽L||0C%֘7)!\ZшĆ⋼Dbl,`eb˽XbkKbF# ؉''h#;Jfz=*=vψ=/}iaľ%4#ۜ8gq(:8+q$EGcG87q"h?qG<A	!N{#U~#7!.Pb⒊qL\\ Wv&k׷בB<"iӦMHE$G	IiFRp")^!)"H\\Iq,@RHp$b+x#i$DzI=iEҊ"iՔ\nH;$C$i\ZiriYdrKB2K2[M2P&!.veg,о$b7iwXi\r%Hz&	;EL* 9"ى"Iv\r4+i@`0tD=tOr&4ד\\}_<y$oݽǵI>|h|BHHƓN>$q''P ]P#[%zL\nF\nVL\n]L|ݒ{<pF)@FI} $x-	z	:U%H1ĝD2H"t!a$OԛDG\\%=#TAb"*VGHygfK}Jul$$I)IR\Z7D\n''_"XRDҕ@"\nFr'')ܖCZb~''e&IGII/H7H7I&٤%Rf	}{t%rRn_Iy~HyUH&kq֝T`T|ThGzp6 "TC* ''J&HegHeE2\0,GT>TqjTX%=TEIzOzJS$U[=$l$,&=>Mz@%=?#ɹyO!+Gj^ZeVI!V:=N`q;.\nA\Z"zLH}i\rWR-Կ@\Z$\r%\rm]''\rN\Z>r4<PA\Z&\ZFF[HP\ZOˤ\n҄O%ik%iO@.i6in7\niY҂1i=ҊR7LZNZ-%hCZJZ{HY?72YvSYn,7gG0	,ҞbdkmCdMd\ZY;Y	YoBHַ%룐dK䝤"#86l"ZMf6Ls.ټl [$aw6^6c&dwȶdۉlB ١i%og%Q/䣟`kcQcdep7uM>݊|<ŋ};C>9F}}dOPǷȧ{wl{@> EZN	89p¡MKGȗo+rp_T2S1!:24i}C!c؇d))1NF ިUzdL9r02*Lf#FdP-}?QGfY)dVH85iL\\-d|8Ckdioʚ/9\r9|%DRDvBY''jg.Dk"'' )Ԑ%Βo/%g\\O$g3w3䬮d`r%rȔS GYLy0r^9<94/rIQEʎA:C~49iVZޙ(\\ۆ!yOW|''7Lˑ!7fGMh>ܬ`InD[ޑ[/%fɭ+*Eo*K"W~׽.`5M''r6sg߾J''n%Ƀf\Z(RmT?\n<QAQSKnH) s ''/z-\ZˌciA?\n$y#m/_|.Eo%EN;"nF(Ulil3~ʥΤS4vP(;St1->#PAi?s	\Z.&bLI1wPLQ̻:(߼(V-k766fA\rt؍nSR~@9\0.F9,rKh7''c{c1[/<C&yq\\F9irdC/f[E9{rq0*7	ݡPp(&s%Eʥ"J`EJ!\n%%X^j@PG(0v(>:JA}k\n=Xk)\n0XlL!s)J\nU@fRwS(̗֕N\ny\nt3/(&lE\n(a%b%_J8%7%6jw%d谛8$הSRe()]kk)<G(i)i)׿ZRn|\nQSR+)EJ?(y(\n%HwbRM)ͣ<\0lO)mYR҄{ޔE<|''ao6r''FylÎR4HybmAbSj)u\nw(u\0J֎R+Q귟<8$/Ki\0)z(?(c)mΙ"K,.Jsu΢۷2mKy0~Cx{-eLHRp2y]2:2U''CB|@C(3)?,(svU_\r_)(F'')'')&=Uo5ekn@lS6Xʿ9o/(>U{*OJ*ظSpT3T%3	U%ϐg_jj>NTTMTT݆cT&UtU/#U/)u''%5UTӘj:>L5{M5o8LCLdA,9Mljӎj}7j}j	ږ8S,QQ,DR{P]~n?^Cu6`TuzRSzZdM=zO0^P@@٠^\n̥^B[ylt*Dk\n}GE%QGT''e*j:b.S؇x/B%\ZQ^1:JҊdvs*s(~b:JKP#AT"APP2\nGB*V|B?TJTIw(5ʋ\ZzN\rO}K\rI\roH+FWSc{q`jA25rJMݩOMRӞRo4SoR3SY*¨w3洞g_TQX`jI.jwCj^F-mZVvS\\>S>}B}ʐYjmC=#6/Pjܩ7m>ckҙ{_dM0<]_S=ԑԑzZuN=:=u|1:@~Eh~kPg39L%>\ZmÉ:WLGܡ6u.qQǩkwP׆R#S"?cgip4YSM^Hgbi)4''4o㴭rjirBjB!My''Msl|Ek~DD38A3\0h0;͐fHyь\ZvLit |s*m5EZ4e4W44Ek\\?nƘfϭv`.}@I#wtYÊRHs\rNsZ_٠yJ;:Cy!Kh34o&vr(L.GDY|,|h)\\ک+^3:ڙ	(\\J/<E@;gL;GѦJ;oͦ)ӂ0MQ˦i!x\ZL#\rsm1iHY\ryX04\ZZEíw1_hD\0F{1ui,X\ZVع4Ε\Zh3&	74qtږMJEѐ#idZd4-jԆv\r8\\F|WiI>bZckߴkJiih_n`VnO:IKW\022)h},-{cvgZN-=TG1C\n6li[WfZv/Zq\nDVJh_io7{CҚ=?AnI=s=ü={Eʥ=W|Ek\Z az/ae!o5m5Ok\r伡:HZT\ne+UګikZ>>+ܚ](G{C:DO9E}}wJ+L{{.F{glK{w\\.|3m@ߒ6~6FKi+h''YϿhXh{RitKi}}~Ia6XKH&lЦMcҾAh4wl"6[,O}A~]2~-=9J[j}I[>B[yYhkuzșDh{LXh}u˕i+t%jJQ:}+	D4D_GhEט5lZ 56Lז*u{''	tCS,hk+˶ۣneOB\ZGL[~mT#]8ݮ7n7J[G+I\02^uG\\At<So	=h>w~({N=)w}tύiNdLe}۰t?OKE3=t&ݿHP\\M뢟d3ͨ{+O/);/%/ZӃSyAt+:N#7ѡ^tLP	3xK>oD:7/N~ZtU:?q-(Ρ9tc}pAgWŅtaT).Lӥ-9hzz($=nrζ__I_?='','',{ӯiA6="===e=W\rN=f[\r߽}wp''=OqE>ҡ(d?z''_o3\nNjmjt&L<٩i3I=u\nGo8Eoj__p/[-Vjz?Nz.seUF?O6׬_\rf0akNw,A>	m6/;~ǝ''7''P}^vG\n}|Ӕ\\B_QWWWW^5\n}hzSJXfx#2\n}w;r\n\n-RbIRbC9+cs"cM?c2c5e܅yШLeh3t61v_g1F/3HEivl!cWòc|êna}}aúc3whwÂa%þ+áuc~\r\04qS!G^4Ƒ$QJHKƱkW8:G2|<2|}13Ζ1䯌KɌ+&ی=sAƹ<ҹ%F\\(#>JP\0 3Q؂3`(ST;9~g_=d?3NQ|AfV14=.`0>1sGl-N#,C<q!mA3B/1"3"팫Y|Fˌ،FkEFJ#H\01T݌֌w2nP`,Ke,fjezH~#ʸcg_b8WF\r0q;QQԕxQ\\QqQb((me23O5J-N1!xhf4ƴ03Zw0Z]"cF{wF5!㕎݊fQg^ceu2gCoI匑m!;''	ZrތO?1>3c(Ƥ<c:P1ɘIƘe2arX|XYzʙ{Vgl@v3eϭr3g*V-{>3F~enfTߕ`gjT15fjǙ:\\<sǏ+L=_L=$s''`f\ZNc\Z+m0wi2vgZgZ_ 1&\Zr;''DC$<yɚh<rǜwt><&c0]_LoD;N{<fx>>KLߒgLӿ*®l?$OL@3	ĳ`n"ǄJpoe&<KX)a"}ҙ''MLt1kLIgRәE&f2HoLde,S\Zb\n>3%\\fHyf(3;8s`̼";̌Όy{3̌=deU3q;]}$,f93ofm&z7\rs[̌N\rf6]N<ͼby fT.N\r-ШY8̼1^g>Xg3K`̒rfɌ-Wf{1R\nr)11Yʬ[gVf1މ`Ù5?5GJϝh&o"eYv''3M/ݸNrgv''1_mQbv^cvA]YefKb_OncV̱*o8L9/a1L12_0^̿#1c(kS-K;%wKZ{MV^RRbim$,m2󧏥ڑUa驯XX;ĲfϱL<,B&هedY''LXV	b!u,;(^D־UX	֓,/YGVNXǰYǾ\\R+YYì,7tߒ:G3aL.&gಂ;Y7e.JX\0S] x6f,ts:B\Z	wY*"ճ޲19ÊEE]bqYa,VA{;Źx;,v\0%tmb	Y"K4\nteE "wڰYWYW5ŬIXѵlVwŊ;Jֳw|`%hRRY6X׺cXi[Xi*٬[ڬ''%ÙL^V֎V3+~#rmHV^6`+zqUlN`ֲJ.γ丬2\nUnzؑzĪ8Ȫxdz$Uuͪ	Y7j\rYf{BVKBp7\r5jcuDmaugO.zY=''Y=&\r;b?߀ꯖkYCvyì6wֈNȡd֨F\nkWC"kބEF_/k5QYǚXA4\\XSYo]mRiCUO5֜<k755k~Ŏg)֟x߉i֚dk=kkivvVV"؛77|*-M9lS&ēZB-;vwVe`ay	٦ƛ٦l3ll8۲;mczmpmgv	f+bb_gJd;	lze:y&w}(a{v~e{)H^;lom[w%wNig3v@쳅=쳕g.QsgKrcK:`b&;sv\r?6`U\r![Ply6F\\a#U٨ltG66ZWb=β(96AuM\0k	Ml16YMvfSj,i07)cllh[-1eKؒslH[Z͖vCɇءaw##oQl/h옿eGqS+P;CvfUvA\ZN沯[''m7WmٷFw2 |o);pފ}?~v|]br]Ƀ][.Wg?Ե`?l®sgW0&UXv~\Z]c~®eE-U^f7_fحZvǉ-.!V9S~kaNLnG>yǜa~Ö c26c\rG''ϱSo1`OQ>w6\Zϻ}_A_Ir셳7쥑액0_eSc\r\\Y##ˑilJOerQ8jG!P{|6GRl5\nl}l{0nَ|Qas48Z~qstb78z?Z9679`Tg''1f8f9!:+7g''c]X?0\0?slq4g8v	gg?wC#E\Z`/ǹЃRqyqlad9ne99''9N/-wu9iYK%笧\rl ČS#8pOs\Z9N@o/RP=RL''<\0Ɂɐ8G8''[!yqȖ2*PsWW8uWM5C0iMsOC-9c_9eW*GD7戾sBgp¤jO8g8[t2''G3''!ǅxI>㤍s97-8798Nz>((zNʹ1prZq_9\n8U''8O9E41S(勜ǲ9o9'',95:1N#yq%OņiB8-ɏ9-7z8-VGNk\r8i+}i[t9b9\n8/99]͖noΛLΛ_#^ӛZ~3yk㼍伣p^rosr=8CӜX+_88c!!sGOYg98g9e΄53y:[\rOoIzʙ͙=ę̲_S-8oqs9K_sV,sVNpV9P\n[հ35Ά9p)+Aެĕ_ʍR|IWٿ<9Us -ܭ	NBW8WՎ8rups\rBVF\rv\\XIB%<ĵZ%qmev_{)r~rpE>krBXMCùUkHo#ܣ&s^.\\Mo={?qCqi.*''^zxp=͹I\\?\\o-9Dړ\\''?qzr6qq\Z\\Xm\r=g2=׸=/P^^GFp\n?`[\\xcи8. \\l_.a.]Q.ǥSpl/. &),r/	F-^\0W8QͮqydD;+J_irC0#7$7rĽBs^^} #(''rcǸq?qs?s 9nrsnnʸ=\Z>{mʽt{ϽȽՐ̽g½f_fڸ\rYVmܬ	%n!nP7OΒ[^-<''-[gsm4neF[)}>\r>1>3Z>s>W\Z6!r[1eBG[r_r?ss{κp{`y]gw'';bmw?}`DL~^+!xE7wj݈s73[a#w{;Lgq۹qW|f9wZwac''_''ҳ=sܿ\ZOy(ڡZw m(//OxOfoW|AB+e6t''o[vo[{2OOtu>l]y<S<_]y\ny\0:tg̳dy }{yfxGdyN<W/xM:c7yy[\ZsyyU:3x^NN\0ΠA3Lv1û0]T\Znwòx&x{yGyP %Pby<E4OZ#<+j!*<bHNU:<btl1#W(c<CJL4wÏ''	^jxB4OrxDO|1ㅾEE)EyQp>J_e^g/KLZRn/OnDh~Ļ5w;2//:/?ˊ*;;Kxw=k|;yw~wo xw+=H<+U^U>{<Ϋr«z{z0~^5WWÈժD\Z^=bi׬עk$0yL\n\0yoHh^o_H\r\ry[y1Wxyc/\Zx_xߣKx3ɏyƓx?2輟/ޯo2ޢs_8wz&o /TST"S4_.Ć/Ϯ+xeOe`ʷ-l["[''[[~o{W䫷*55=;;uwz|}6aoS77f;jdqo|"\Z·T-/7F|O<Xo[roķo7S-mF<Ad!1X-i+&\nw??ōܐ?v"y>٬?up53|$?\0?''?''>>6y#|@Y>·~aOZC|$}=ǟO36>NO)T|Z<O|30D3d󅽏|)	_z-\rԓaH;~պXE~?q7,yOWTN,\0tbyzu9y~C8?w/3>KwKFer?!$a2=_?j$/kr_:N~21~ü\Z~~:"oY7iDۇ7_˾ww/+YL!spp0''a@ٝ|?Ꮕ>ʟHL򿎻53S?nz_Co++CB\ZBF௽ȕ^ȕA4X@]}3@iX\n43MZ.w''킝%?@mB\\`)0wFrFR%[`D`̇قݡVo{6}p>J` {Nu_z+pO8~wsY%8Z/p2(pG:.B`GN-Ix,^୺,89()T=i$YF\\2"Dy.O	\0(\0fU\0=$x2RxA\0z	3O\0,''%	:TW, ^NP_:\ns᳀U"`8-Hg[W *@GN(@m"t{U.D\\=KĊ8 N FCI|BHX$fn~ϞR!_gy?/\nn[NAZ t |$ANP  knA^1A>vfK`$(}ܷɿyf	Je\n뷂\nQ@a\nLT\n$ճN^\ZsOY&:\\Мp@<GK.x.,x dr]/''/W?ArXkt^ c5OWy~A`#^QX	FGs>?|8/|Qco&>ɣ-Fogv\n\ns	߂NL\0]0-Tzf>b@Bh`፫`__,%&A\nPoS`P}VY4\\P[\\~QvX).j	uB''	iBFKCBKyBcB\\	Hh 4שמ28*Uo%\0-}	Bvតֻo\nSIB6Nh]hwZWhwFH(O:xB}tSgdeΟ:^#tN''N6B2йH,ty	]yB7WsxɞBB?=_?X\nV./^^R''f݅A. `VBPm!.PBUnawBػGBBW$\nQBTP/\r_؏}B\\.Iz-''V\n	_$!i!$"dBLH~RO	Y.!++\\M&)\nBaPn/Cf=aaJ\nHxuQ!ɫv\n/	S}ׅig\Z7O;U	ob7soff\n:3;aIyaNj0OFFO6KZ	뫅".aEa팰-DX%jV	kbgog+a}mV|W地i幡Ê"x$/K}/_;_v?{v{o-	I.LXC8$%:?:m~~FplR8Z _-r$"ڑ(*(ppvɊwippp\\+/}*ݭ$rQ,\\HM~#\\E׿	}=*Ԗ"R85.RP0NxH1%VX1''R:)R¶ʓDJ߶~mm5\0;ߞmO5T>t_E:"|hǎsȀ=Z뉌{~L;̯͉v\r\Z,ǉ,-"Nŝ"+;]UHd[d\rl|D6,mXd,;Kdo4.YdhC@eP}Êˢèiѡ\0s?1ɈUy5&R&rՊ<@"sբcY"f?o>ul_HMtNJt|CtCQ,J\\-\n~]Q].ȊE@rfdGk\ZD`/.*/]"9R.S̿*BGDTᔫD&%=CD.؛\\E6W%EFD"HC΁"dUeX%z5PSzK)J J%WR.NR/REiOEi?zE73onV-n>ݶ6meEwʈl4\n_/\rT;JRWQK;f\nvQE^T1@TeѓEO.=|Z!D^Du12?$yQӢEOԢ_&j]:"P<&,^^PE~w^rD\nD=E}w)Ȉ>6%Fb$S羋>>}!͡hݒh1%}}i}+< NqE)ٿ4Wk_*\n_GzD&D˶OD+*kG>VՅvZܜhmH Z6&Zg&.޴lP\\m\\sX}XL PDw߃IbM/fYX+Xu,.4먿zb(Zl.6MMcŦEb3{%!bNŋUUn%w+xOAئPFl33(MtU-ŵ\nR~bxKuw͋?y+v\n#vS|`E3$JYf*v[֧O얈=vˋ=^nbްbhIWSDfS>]	s^šqq8(8G8{UDƅb/TP\\\Z?+t:asnbfE%F+GĘi"\rĉ	AM1(&++by1q1Ͳ]L}+k.~@k1W1sO]j>6۾X.Žb-q-^敋öő{QWWq_\Z	MHqR8SY''5i\r>߲[z3+6sg{~sFNsstyqQz^\\|[\\\\9(.&Kω+ߊ> b5/gԛ:q}7q5BqeUܴb/n cmLqs#PGܑ w_s~{[}Φⷼ{WߖCMgC}L''"!\nDْ+:,)\\pO(>$rVxflV<{&K<*]"&k}!kg]Ŀ6J+?qix9''PW\\+^So\\&8I6I䯜((Q$*V/9G$[C%~ܓl -ѾrI8WwOcUs"љɔ)JP};D%1xaQ5ObfhSb4.1ђc{%B䝅d[bGb8,5}Vba.mXh%6ͻ[3M^u/URb\\_\0KrdjFl}FZ$qH_	x\Z`$%>,uT덑Tu119DI)^גݒ?%${K\\H.H\0ƉЎ?+''A)`2_J|	n%d''	e..7p%nXֿ]v+a>pHrQ^D\0\0ID y-ԄID7$U$dO+螕\\i\rDm<DHG%qubI$yG$u~ڋ_$7F%InI$SrgAMK.왔89H\nK\nI\n%F$%l$ŲIgIY+ER<%76II''${$y0IcIc%ɋⳒ3O%MZwIӜY%#i+iS59B%~''$/K^}t''VHlz#)")闼(pcH''%	!%d84F2h!T$gT2&|!|||)|5|$v.o*~hwdFddmdVdnxɏÒx_;e$z?Ybd	8/YJI%$H֔~I֎VK֮J־$kS.%cRiMRYATTTTItuTc-UiLn&Uǔ"J5Zo:T{T/IW/{NQTât$2Skǀryn9Ut$.Ԧp\\j= uaJKI|̒r:bGcSc\rRnۀx鉕RFW{\\dVwRzʠJzGzLMIϗK/{K/ٖJ/5J\0{)cJ\nB5KA3RXƠn~V	Of/E?	bRlHJPtRluPJQ*%RjjL)sCҬ,ä\\ͅ\0<*QFI"YDf!Q{GeSv	%\n!H</9{s9{\09_U\0؀;=\\{@n}@K@Y4 /np\0X\0(\0r\08\0\0@1\0L\0k\0\0>\0~5R1\\\00ڏq\0n$0\0Bd@b\n\\\0_\Z\0"4=5@"@ǀ"P\nP,n(\r((3\r\0JVJMg@T7:v:>(b0ic	!L^F:N''|@g\Z\02E\0;x{u''-F$oaNGS3@o<v_\nhk\0PH:`0<R7q:{ӕ\0^	LL2''S/׻\0scJJ?+\0]\0V\0V/TT"w"i7_n8xܤ^T1n>\\3TTMT_\0f[cv}jujmw8p9ԃӁz/;\0\ZvvFK%@Yc/@COn@w#Nm@C{.ΨxБ<ct\0YS@wcGcc3o]g5IйMہ籯\Z/6^l؟[+N//`S:0o`0c,dnf^k>^}܀	0`">cI?)0eL[L	L(\03[o\n;ٯs^oW2ywl\0P(l\0z\0AsX COE r­lk@xx"A\r@T^M⭽D-K 0H\r$bg@*h:Ȋk@%nrm\\/)&@@:)P|%nt&L(;:oh\n|p\nX+d3?K5GjϣZړDco!E}F́Ok{¹pfg''`+ruK<H`''%s9`W\Zkp{<{fgIG9\0)E\Z%9pd''puR7p-kgTpy788N|~h:N=oXZNgn^{?#|끿z܀?!*-	5K{ڿ X2_hCeIC2D9v\0R3RUwy xzIV>9x\nҌiR@A:>n	ڡo\nu`dXdØ XDɩ )_$ho>wо<YIPy:EtЛ\r4YiYmzd:\ntg:Gd=tK 4ܠ _gAA<x /\nWI5hw(\n>u\0|AA\Z7pPr$|ЅgAa@ᛋA P)(\rVPEj\0%Ԁ7AIW@)0Pʵ%P`\n\0J=z\rtc,(3(1(/\Zɉ|8o\\Y-\0Y s+j>gA@5aa@؂^n/r@Dh]Aa\0]0I sCABa(#$$6P\06s@rS\r*(oV:\nAŧJ鑠2D\Z5aK#`?OPm)P-OԈ\rz|z\nz!([j_+un2D@YzPsnh4<hd/\n4\Z-j{\r40h(h544l}4}hƥ4{:\04''=1#VM	V} X3T\r$:ی[[}[\0o/\n\0 >`l|l\Z\Z+O{f&\nA``q{+Vw/`[nmض.||=qgBÕBC81\0>iH;mO	a``7[{2;2̍`XR5K*> Ϻ̂''AY ^ph\n8}	84o/UGz\0ςcN׀cXo*8F''Z\0''~_kf>Sid4QC~\n8J|8?m\\,8|w~+.VB08^Cg|\nQGQ3`}F;s0Z,&[`g\Z2`=`:\Zت\0s̭``AXi\0-%jn{[<nH:le[*yG_<Tph\0\\|\\HWǶ!8i$T\0nxn: \0?ف`p3\0T\rnk\0RQ\0w<w@Z:AIo5?x[Oʑ>x\nOWX\\<zxd3<-`m.kx\\C_Or.''_lOzgY9x:/i߀ך!ޏBL$Ey"XŃ?0i	QٜlQcMC}''/A`w;M2D;DǱ˼[?3<wɄCu V {AL {CL-Bm?	1GC,^\0XGAϸC6=9Z=nQ$)AlC- }xȉGg!j!n{\Z{=#|\0⁫CtALtBl ^"Fa@|3!H\\H^2$	)\\2\\JC.DI!_k ?C@;-!qkF0Hk%9ZzȵyuquHZ6ȍ !\n	C2r 7!Y Y3슭qHNk8vv?rg;\n-yۦC\0N@	@`ڲlA;`es!xC#(Tl!7@\nKA,LyAh t!Orj~	aA	A8 *D^f "\Z42""3	y# =!ED1dRRfyXy6lԼ#!\r>	\nix\nҔV	yRIXAZW!@Z;@^''A^{ ]HW/.an|jS|	գ@z}4 OA!>\\H_2U	2ԑNo|9/L\n=!ߓ ?: ?B.@f~C暝 s"OMMy[m";y/wmȟᓐ鐿q?r !>d\nTq/JuFTPU[Oy-G@kc\ZPm-$TAQn1T_"tit盫]HAb	559pwBAM<辣9-jэ8~z=!!=jEpZsGlУP-PoPPd豟iP;7P; ~7a!,		u:U:o>uֺu=\nuvƻC]AOuauzn|T#Bϰޱ''PCP?.W;@dnА%s=sCô@A/]J^(wh-4!MM~z]z4?M.~rCoj@3R[Л''bY[j.y;8iAAPp\nIjAalb+PB(ZԷ:P.32\\t?@(߀r<PI*ԫ\nrOx*\r*Q*JnhAoiP9z.ȴZ\Z-}m\r}ZC2hUZ+	Z=`uǈF5ɖ''''&sFmB\0m\\>v@@[|Z-Vy\r4:ں4\rm=}9}}X8\r}gǇ_d~~j\n{\r<:b܂cow@G#q:\Zh\r6.ceX	51tb:y\rXBgbB\rBzBCe@f=+Z]tct[[wlcl#si''J^C+00m/`jϘ0qؖd0lK)L=UN	ӹU?(1>3+a{m!a&\n0۪}s0aG)065a`,,vh%vXb܇Y''s0a7ra'';SaNoa.`^$|y^aAs߰`x=Z5;vA4"k''aтM`16X,+U`qXXyXCX(#W`I$n , Yea7eʰ氬\n4,;B\rY g࿜`G-G!a.0<ge*aa0?%	FVqn9a9%Fclc\ZWƤjX`{0ws׸\rŻx0Fc`s0r/Lu&IF00iuLL拆ɿS^K;}؇\nFaa\n7eXէ\Z.X]1\0\r5N R3nss~6<T	{io{y/1ֽ \r{7#>S}~\n,}޾s6|lT''l_8l|Ol267\0!¦wf\\`3jlNs\r`zq\ZxV\r0i;OؿZylXw_?WlDr\\s\n\\k9	5+[wޅ\nn746$<ໃl{\\*lk=?7\r7SXr_̂~=?Z?VkpG|S9{ܽvn}dNϾ:wA/<B1~X2\0v\r<,	<@&ʂj	xawz?)%4<o˅gug^\0fKsZwx+<cT8/Oa! 8c$8vG߃p8N:xFp\0Nj3M02\\&p9\0؅,c\\kgll\Z9ŋv:W^yZt^8!^DX719\no9\Zf/W]O8oʊo ߉*=?,u.<|(|؁G~^~섏>|\Zv>*|IT''|Z|f8>z>{p>Z pjyXwtPPG(:F(/!qBlhKAn"0\Zl''&1Bl{Ѓl|@L!¢z!v|B!v5#Xnq=xB''\00C|0A؏0_~p!ȶ ,mHjIZQ#O #6W#DXDmĉ\r''K''i))gkN\nt;yq8Bxovo#m*Da."IDuDPDpX"D#q.@BN .ToE\\D\\Ba^0\0V?BĜCX#CIEE fD.DiDe\nqݧ\Zg%H#qDFq\n"L\rq=&\ru7q<"FY_By#EwS\Zw)`|xGf#UPn6q*:t?E\ZD_E8~m]<\\`2#XȿN?n9Q7\ZBHFHK!*{K:IBg.D\ZQm(~=(h#J~!J!pDY&<\0Q^xXp\nQy񘨈x\\vdrTyx\rXHG4~E4#~; eψf|/x0m@tl@tߩEt%goI:=!zJ=0ćO{0g/eP1YB@(+)qĸ/xڏ1=E>A]GGu#>!~M#~;"\rB%k_kANC*KAn<ՆTEM @"Uꫡȭǐڑ{1܌D4LX4!k#,@&t,ҤEܻ4>4o=<=<!DDAZK6MHsHǭ-\0%骑<X<''B@z!.#bllR22 !C42ȪZy~\ny1bV12F+Kdcd~g!_ ,9 czqs,dTdy]3ddt62ug,25L9L+!Gf#o\Z"Gf5^EN2ACvG歗"Yא@FtD0c$3عDv H)$2f\\CՐ5$t߃$r[ۑkHڞ$-2cdԌ#9o-H^''\rFlcPf=R0y)>A!Ep4R"R+FJ_B!eIH/)d|p|xY T\03,h@!VixdQYYhEh vN "rYUIU#j`Ybc##А\rcRdU&Y-N]ƐAȖ\rȶ3vc)}%\n8Zg5yzEv+Boo#,#W!{!?G}6"nB~G~;=X܏OFl& gaQ?-uȥ}zȥ?rr''o*rmpKFTMOTLT5&Q[`((GQZ{!(7j=6(Ԏ(ڋ5Q((ݨ=!Q{P{Q{PNԠ(3~{j?\Z?e\Zu\0{Mu''Iկc#]s(k(XMԱ|/ʶa+;u|DKd8ʹd-e\0^rDpPF;Q^VϺe-EKP\\T@T>KT5TP8**	*4:\nBG,*lvuI<u%\0" bPW3mPwF?ǡz$߫0uǨk9WP7_(2LQ2\\QXԝDKԝ_m j@\n(pMxֿEA_Dӯ(䛛(ԡz\Z;J((ʐ\0E5D1zx(61(@qQ7(OE	C	JQ"$J%{&Q(i%J[ @ݻԌz@/Bj:J@&J7("ԣ֨JT2Tt0>UPn\n@lzz".C_P\rhTuƂxTc)y\0-ն^>@uN::ߠ^{C܈zn\Zg/#PQ}.D$V9\ZM[A?@M\0&ݭQQG"TԌ]Ouyn/=_y2.Ԓ"jw>_/)fZ[pE+\\VިvUi+zIz,ZH	\\Vod5''\ZhM.Z֎BkCb\0h;9+^GLERGħ\r޾B8<&Fݰr*4/1\rom&ޟ2>hmzދ~>FE&C;''''''FNQSQhKhWӱRB?J9#>\ZB{ڣ}ѾF.h_EE;\n~8$iD[ډ;]>`G_/./,//f[Â6K&KtĬ?}9}}y\0%Vc_F_-My]SDAM]i@'';Gߎշ4ZtZE4:m8\Z΄}Ft*Aߤ/o>o؂AlށmG-2@K\ZԜעD4\rDyhhb4*F՗ч11hI4YGƚh\n\nMy悦û,{4"4Gs͹SCmG''Rx-*CK/{Ѕ<t]Cm\0cM{fsG׬ԭ\rtM&tm]~]܎n݄%G?~vg\0j,UA7ۍ~a	!jnE,۾;CЯEn{7o&tA@+z\Z=Tes z԰	1z\\=5BEO|@OBOCO1FXEϼT@;>A?^8Ԏ^LE/DF?i,ѿ/rK+BFG6FI)fi+fcfH>f[Q1a]1[ۺ1[`40Zǣ0گM1:3$fGc^5Ff̮*̮]okӵx>5YE+\\1s@Ѕc_>jډ9Xk;ƦYc{c{cg2_9㠰@LŜ::qqqρb<v`<V00gcb|9`|`1H_LP.&P~7:`7+cBԯaBcmń2h\ZmbL،1Rm(&Bs\n&z2&vW~&L&&&r&5I3zIb2_c2Nb201\0L6u1@|)+|0HrI?u`+b\0CPoahz).İ\ru0l3q5p0B6FL+Hf0El1̽;+ɘ׮`01*''LI%.SyT	TݱTTwcj:SI31UP̋SVLkUL;rJ\r#LGs%塃z^Nـ.ü뾍y7ߋyo)ӏbٝMC9ke/0#;0s\07Qf*3ֆ$fj3u%3!a~q|Eg9%ܘ.v:kynf^,>eI,Oc,\ra\Zc01+Gl0!0kSG\nwaCjaX=ưa\r]7*]cU\0Kjvv6v4VV\r-v{75cu;bwy`w\Z<\n\Zj`w{>~Ě`M>c.k5{5߈5\\=tk뀵{4֖>݃KoHlƞHHÞX):`XT#Au6vƺb΄`7(b=\rwcz۪?سNسسE06lPlP=6x\rac/c/$`6bFaH*6r{y]8rylzl]׍nf_$[l)6i{769$"6C{#&6C.fZfh\Z،\0p{67\\D:X{,Ў{c![V`,b7i#¢?Ģaw%X\\a,xKo"d;,w`6,Yi`y\ZXWXVx+Yb?>P_>Y-;-[secfLb>zSTLV.c2ajؚغbl]n{[{퀭}ɻ+31tlӡ\0lU}6jE-LlKlK\n\rރ܄}}?Q(n-)}~GacGJؑ籣/ѿ&رs<X-v\nfc''v&\0;P7c)a{ұ۞`b׊p\nBxn)qnKh	S]ũmDOq^8e8S8opZSqZtqQ],vG63֝ov;)=݊3M:ۧe37z3>;hw=;d>;3;.;g=w=\nw4g͸`i>y٭_˧m9&vg5qNFܩG8i=}pRpn8w%{^,3wAWU7ί?p2.f.\\%=1Ev8.Y!._يԾw lC%sp	tqI⮑Fppן qq)j޸Ժø+igqY[{rJ\Zp7V\08P!z3pHXr6$=S?㰌`.Woß#n}p8؞#>dȴ\ZG*q8DKñ8]N(1ĉu8w8HpdX.8+qJ\rSU4k**N㪵h\\*v*c4ppO[o}=Mk=;ukՄkµ}ŵρp/]jq*n:^W^y2Su9d?}}ܮ5|-z&go`+7`&;⾤p#:0ܘl7+[?nxqc7]~v73)T͆u?''*Rqqܪp~qǸ?\ZpĎ?OqiVWkx\rx/IīU7^ë>loWكߚ}אk,k6^R\r9uܼ:)VxL^^\n~sxC<xÎho֍7f=yk7	77i7fMkxӧx3ތ׏[^[qRax+GxMx6W=?:w0;Da''YOUO^vN`;%)!&w/{H{}1~_?AA \Z\\D7}9ǇO/kõNC\ZZEH=Hk|	|T7JS4J\r/D+⯺l_}"U	wF	3ۗտSx,w|	K>[m\Zϩo߆\\؈]=\Z3=4ǃN,ࡵxy\nO#NxC<:\0s`0OXނ''FIxR87<cώ7.^X<{2.x*^"k}.|e_o3t|yy4a!4"j_q52_v_!4\0p''lu\\\ZY/\03|ۛq|?U\r{Go=O޽-y㇎CnE{X ~Lt?n\r\r?j,\n(O ~gDoBst	~a7OEJ	6~Y_WO<¯^UƯل9Ep6av6&k!a<ANPGB44 ZC	ZI''݄m(;^1^SJU6`"v$	L0''X,= X+	>G8d3I8l&"~''^~D8"j	6:	T6$y	c	#''Ip''u#<BQ./I-!BP!J~~ܟA}G0F@B䛻;+	W+	|B,N=#1q.ڷ*״	L!Y@HR۟R?4.!~+BΎaB؋󾃐F@L\0\0Bp\0ND\0PtӉ&h.#>VZ!I W(QeB@;@+K_W\ni2}^-ą Ȏ"HxizAZKD(#vrEn.N;Bi?B组2urVC#9!P$Tv#rBD TO>''uy,቉IA\0I/p3"!0-m	WկjB,S+r2d2^DBJHW!8oF̦	#w9alw\nӄׄi<a%bG飄?>e_''6&*c҉U+**D5D5^\ZeETߟDTg՟&j\ZKZkGguCWD]ؓCVJ˽EnLܵqqWcAsqKthz},,JFܿO4D_=\Z<%-R_zFK>#M핖{":MtnSID&kukm}ݯ{qqo?̿!ѷx]?rݓ2I<AϚ:H<UO<oeA<_G"^%^zM$F\\zKh''FI''Fm%FF W[8k:R(b6Rb:1\0141Ekʹ<)1+C3x`xk?Pm;\\bGĻNw@Dl"DAL$B=0;DDDDd7PJDNZSDBHY wI:Drl"vH%6D&"5n9z,C(#\nD/kQr*(:Gfeݝ$ޓ!wI$>숏\nĊebw⑔XQLܖADvkk:b%AH\Z''>׽N|Al6] [QNjkMvb=-b7Mb\Z{:&[{ ~%~zط#经Wؿ2JlA0M%G]ǧ	ɀJqpsqLUiF;؈%%F!K[fKv=ĥgĥz2ΘNCD\\"?FR8CRX'')jPIHJדG$m8Lp@xk*ixIUIR;H''"mY!34|I%j(.6dB28$$$$$c5*i	iw$$d SH5$3{l!Q~$$Oųaҁ9pGա''#*Q;\0($kzdt,\\dL$+"/N:B@:y}tr8>)8:Hr.\\$7m	ɝ |>|HA$ɋx֟E\n!#&]HubHa]HHKqRd3)<))BtՔFz̝0<FJMJF~D^I"t*)y[)U?" tSpt/)o0)/twP:	x=	D&ߺ Hp\Z		AVDpUHs$R|D!jwE$fHDb) qI0@*I2$xCzM*\0\n]HEIH%AR)2lg\r<WHT>E"U/I{>HKD''\ZpCnL\ryH#餮xRYқ7\rHoWHoOe4%In''}#}K$%͑ko><&\rl@ܯd$@6ia4$\r[FcHc\\Ict׺VQ3My~釧	i~GiiJZEZA@CM7NNV^7!\Z&RDd5Odd&7ɺO;(dN2Y!ܦLϓl&."n&D:@pdTyw-UYmB6oMxE>R%K><M>f V "p옂 1K>@>EAv!4Ȟd3~7_\0%rur*94|@-B&r	6w~<"_I%Whc7GcU/5xor|EN,LN%_''7+}H9c!@#r zDΎ%j4Αzf{FPMTMdc2u2m8䔐Md̉d\\#K&yP2\r$O&E}d%2CT2\\) \\d6&@_d~%2L$6dI^,y,$Kdٛcdތ|%r.	9ș\\p\\bG.''Ʌ*JrI\\G~\\H\0+{UrMru		epL6ry_\ZKrK-6In T!<I~F~ #H~m3O~O~C~gM~7si<SkE\nOIN[~HM&&ד-Ƕq!\\4y<uGy(y<Z<H /Ǒ''\0jW9{JQAQPQzQwQ/P-T)(*KcCg7(\ZM\nm(;R(;}j󔝏S(PRR(FcY>xN1M1@1?{bbe K9L9jI9jiK0XS(6^(6uikm;>VPL8h>8NZPNJ)N\ruw/)vS\\6I).&(n0}{@ʙ)>R|$S|(~S)g>R8J8%4Ȇ&ES")KȤyJdJJ7%ffr0r5tr(%yʵ(ɐce3J:LIO܄NRrSnkRR\0(\nȦv5@l(]h7\n̓KAXSM(^O\nHbT98=@R(WP()\\\n51B~B{C_0T(_(\nc5}IaoW\n\n{N=DW)7w(Qм"$S((b"=A:)rMʃvJ_J*p\ZI)eQRliRGy(<\n8C8hOϡT.nTQ)5&J J]"屽;q6ʓ5J}]JyJSJ\nJy6Ji%)m\Zvw*MJG[Jnɐ򞸏ӵBY|͢|"\\|ZPzSvFPh43(IKU<ʗ}/QLS(x[( {(\nQ)N](3)s|ZEO}W<g)ʒ*eOY\rU*D7Sҩ[T#\rnԍh-VE''''ߟnPU}Uj[[dԭ1_:-:/\n/S矦>Iw5UPw*ʩ;oS:Fc1{wS,S`{UvSvP-vRH<O=L0R+̩6S6v~b]\\zq\0?TG0qNdFuȦQ]AnROoP=lP=\nT)3\rgd/շ+E[\rMo{{R6P5`\Z\\8L\r?L=b@=WM-Q/msF?ArJr\ZS\Z̧lPcq\nj.}jaj;,5j:IMѦfS3OQ318j&9zZ\n5K+e''fʩYԬY?6So=\Z>ME~QM,PrsiT(a\n3]ҨTTLe*͘_J%\ZdU\r*9vJ!pT S*g;K#\\\r8u\nYRO"hUT@;P;ԩ?Q]7.RAEFŻ*%C,"5ZYIO;Gַ>LmVS-P3$jsyR1"ҞOmS/R;PNKdSjgj\0킦3料{FgFVO0~~Qw;Q//h[+7u[D$Q4SlI1IFm=@]1.&|f.RYGxԕoCu4E$M)RHS]o?FPNPOX\rMЗVOغ@ӌʧi4;iZl]v`ccMLM	mm\rm<fhD3?O3iIy*7ia^OWii!H,նc4S4+*f/Uff=Hov4}h''Ni''ݣ9М4{4Q/͵1Siôӑi_inʭ4w(}Q=<o@;{8Nh!1ZZ\Zy$BڅLOڅCkiC9Zx(-Bk|uLŭizwiIҒܬiIO''\0ڵMkOhެޢ^J@Ci,DZv-[vvJݑJ\\GP]@/hX\ZH!74\Z2CC92h5\Z\r\\\Z|7pRF-ш4;IX~q-hX&\\!$f4F!MVF+\ngieᴇiljiU+*VS85OkL5l51h-UbZk-əN9C{i,N{Xu,ou^^I{})F;f8dC\\}}iJ!g(md66Vz6}$6^IA@Ѿ\rU4<6KTJhhs\n''h%ݴET⟴Ki/V^-uVikWhk] L.}=	}C6}ß(g,}kq̀BtH ѷoWNR;\r=FDSqU}{}~-Eg~04ݒF:n n#nJ;nWK?XNO3''w''<tWO9E;ϑZI?{[Wq՜~6)hF񏢇$NCFC/_T_8B8O;M/]Gd//eӯh>_	_9WO5=J=Ezu=r[L]MO{NOo3)I=5=D",&6=F-fqeMmI=W@ޣ&!WЕ:GDޢcIt.N<NϦ6SCi\ntfOgoF9* ḶN_t{+]{]TNrK2/E\\-~_~|~?˛u"\nX=^H/Sdzn%zU?z]%)k)ETWzˮV=mzn=!j9gGk/F6rp?ypzFSSϥX?}\0E[	G#@/cfgWu>	;h3GA	}S4}΍II[n/C鿻{KOїCU+pʃNX}*렯~룯2@ §''clu\0CyГ2ؔ8P`Ufώk`ehbh\\`h734;Km2to3vL]`走;;c\0"%0wE_T9Za`88 f8d84̰܄fXV噌JG	%)k"l3bvO3*&1qrTthp^g2df~p~D$sxU,bx{2|.gd00F/jqa5^ʸtÈG3.gdDYaDj2b2bw2bsD8F;cƵT\\F8#~F+o0ngdOO"#7#yqr\nf?Eܯ{}˙e$iF9Ƞ`{3ytc`g0fp\\@c;KeG3C!dHܡ5S-Ƹlx:v`h#QQFR7zQ}Ȩx˨!uU3uHFFCF}4k\ZqhR.f4y[/hVƌ|F5s1uLFf-Ggtw20$3fY21z@?͌FWFVGSA;`111Rfa|;v#ac"ȘX+caL10,Θa3->0c0SsBKNսunZywXRw>Pfnf*+h0U<r*c]3	L\rD&xht#SH2sgA\ns+{ӠMif\Z1\rG&FXؗsLS,Ӭњ?I3blL\r0?\09*iim<6<fXtqt<5t9tӝ)bqby_b0cWf]٢9czy7ɼhy1%vjZ~q֙y3%bOD233Mg3ʼ~;|OBWc<i`$f|>3so3s3kMf~ha10#qLF?l>0!ۨL[&f	dh\nGbbMԘL>0wI:$]D1I_7yLVB\n}	}ferۇܑ5&(?Te?WbtoSEcWg|P|5a~3X2O1K]bìl`V~D0J''͘0C1:e60j=ϗ2s/3[μ`(1ۃݙ{|hf &&s̞4CGmgf/Og~fl|pb<`121:3f#_60b&Xs\ZaΙ1n1n1Q/똋Oo柭??Qe̿*+Y7&YJXHXN76\\b)Ϟf)/`m}tIT`mZ;R.eLV6gm^bm0`>eԔ,5,4K\rcuͰ4#4/YY,K,]^J,C62fb32b<ڻڷ6씜!|њe:Cu  ԁu됛uxe`Y1:XGXG*-YG\rlTX6=,1\\m#-;e븎)6	8։rz@Lf\\ߡY39.,/.6f(^D) sVЁ\nVp+S::u:?oȺ̃ue\n<̊|t}̊\rs`]\rźژĊxHfYoY7''lY$V˗;5,5_lB1XI6	󚅫=aw(Ype1Όňta1XqG]eYe?YfKɒIa̰݃c?t_@YX+u"["b*c9*\r**YamY,Yo*.C6cV\rϔU#ǲjFǅYO:YOX\r+DVFEV6eVSP)^zzVc5j?jm}jeuqYXL;XkaWYRXKY>[zY}s}k\Z <O|\Z"ud)k85g<"f}{Yo8k!ɉymc-aK%llEk[)[-{Bri:{"{c"ˌi\0{[u՘`SyΞ+[sՄ`nb:Uu\r?w2|;lOoٻu{ئmlSmm6g){el˝f1Y&	m>,eob7>Cvb>UbvI},A$}̜yd/,d{{Hi!loI>G''cMbe]Rv%v\0f싾0#;uȌn6vT[!;&1ESv\n;FEΎwlf''	b''䩰r,٩G;٩z\roi77:~3K:zd-$;1Nؽt]m"x \rf)lH\r5bC6:m1bcMlb8cٔllںlڶh6ftILClN0GaZ|%6v-a:	lٛP<?jΏఋcEJk3v1"]b].ߩ~xن(O]%bWgW/alakg~9~~Y~B_ֹϨ+gkSB$mՌݮ"``w屻o\Zo}ag.f؟7C\r1؋책,wT\Z{n>+T{ĂP*gٴz+{m^QX.(n(欷l\\ljTlv^l~QQQsGVqwq4~hjqeޜ9q8,G9c(>1,NqGpoϟ9\\@΁+CC$C\ra\nSÏ9Vͽ#8Gr:er==Ǳ;ʱq%G+(%Uq}Pp|^ɯp9۹8		\\s`s3RN	''lb)a8ŉnDJ\r98ͼ8Qm(''\nse9MYDpb9~9	$뗜T9a΍9GNmeC[?99*o89wrpqiq\0#9eY8[`''W&o8D!q˶C	琕80z9Cpn;{%\n;XnQG|0G̥r${gsip\n8EcufRNq}N62sS S>h5c5֍S©;3ϩ<yay\Z<4fp\Z[9s\ZGwp)8;[9/KI-+]Mn(sه:yk*\0Pi<gl8	1@x?m gBÔ3i#8?G#l17sY9+g9+[9+C8.m\\\\\\}z\r\\ek5fQWS"W3պ&j:a\\]wǦ!۸\\CBp5\ny5''35I5ݐ/yo9wqy2"̉{G%Q.uA&m^=''!d3aX=yztҵ:f=s݆npI\\]+멠܎zp6=z3>bY]ܳS\\u[Y;Mnx+7''n8n0l{\r5r^p{Ͻ ^{q7\r6r/}\\Fs4?pYnwu!7%ܒz{e7]|{G!7ĽFsau\\X5../sQ	\\bdKI\\J~.|KKqq\\De¹,\ZPD㊣qŠT+]J3rqާesܢn1[\nRsn|ϭ&q+ls+rvNs>>|}\ZgmmYmqz6xs+ϵprͧ/,r_/q[q/vq;4r;&np;wp_o]ݵ6ha~RD9۫rws[-` n;;6)~tp&_#FhzX2;`;yN;;r;p;	Yǝ].^..7r.iUŤqWw;xjxyJ{ZyJ(u<emO%#oHz5W){KmK@<]1~*O@~IyFI3uW7*vmX}vQy̝FyC<?x0_:Ϣw;Y?Y)ClBx.<ǼC:vxҭ&y1<b0C=yx>v|<9pxAuyA5일4/\\.E|<XbzfyWսyqyfxIVxI${޵y׿]_%KbxiJq4e/ލ\nͼ)/[n>e9y9x9rFyy_\0(ZSyண<4Ϝy򖇵ua[x`-i#syC{yL6ȣL1nW:c[<>)qy{<~''8{''jIͶ{yvyx{W^o:ƻfWuW8+HHJ\r/t*F-x,y9%$pWW}i=&^駼쳼S8 nƫO=%\rxOWO\Zx\r:2y,yo%5f4{u̔љTVu:u:;x]w7>9&ཉ){+{]&\\YOOO`oX=qc__lϩ;ռT,t7W})VҔo޿\0޿cyUx5S[9!oW8WXYWqo''UmY|ռZ*0v]Ր5ҙ\nq,i*k)-?__,u;;ڶ3)|TGAg-;vKő.˷ w8?pE1X\ngo	^a^i/~\n5߆ZRwwKMua|vLf\rLV=K_ޟh}M;!:W\Zr§0kIfKiQ@??Ɓy˂m+2	j4ލʏ+''-	q0o~J~j`%?e;?}=?#h3Oo%gog_~~|%PX=nf>22Y,%T>\\y^G+||ppOXvtA|n>ϧ2~/>qg:r>s)\n4>;ϛw8w%O%W%=o{~}nHA3_m/4vAEEKr~p$_~u_1ïͯ3?L?|+&,ܺZ%6߮xnv~X6͟>;tͫ/oj;=]3>U~F}#5/;/5XC:?TZ?^?q?_\\_x{{ i6%4_:_MռN[9 P:C4h(ؠ<)ظFV"P{FlU>M@}q`zeL}[OR)I`W`S`tR`-0.p&c\ZZ}cOfO)ނ}@s9CyCBc(*G`sVnZ`:+8(Hp|9Rp,pH8\n''/bssiu[)8ۏhAΊ TtPp1"Jj+QpdRh r%z$j^*e\nb+o\n?\nj8hAR Gz>ZZ>.HW6[	27-\r7[Y"A,AN3$Apg n\0*\0<\0@.*`+b"$E2 @n7\0&	`B?V@t8	+	M)V@sF	h%LC8;(`\\0`LZ&,	I IHjb l@.\n3	f\n7UA#=AAŊ򜮠EAHzF釠&CP<\n\Z\r*_\rƬ\\l+RКV%XjIQ_یfAׄ:kAϠހo`<\rj	F]##HѸ`=SM}C/tSW?~LL\nfFm߂Eb~R.Tq`R_\\*[-X94.X	jH/V+Y!G/o	7n҄?U]̅[:\ZsV)RZ)ԾS)Z*	wwʄ;	zBzpFд/wAＧpWY9Fh&4Ob	-6od#m#\n]Z{ֿ\\vmiBLSx_xt]*;=X\n=n\n=Bc׫gBBU)YaCaW &ap00gQr)<WxB0h(OsD1^yW(nxrsiY¬[.&0`v 0&TT<%T\nH!($N~5.^3;B|e!qCs,*3Bʑe!]H	Yʅ<B&[ʄB+1''>''n&˄35cBaeaa/,k2Na!,''>,*|4%b*	+KJkgڣZ7ZCvXWX''cjYº§;w/	_Z/	o:o/?Kء뚄*þapՈpXJ8E8j RcMc/˄>_Ko(Tprpe,]pᢚppCc@˧E\n,H^&Kx_QF=/SznH_Wc\nFt3D;lD7D74]dT''NG_dZ)2[,Z,/E,%䈎]lDvj''D''EN#~"#e"RXUMK)(yyYy./|V"8;CY碳fD5BQӢQI(x[XGtQhgхECEQAtYUQr(H*%PsEI*뺖@(yWҐ''E7z\ZEx*{QK.QeQ6Pt6OtV W^DubSvaaiE"l1VmA":^\\foq~8BEqyHŊd""y0Et?2OI\n@Q\nQXT(wpMrFyLT*Ul^mmJqE!Q}V4M\rыK|ыE/D-oDZ֖{\0Q68IꗡuJEϯuu$LnŉE/DD˔D#EqD"	Vh\\A4B4uh꧑臞\\4(ͽM~b''EkU藃h\Z+s\ZOdh&ZMQ"V|X齷XQQ''VqU)D5hm\rbc"hXO>$ֿc,6xTlVl!6RB{ۻŦPbWAŇ%Ķb;^A*O,`(vN.>\Z,vQX]2Q1ϋJ/jbbcb֌뽙ػO^"W^oā@q`^qY_884HZ_P~''|/VGS7ė7_(%2 K4։Rŉ\rit̷,9qqAMq-2- qn8&TC|,@ŀ''b3bÜa1qN\0QnbEe1z,Wb$JӜCĴ/f9n{y1?+9>"|]qy^%RsH\\iWUF5ĵfwgHӝO\rlqC팸QjyOA_''~PKz_܆_,~6whįu]:⮒_wW=iBq?xtx0U<vOHBēC(}x6xv*&i~Gd$''z9yW؂}WMxKK\r	վY:gK=OCqDiDDvmH6/Q7;(QΖl3-d"Ȱh`1zD)ѿ",5^!1K$-%{4Ht{''ٿ:*1>!1Ϻ&9\\xYb''Gb%o鮒K&J>J>HW %7$"$Γ6SSH\\$.U=u&kRB&a)uǧIvJ-%!\Z%!ɒsW$O`%QE[$IN ®DK`pQɵ>d	IԆI\Z(IkFI2%BIfF} U%~!["C2PO 3U܍?#N;(`%	d	L&^3t%GF	Z#C͓z	nK%BEȦIc%!@3#%ˎ΃nCbT"\Z9,\r$r+{	ț7JP܋R\0%	IgII"IiAcGG)	=$Œ3T\rI5JR{%MR''it(4Jz2$4IIJ%=F{Nқh#;"7[`$Œπ>@dt/՗LH|/H&H$?l:%?JJ|LCH$3=YZdwɢdX8!ɥJ6$+N7$=REmR@_bT~tt}6}<OTC%gY\\e]eWn&ՄJRRmR?=RJt{tg.eT#m|Oj#m$c.ݣ.5y''''Jͤm҃~CZR+R+Զ_(JjR''SS?8IOOzzI=1R.Gԧa@zMs4$4D*=tG\Zz"\r+	^uFlM^)NIcJcRPҸai|Id,Mn''M[Jo`¤\rҌbM;Ҭ[<7iN4V4[Bz;+%͛dHBJaOiRTD{"~פ#RSJ>W(4RmHiVRg!h2<LV)rF"IR;C*W"GQ4ztEZIZj''-m)I˝]ޮH\rzH+N8K55Q[ڙۏJ1Kk9k鳇2鳶#s|PDzPC~,m\nDJ/Ϟ ڷK;J;<{N/xNݥ;wYA;ԍ=48I{Ic_[ҡᇯ>)ұ	{I:s,46kHgWsKҟ{:JHTHW=JWkӥke\nXjLxllGťT~KNy)S_x"\\-i\rɴ*dZWA2-L[sA*)m!5ȗ.ӯNɌ5eƨ\\IWk};5do,,ŲR=١{dV22+zlj!;%Yl`eǲ@=2ͳ2pgO6wN̝ܕy	y\r|m4d|-#o9[)],W_,P\rd!G3e^Bd烃ea[DlE̗E._Ȣe3e1s;d12,,N/%$eIe1dp,_,Bˑ<Z''K\r&\ndT_\rDF,9YvK\rQyxUQ>Аz\Z]IأPG`2|UM*2\\Mh$#&fH2My9*\09%1:dk&PƎ e*]L$|Ȥ%s{hٽk6\n~\nϞ9$Ȋ>esG @V\rOX;dreO\ZeƠLYcC3y㻬G,k]A,{I^ܕuh%{gsXnAa٧{C?Ybv祟lh''S.l{l]ǽ岟e;d7iȖO8\n}rrrO}\rr]@Jb|s&*\\\\\\c]\\㰓\\+LȵZ9	rm#\\|\\\\tC\\X\\Ԉ\\U@mTn ''7h.7\n*~P>NJTDnj*7B}wͿNI8mY''?4Jn#?)?b$?zUn1厼2`6sr''L>F"wiV"!r7g{:v\\W	rwyyP:B^W/X-K,cqd%y:Vy[*f@*G#''<ϲ׋ȓix\rI<@1]~S9@~T<%yNoy]I~{K~yn<q94ړ''G?#G#9r̶Krl۲N39^+''$?9#˩.UrZ g09g*y9rsEC\\&U~|?ZRG~=%F++\\MU9ٻBpM^]x	O^? o|?{,vPUyy;JA$ZRb$EC;Vʻ"]W33w\nw&Y<I^ܐ@y쨼I>.h*ȇ2ɇ1QX\\UE>''1\\\\pQ\0)#IeF(JJMJf*Ɉ*)Hx>|ss;܈j9s::sǯqw֝v8#}sVsڵ?o:Ot.k	z\0U\0E\0\\>@@Sue1Xm\\lDll>|D	،90Rg|Q\0# `Kf`K[&`{*`I]\0\0+SK5y	`]\0\ZM\0?bpؿp8 0pQ\0pK=	Ydxxi\Z\0^3q-''V	xC1\0t4~EBZ	8}pJ?p^2 HU	NqK\0Dݲ}ΆǾ\0\\\0b-@d >\0 O#.QV\Z \n"H\0$:$F?\0$$H=s\r\n=H|pg@pa7&mp\0Tn\0](ȹ\0((y(\Zz\r(ax\09]ܿp_zPT\0TU1l@՟x@mC/\n!\\h\rhtfM$\04݀,[@Wu\0P\n\0@Y\07\0@Zc@\0j3\0\0,\0\r H\n\0]\0=x\r\0w\0wE=\0=䰫\0E.r@ix\07\08@wg&P\r`d*`o `|\0030ud`\0L\0(`)m<`fY\0\0~*\0,D,\0K%|dPPuh?P6T\0U\\C\0:o:F@w!^7\07@C@7W+ǁ;\0wwG\0Z\0--{T6o3жp_*СoQ	t\\.\rwCx7˗X]_ǳ@ϭAǮZ}@h	@T\r\Z>>)J_\0þ<_O􀧧\0X|\0F/^8S y]GBlq;Nxb`|xnURtC`bW`",\0\nLӯaPS`:\nxO`g`~` ~`CS;/	`ap)y#G#g2X%!XYX}oq5E`mz`<Xw3I\0󁭫?[-[ag/v@q\nbwY\0\0	#@b>H\0R&\nT  c''Z@EZ,:P.^vK\0{!ۙowL0,yhP\ZQE|Ty<8n\r,''.NUdل??R?_٣ooԍ~{2r	zH^V<ԅ \r7a@k@hAB@\ZfaoQiOh#"hBd;;	vR֓o\r^b1~`@{?li,MA鍠R?e&\0Y]\0:2\Zrp w+Ǚu X|Aڪ  >yT\nr)ԀB.BσB^m}*ERZAg9XйG29>tj=1t/ /(\0t),tt\rt_jPrP9(\r	Je2\\@YOrBA)-7''<F(N]P,\n*RAϠEGA{AQA}CAoՄ^^ŀj@uPNPyԨ]j>AsU@YA͟@-\ZAm(yWn@8;bJ@  _ATlBAȭ@A&V&etqD7k(`D{Al V4	jqox@gM I=Hh\0@E:ԽFԷu7P#YPE_1\ZZ\Z $A5ADS ˠ\Z@Q<h;$з:4Cw''j#(]\\hA\r-TK>\0\nS_v6Xe\rVm<^v=X8+nm9X\r^61&olxu\0V`b]/=ւmo=}(l?| |!|@vhs	>d=jGs^~>~5m&ă>!o~%''H s)8(2[8B8"e;pT 8z8$8>~RD3	p)p	8er8}3pŋt[p:9	?g#Y/΀P,v͇[l8;-8'':8Y	}1]\0v{G	Jipk}pup;pm0\\w[\0dnH7OU悛RހXহV7Zf/fpkfcy: p[0k`N?0"Dg/h0Ư/S}`ZR	B)]`0n;IOU`~X(<\r\r4tX,mw]IwU\0w:;؀IPz_oq#O(C4<m/L\rg^J3x\0=<{kW}d1_??bxY\nx)hAVn@V!jq~#/ !Zwa:Sk\r*!9\Zd> \0b(''BLK \rSZL٣)ȖG"Ȗ~E<6dK+2sFŐw!vٶ} 88.@3m .SqM)@\\vQG*vĳ9\nB>BxN;Rv9oC@Ai\\șo ɐ"Hdf$_%wHlO%$.+$>Ur#H\\Hf~\\r=i$Oy-tOHV$\0r{yHދSHm4*.\0)<5B?C*i!Ut#U	Z.3-H}IHC@	!yNT4W!/A^A& /{9$@	q''A@!ҝe\r\Z	0eAUQ-o*k@DiG RD!ʑwޛ,Hߥs7v@Ȉ0dA2M{>t\ZdLCB&Wl Sw} _OAl%AfL@~C~ *!9}3z+wG! !ib)dEUQ@UlĔ@U<cjfPlvڧPV~Te]%g[ɃnvHn@\rC܍nyIgA''@mAA9ݾq+t))e,vu>5\ng[t?vW7Զ[辭}B}*]GK+zZuУbGCҠtc@c-޹P.PgfP''NAO@f@ߋ!Gy#Їao36NгK[lgzChO|\n4=\ZYaA/BzCЄ$^ռ1hB+ZZ4i[hRhr7h(h\Z~~	iAsCo;@\nJ]IhacZ즀<|-y-i[߸-r>jVVfBjF"}hm]U=v\0	mdNA~>5>)6#Lh\r3zmm/vC;.vp%P؅Pc(*By>P\\k(7zi\0JpJ?uʈ{B9P^~(y\rTZ\\Pg''4r*b_UAcAݕ4thN\\9_h\nm[	UBDC''5;Zv,\0tr*25EOs՞};	\\t4ʆ.}.z]fAW-`hLu+Lu\r\n[Ӧvô?ށi\r[,~fu[os\0*<5fHmEYYaVma60ga{ҁ=`{]Ek0`v~B=N\\;)=laxaZ yD梭sᭁid\\q0ׯ07O0rؿ.q0a''`XG8,HcRwĀ9tQ1Q;[:Ȇ0]HքTb.\naS˰+;U`avm]:.,K=6xv=sv㎆AavXǵiP]\rI!d-t\rvo=\rVvV	{V	Ui`j`j@Ay}X\ZXNӸXӇ\r綍!fe}\ZeA˪Ў\0%aiX~ Z0K1FQLa```0uv1~<	Sa01LS.߄u`}iίaa7`ZaCذ)\r467q>que8l|6\r\\~<}][7W`\0[6VpRjccfe\\I-\0|mf*\\;z\0Sl_{<,8\roZ_7M]av;a?w0WwE50{j}{\Z0=^B_gM	pWpYSo&pP/܅\n"m\rwo=epֵcwޫ0V_''|OjOyz8Tx@a<zX]	z\nt`/?0fp\0~-\r~p<p~,B/xf<&s/<<>^~	>\nO_snSF4Swxd<C-<cIxF=<9<c~%)pg9X+nHuOw俅!H+:Rx=x-C=kUx٭Gc0Ax/{xmAx]E=A77~4xSW	*xKD3a\n޶^\Z)5rp{p)O#4;pNHÉkp=N3RYpk]''s#p~Y8_.EGb\\bzeN&pb/\\+XKpe;8:\0ޟoDE\0|	A?u:GkO?=3rm\rǆ[	>//*/)q\rUF9y܃W0wS=߿\nK5B1t	Ch}<@t@u{X{RI\Zb0\0"Ly3LIya\rcj%{aY@XŀVk,7!®]a7t$&bf002\nѱ8qh	b8\\p9pa#\\=nwaQ1?Bxp#G#\Z: _\\A!M	7"@!9!¡[#"v"VT Bb1DWDFD|+\rpuv	q-z)"Qu\nqm8t\n"5hZփnhDdu"n&W##ehDξ\ZDSDYMD>DVD!Dq\ndFDE}YU(؂(DTD#*=BT;vnB<@ L#U~CG<!j<Oe!*B<	vuG!bxx9uѮ6h":|Ct0^#^MZ#\\#fBiCeG2#`5 GP"U~B|Dk]m+E(XߠX#10l!<u#''BF(G]NTw7w:,A"C={fbp!\n:1:IGLCLJ_Ի _"~E"~\r\r fas4}?x ~O![+F#;R#u\\	1\Zw\ZG)A\ZpH#ertsru\n&roOvw\0i?A;G߾_ #H<K-W#=<><WG@_.Ez+>(ȓ۽''ۢCd">\Z&y+dydy@ƥq7ceK6+3ȫ-=kdҹ$d;2\n3B13+37WY\n?dgdߡ̯?o9,x,4B]9,vG KAӽ1{|YiR||E֩ \ry)yg59}ܚl]\ZBAۏlCC"_"{JHp^RBB("$4&\0	C#*NHO$*EbrL)$Id|dAm>Hv8h	)<\0 3܇Hi.~#|HBvy \nΑ1rDsoA\0 G?SI七rM䄧DANE"EN"gs?\r?_1Ş%ߝ1(K\rUjP<QjA1(uqNHWCiBiPkً(3F(GP/CZ?CmȯCBm428MGme|x58ezj!ԖI(}mž̿]/PQ2CͻXԞu}}ޣ(GP\0HI=H;d-roGy3QP(''Q''&QD{+P6GP!*<''>?:Ey:S	u|\ryu/}\ru\r;P=V.wPWMPWŨkڣT\ZA\ru*u2fd$v?T-T>2*މUtoU*_A.ʷOP}ePZ1kP!Jv	:2U@=n.Dl@GմjKj~zH)pW$jjԼza)\nt`lqTnjZP-[PmRTu![Bʾܴ@GQ {Z:P\0R\r6mCBPxQ>\n! D(K1E@QgףPgpsE0\0>E,>O\\P\n''p~%:%@d\\@)6(%؇<Du{QM>\Z&$_5V\ZPB\rnA\r&PYwHwQQcsQP:ϕ|a j\ZWA}rQTP7fP♨_	4Ԭ6u''(	t.n/jZ%^BZ%Wqhu.Z{hM5kk_Ak|F@뿽Bo:R,kߢ=&:i=AڬP	|m36/G[L%Do}&#(z]?=J9zogz/:zm-poh_hx5a5ڻh5#\05+d 蠏&G{=Ġ}h?TpI''"Tv8X#:p$CFaЧ5ѧ#\n7BG3C_pDF''B''Ġ4nC_i\ZA_ѧIQۅDtZNt:GgFg^o@چ@gcй|t3;mbt$(L]T\ZW&@Oy*6t\0(]]B?-G?>YLGן)E?QA?1C? AF8n_-|GQhU4\rFj8h4\r4=@4иhM\ZCoCSo4y/{_\0тB(Z?33\n-9كm*D+X{P-.Dw=z}ot!0#Ϗ?c1ON\ri5zJ=SzD֋F8A\\A\ZBϢ||suNEE+փ0/̪cZg`DczcfM~ִ\r]~Y)#c֟	1l\nlYٔYfsn0U77f`<1\Zc\Z{UP4X&\\X?`b1V\\ fE1*ϳ\Z}90fqP881R1g4mi5̑Eq-ղ~H9jd9V97\Zsos㣛񱹏M<]00͘ɘLLx^L8-&&b>&&yl\0B&F[c[((\\S?I:|,Ĥham11U170z{07o217cbwb\nL!m)S܇ĔaJ1e10e0ṼvLO*%\ny&c-_<>k1,cj4ڇiby4ļv`9]''N;yxD\05D;rz@CL10n59AycP^T,	߅A&l܊bp9ܐ`Cl_`1-NAO{0;;kyM+I8f83a7#=؀BLDc]0S=N\n@ufY9YۃYn''`7w0+	USOܰ\ZxqvͱCص}&X#X\rXOMlkA5.:55Eb^csc]X&N]zVKֻ։NXdd-#[o?=`8=贄=x:`m3yX:31օz_\rӾ={,"9:֧=ƞƞ2Ǟw-b`C◱-0\Z6,\rôc8&b#l%s8s$l	b-^^JMH3^9Jr^XMmMM.M{폽\Zі1pYcsKmzmUl^nl1[-j-a`/at>cͰyll9P*>(}~[i!V%?>5W_!ϳ-̻ؖV|lke<eKKNc,@ohtzcbRPXXf,~]Ewa/˰XKH%cX0"~t\r,~5m5jf,	+>c	_RM\ZV)+ₕ걊hQU6*;خ9lwlwc''g~w1v$0&015sؑv\nF=Q5؉_دt*?+sӳVE5o4u쿇b!\nR9SڂS}[e3Sli|Jŭy=[{-NX[g[[OH(H5ٸs8qN`qg+DEۢۊ㶒_Qmvcqqo%8oWq	wqb/\rs8nn_>q)i;w!i:^.[8}q|/|8eop\\.\\\0*">	q=wqwvB;2paz@i3,\\Ԧ\\t@''|P|dŭn]v][Klv]lKNK%K؎Kx^Kލ~`.2Y	w7Gj\nኍJ&pe;\n\\Ŗ6܃T܃SpV*O㪴}q5V걽''m\\ca752qop-0\\ˮ\\^7\\^\\Q\\d\ZmupRpR(Hd pP8,b!?Ca(Qq8QcZPp̔Fs1[±6pN8K=N,](<qn!n+\\w3\\d\r(__½=t<=kdqv8n|}r&}g>Mo\\}2TG~G~F~Y~\nf-f/Upp&c}˸Ň?p+p>x2^ejs\n6װkNkk.66 Z00,M!~S#t( Oo7c4Ûnۈ*D{F3;4T;e]_5CV\n\nކߓ5;TU;X]t|.Γn#x?xjxIGx8Nb]AF-= )|-|<|]|%|->e	\ragX|<f>e|\n(bN|N>5 	?\Z	+)˧X|_eL\\ɇQG|Ets:\rWw''EQM|iB}z||Y|Վ/*\n|k&\nW	~k3u^Q:o72yjOKO ֗mc^	3<*maaxD#ڶQcxt4''\rOjWǓlSUxP</Ow|-xJ7YgP9vx^ي,N~x)x[^2N{vr==c%^p1>w|--k\Zw''{?#b''݃Yϝ/''S.o]-OϖQu?}?Pp\Z }_s]_OPybJP}\ZBP3t''+a-skl	ڟ?֝8AX!aC=DB3i6,A,¦@uWiњ!a1xdE12V"ai=IO=p@pAp	ߢS?\\!fƇKJi''[$_sp|0sf;\ZEN#؟E8u!lCݕBWNNNϼ''pfH8@8[BBbG<ź(B)!~4p	dJFZSKKHIH}2EHYG<\ZK^O$#dV''d"b7&d9@~fE)8O_CL''1A\nw&KxBɥRB-6?9BKBٮBY:D!T,~$<8PjBxt$8>P5KDw"<{J"((''ڷ.:	τWv\0Q(&o	C	#@>d?-_<''SMsj=E`%k	쇚 gGC!K ~%H	2OBۄn+s!zO&zS>L~%HM%{JDFV/	}	I<&|\nR''|"''&Sw	S̭Wi_фwR\n	\rބ ¢__Kiz؄߄)kAU%ǉkk_Dpvc\rq^=hqT\nQ7{~TN4Hb\rV7\rx\ZoƞDs;1\ZqSsD<9{hjJS!xo#&-_O&#vD&ODD3W~K%:$:WΓnnzD6z[]J[}qSI\0w\0ZbX%1܋N l!#^#F}''FAc1ċ$++k%bm:1$<Gî3iě/]pω9Ĝ?\\>mͿ{ĂkĻvFbR6bivD67)CUć6G:b]6bG''͡z$''Ӑ+gg\ngMM&pb[bb</Z#/{҈.ED2"B	Pk"F"<AMk񷴈DoD2p7΂fMd1̃7L."3"wҼBdA	DVn"gۯIEXo\rD=(&]^b7==MȉX[s7;gwAD⻤Z;(q\\BG|__OL@D!yf#q̧8Nzu8MLY@@9MK&$l%o".$.J3<H\\<VG\\dnI[F۲G\ZoMrœTHj\Z$W9$u$''$>)I?i]Hf 3H:I_%m0."mH?<H6&!m6HOHBGQdbgO2%>@2!E&m${Yï,ntv?H4#Y!Yх$k{$^q*q P\0tE:@r&l>Fr1#yT<@kI>}H>E$"lk߁-$S֓NZ΃IvRp/Rhx\n)ę3@\nCNϑ"6:""HgI΃_.KI1GϓbI`Rt'')A:)DJ(DJ #]!]]CJJ!]{FJʙ%eD23\rIYHY<I*Hَ\nRD\n)EUIK*R#DJJ;E*8C8TقT#U-jTISI\r-ƷIO[H<ҋo2RhfKjEj`Nj7DjGjۓ:O:Ɛ:^i^''u6>''u!LHV%	>	|Og gI{	{$#!$u7*.M%ϷOHxLj (''~zƖ$r\rqYHb]8WI7&$@,IoHf$I/I\\q$E	I!BR^0$)$mRINMY#\rړص0O`1Gҧ\nҗi۾4HH7I?"K+<C@OZXMZ''-@ǝ|0&t+ȫɫW&EÞտY5N54ZOZgk\0:f~dV\ryȺt-d/yS ٨ōlD⒍&!&dS^\0:YV<\nyf8cvG"sȖ.-V9!lMBU@6w{ad[\rn*-l!#י%癐EA䃇ޓ^";t&;*GJדΒ݆u7CGG9NdߚVx)rh59Mr"eO:y9ԥvp|:Ї|Ziz	쉵.!_(c^ɗX+䫥tKkUɷ~+ޓSȩflrzr+9W>Ň|*|Q79j/9K!g_#g>oKw󨜜@έ}A;NΣ=$߽jC.,&V-"ryrWJ.N.ݭG.\rAo{\\:E._N./X!?\0= ?1!W!W{Ձ5^kDD~Z2K~&R#7 /|[uȭgmWmm]vCr:y4ؖ@\\$CD2d@10hHVqo;2q=TD&#^)&82&3xdv;25YE,<,,"cbdYrYz3,V!Z䮱Jr)H&fߑJC~EQ,g׻//Cɝs{`\n3??6m"\\l!~B<DE^ZN^zxwQAQQ9LYaKQۀhhdR4ߡh҉5R2e͏#-ZԞNC1ḥ@R"(S6CR6c)gR|oL0)u)(g3!e[mn/#OŲ\nFAvXWGPlRlД}z(n(aG(f(G)A)$ʡ/) 0HgJ)ŭ4;E:M9r%Gӣ,P0J?O)aM3ȓR)Q.88F%!N0rYcrO r''rhJU7klUJb(%HIRR>QP*P87JYJƓ\0JvJo''%)LꜦ䅒(yT)w>q)c7Q>F;H){L)2Рx(m](QAJk5Z6|X/I닠)\r[)O;)])M&fJ$\\<iJ&ҢSAy!0(/(/(uYp LM@S )}~%k}P0Ng)L@R%)\na;BJ!kfP[7Ph-\n{\r͟Mp7Rx({Q`0Et"m?IDyR=0J6J70Oy]A8~2DPfSލ(#g)#7)9PF|YlJ_u21bKLLuާL(v8ZwcMuٔ,1cBJU=R1eJYRAU?IljNRVZ}0Zs	U;Õ3a;UU\nUU?τj!j\0B5Xjn^mF5"QRMf-}抷T/۶P]]KtjGLΥZPQm=%Խ-v+T{\Z=՞EI=xz)zpz(e$JuCnT.ST1z&QR/PP}2iTa{:z=S+U>LjTzcujiCj4DSc~S/n\\GI/ХW|/	zSpjҟcO$jz}{jft3[nPswCBy~ԼK|EIj\0z$ncj	dZ˔Z,-jZ6Z~ɄZH}pݓCÐ*U*gjּ\r9Ā|ڢ-|Q;7NQ!FUTI*\nK"T_*Jd|{N*5J,qaT1JD8PҺTjʦPn[~OAR_îRߤRUSQfQ?l+~L~OJ6WX5:KNRo(o*7	JuBuR:ul{@S1~VzPISix=i\ny̥i.ii&Ѵiiiva4ӴMi!(!&f\ZCʏJ7ӶhShAc4(k3VLm3_h;}v,,hJDͪ<\nSAL#JU}K]zL+Fw{Jvv\\JsB{ќi.ڑ4S4W$[=2=>^^KcӼ^Wz||ۏ"h\r JZ0h=-X|vHv>iEw"9Ly[Zk*-49-Q Bھ\rkcdZ,-)LKBKMɢҫ/Ю_ݠiY#$9[c< ڝHZ!TVF`@+7Ch,CZE\Zڃ5{h5*-fh5=\Z0%ZY5=EZӪ/#ڴὴ|ZsPN{abUPA{aRC{EqjoO@EWh1\ZA\Z:OyC@\ZONup4rn\Z?zF6%L\Z#J?\rјJ\Zt­/Ɖqh\\qJk4E4EY\Z=5Lʦu7mu/zki}޴>k>o/Ox5C\r޺A{XE{''''ӆL{håN,j6CӦ̹o{Xo9i?^ͼ$f\riYI>''7C+]C[I<,9WIu:隃k@t7:v/QD	\r=麱t;=7&Ls\\;s=醙[э9tYC\nH!K1IK[K\0mk}Mϸ218}t{l.qÄ\Zݱm~HHw2_;=}K?QB?cݕ3IwWGw{{[=ѽ^N}jEt?0DS=7NCadzez.=\rL-==b=ːSA?kHLXɦA9ONh><\ZEOJKO*\rlg''=voޣ߂o1~aـ;Oۼ<x=\rN''zAm84}z]za3''D/zR\0MzŜjGZC~Hl׽(׽d9z?ƝgӟI&GzS*	VFoҟ=?~Jon7z[?[V=/8w4֟#*f;h3I@ot7QtDƌСB0:nEi	Utf:{:ʏKD|c*:%G`ttx:iG>fBiЙLJEg9tW:MB}Attqg.9r.KSte4 6G_G\r#?:.ݓ/>w/}CwwohLs?뉒>>S>_Fo=OK/so+WCUdcSz\\C=\ZCCpC6CX36\0qbelL^bl~`gk2B=\nÐ0=̰8:zT40"M	Zɰ>dɰ3~d0삅OYuAÂ-#OEC_ka}uqcãiqtg2CXXq#+\\2N''!S5wFjFOFF*dd3""0"^((qnGƹݏ1곌ح=-qVKT	m]FFx #a(B2n|b*qfm~e/3a<g /1JK71q:2@!BQ1Ȩ$3jnf 3''u\rMͺ6/Wmƫ{\0l^lÀob@ޘ0+VD60pSbN1''ގAoeПe0FZ3і!b2DW2$O30ay.!P4]EnH8GSӛx9fO%:c$1Hg}x1{1὚n+`|:̘ڜV̘10wW;a߀4|l\n\\faRg%1Qw̫?$1\rOz1v2[KL3Nys[Yȴl1JW6w{&62_fy8tjtA.K#LזL7\Z{%7:iLo''\rG!yg\0f0=<{yҊ7iea2&z[A-$f\ry4fͼPf^[n3=e^}yLve&IQY>17f3B;3Ây3"|gʼ5tdfOlc0o00M;qf̂Xfax 5Y4c`1K_~ffI1	̊WGϘ^՘,''g-̦[矮2k/F2י{_2+O02_nb:0LL)	?<D_c왤LR3Ȥ~d=f3ُN1["LQ]_)^eJƘLY.SS^?캬J)avG0{!׵_oRtcwXpss%2?\Z3tWcṈ̉!Kp(K&>s,9Ng~EeNGBߏ0g3O0`=̅u̅Z/&_r<s%|2ZUmZ6:OZdb4XU,M)֚XkXkDu֗Y_t6toa(fi6q%,͇,,8=,.֖d<B-5k"v[\rGN4k,UZ4ˊͲymړβȲVXv9}kXXLW`9ZYNo6d9sY.)X.MB*ֱjoh˷8dNN<:/+)\nhf&BڔЦ+PI+L&dvcE$"`YsYы.LfńY1uXqGYW.}e%\ZU7JHfXilVzGV:Ǖu<Q̺q+3Wzy&5ĺuFu+n\01%\\IV%v<+^UȺsU*\\~*zi*w4u*Wc?*ob=/d=ȼzقUIAlX[XzV[]sGXTmY\rXϷ뱞6%KKwKz*i\\c^f(X`vςnlxς`\rr8c\ZYǋ,m=eYd+yZbFAK%ܛcYKZ̒;d	,Y(%qgz[\ZaYXCXw>n5e}>cnF-XF6~	kBe}adMNB7y.;''B֯OkQm''SֿY+YjOw+[#ɞiYSֺIek=cku6*:MlIưv&Ԙm(a;(IlI8{˭ۧwbwwwwe[-66g6*l[2.ڗ/%ycYۑ俋}S\rۥve&fqd䖰R~*\Z''O鸰_h"cI;jLv:v쐵쐛NIvysg\\g2yJvĳ+v9	170;fNd^b_Koe_{g_tN2jLN]xNKe:Ǿ!agazcg99oٷ,\rt+;þe*؏>ڿ@]n(c7ܯa7<`?Mf?%<2<vD.y\r9%ƍְWv{	Zaw\\ew4awb]lH0bþSp!`c;^;^lw\n&WaC6Mk˦Yq6j''C|p[aν`=.寊J=vݝ~\\{(>{>=\\/aOb/a?|u=i5Aʞa{Y̞uȞyŞ+>{֜Iv"ރ4c//rTd#8|*AʹjY\ZQYu,ggm1gQj:[>g]zg4	g0ѵT~;٨h1x+S9pɧqs]8JygJgggg;g''y^ͱX%Xñdsvqug9m%#bǑsأs80q#xXnx@98G8p6rxp5x9>Þ_i\0		l	r}__pVsp`6ND?''I0k9gq8C9V/8nshx_w:Ur.\\:ǹt#sϖpj\05\\r9i幜97[8f;9@MsSDz19\\6sgS47)QsJfrJwsJGwqʛ_r*9ba\r^N6S%3TxraO9O=˜zS!γt/NXӢSi٢Xq^p^M8OZ9}Ϋ_N@9\00tq૗8]	dZ(3ER8^)ҘCN\Zs9%ô:s8_8\\w#u	Gԭɑr8`Lp<)⼆Mr6[qp29ΜUU+Ѭa''X@θ#gbdfW3&LoΙ~V3Ej.s殭,P8\0G8_\\@3WUr5_s^js}In(@sr7=K\ZsM^rtsr]ǜ>*Nrq\nwwe;dk_ڈ{ǹ{+GVcøJuәzakou0YQ=r/x''c듺{Mp T87ninX7ōFuq˸죹11a1Xs{Q?{˾r/Y^&DqR͹	w	#L6A7rg57M݁&1iܴZn:f7br3ǸTn,7k˽iWʽ6ǽ)7g--Ev#Tnc	~3[[[HVG8pߦrFU\r>܆N/͏¹ͣG-wmk;/xH''p\\''\\kS.(\\D.$m5»ͅB}CM\\XU+r縈>g.B3)EIs\n8 #R$$.E<KeU$.5..os.u\n?qnW+v'']''nuМۗX}m}K¸~D !N;1ٸ;r	pxp#\rxsXW=`ܙ{]?봸˸Wq.-p-ۈNCi݊iֺ֦Pyk{֥t֍6lm8nӵK~ЇxFf<H}A3_gncʳY\Zvt\rvμγ\Z&l*x{5sxv}!<5|Tf@_.C# ;Rwsn?<<xGOe$ry^abNXHx''2!<xqv\09/H/IBG𺵼p	tw:=\\gʋX}Ŷk.n;ʋK0Y% y	?By_]Kt5yhnݚ{yf\\6xy_N\n<yS1BS8Ȁ+ʻW''UD*w|U"xx5OCx5+1^o\re32vl׆x{6kck;x1{JjxIia&by&O{<bSq#ui(fOx<lG+h$h1$yLYӃǚqv%<׃<iOX*<Q9u7S={j{׏ugyxCwFFpg\\ބI;o=o*/+7#o)>\\7w~G}[U7UjWWgWW#\Zo5''kRC;E\r+|S|7i|_5|-s[WWo[''o\r͸η0V?֗={|ۿ_}mc|zlwv.C#M,+ẅ\ZxHx+|J\r?3?0͎Ƞӣ~RSGN/HVc_u0~|?~a#R!^~bE:?Og(>o|gzo=j.g_:6g?g9>o.rc~^{u#_jǯkk}\rWFCqƚ$?~"eʃ߾i+#Y5!c?6>,6K#I|ԏ|ȋOk''P	3|>9c"t>=*gv]s&\\F>>\r\r|Qv7_|x/p/\0lW\nIu~oW@v{`0~F?1&\Zg4%1c=_֟3Ng!V]8_rjU/"+z*&/ՙ(uEFC@˳U%z.xPN@T@h.\Zax(01*0Y	vv]z,}%,ߛ\n96l{6l؝}&\ZwN;8L	2_NIkn?<*8tN3+8Z-8EplX\r-vPnI+D:/=*8W j l fA4U"8??!`f*͂51[	.>!ÓlAY 9Qt|W\nңMQׇ''\Z5\rH6A[=u9]AeAp vyAi`:AセjBA񡟂ӂtw4Y $Vp?,(3u/\Z	g		-2-gAǩWSWtj\0RC\0@''ge}Z(N	P! j~G(\nTS(`CN\n3zё*	@<i)1Htt@6,P@hś4AWeYwmc@J04CS+Fq''/I?SVӃ7󣂹^x[x(XZw@\\zp6mjߍBFLP+Z]&9 !P&g|jBP{	N(4E	*fd-շ0)[h	wbr6{6½wv.BVB`-~|=,WxP''t<#t\n]l\ZRkZme]£m£kl7zL}\\˅''ۅ;\n|Ha90Aa0h*E%ݲ"k[''<mOYNx&bBx͊0".Ai#?"FFx	/c#ج0a,Xx1aEh&#L\\^ L L.L.tm۱{[Gx+k»*EW\nKm.I>vg\n*VV''VVwrIoj@<>#<-*RዊDa]a{v l\n;P+B!<|M E~"\nQ؍BgG!LHDI.4֓*d̇B,:#\n\0mP~L($''BY0U(:JS2v		=.\n{xU޴^ma}o\rDدc$p8%|phQ>+A1 Z1]8?(\\%<M8f,;w	G]O8!N:N>NAOi~<"~"Nv	d7	pf^[pvSpJpS%\\\\,\\,/\\B^k	HDn?DٗD<BDj:f"5rCCQiN4>45^1\r"''kDDD7DzM"#"#5I~ٹ\nֺmK-mA"kl\Z%A?DKDE''D4\rE!UB#r7ܝ]EoE2EEm\r6c	E5	""\rXYW":(:e'':l%''rjDAGvREfEEΞ/N\ZE.O/fxpe(QO8)%#RDLOx%-wrUJEˢD%\n߿$Uw"Dƿ*l=D;7ED\ZE3E5ץfwz]TIH''z5\\:+zC,FXԴST+z''z!ڞ6^J;E7d͟EW^-\0"pW=L^(BEf0E"Za\nEBzI''qPE2;!D^#["aU$$EbB$!GD}"լHGR墮(Q''DEPE}8Gk\\z,zQ-+\ZMΕ(\Zh/\ZgS+\ZY+\Z51}G>OD_^ESD#Nff 9c_?H|ѿ}bU\n*%5+X=)@]9HxE!px^b.-h\r(f[xh 63y+6n#6Ɗ-m2;Bߊw?.*[n[[M[v7!*Ų0kAkqXScB@\0V*v\n:!vo;_pym{{ǽ*hK*''۞-{ȫ$>_M|4K|QؿؿQzڈ!gš=/v#6ƈ#~G/<:">4T|qDUϙ_)NXNJPtT|\\|LFrhQ\\[V\nQahq:fZ%{B|]!<\ng.>7g?+g,s(ۂ	q~De5Q\\#_ߧe⇞ʘQq%xꟉQnG\\q\\,Mh%~vyL7?wCI<Gr+T2qW2^Se+n+n''(ŋ*T1@{Apb"U1z1r_#S]HB^x(i],ƙ8qĄ)1Q&&iŉIf\n1}TL/"fًW7bKW$s׋<ł:Xl$HX:˽݇=V}soJoFS"#&=l-4`S=6_(W{gF_\\^)BxcFph^$^\Z-^38VI4F*Mhn:OH:X7Mb\\ʖXbILG$[-%[%%|/Zd>d;Xd/dݿAldOdH.Zb׹Ub'' wEW%9ıdV;}%\Z(qy\ni$?%nU%aϕ#H"HeJ|_{hIߒRI	sI(]JDDnWD<$9IՒsuIt休b$d$^Qr*Zri%\r$K9HKR$)T\0EV8H?uH|\r$ӯ@	~j䛑$wH\nz%E%Ż7H_?%jZ%m~Js$k\n75=Vw**;ɣFmI\rꑤF"=.,9!\Z$A''I\Z%;%σ%rI3v%@=Ht<$`	 ZFN(~I1dʕ$}Lg !9IHyq\n	UsIB\rH	*pfoJ-E">zH"Id:SyDJ(W4WHzr$+ Iwu`5E_F)y3a y<!2VJާJF[%:$zUk,$co5%[o)o$\r$(˃-7$F/K_vHh,%YJ,HUIUZIR6/RM	+TT˸Buwt3G&]7n#ՙH7`F6J7LzwI7N''t:Iy\\;WtK}!VttއR˨R։=?{RDM8aRg%W)uɔzoz\Z2(=~!鉐Uғv[''/$\r俗9KC\nih5M\Zږ&\r쒆-K13\Z陵(4ꢷ4ZWzA.@NєtqI`zui4sJ-\Z-iJ=vUz[zS"Qo,-,-&-nQJKU]fiP)LzoBz﫥Fi9B놴bzACiJw:\\Z]#ђIk\Z5fmi]B.SUZ@;JKJceǤ-FҖK\Z/ʶH[ˣm6ݶD\n#R\rB=4)"[)בbXc)Z %fI+R_ʯ''JWK,_-RggrnJڛ,\r7oKKڤK(C#P]aGǘҏ$tK''LeY:MNfJ2߮ UJIyPғV\ZrƨtetexXrrJh,[=M>iHd\ZdS2tL&*/[-ӶfSddzV2=z2_2}~L!SYKfp^f 39''3w2s\Z5EfvخWf="2ٺl/\Zw9Gd ١ǲC횲C߸#sVKdGʳeo4dd76ʎyekȼU&˼NNmJP[Ȃ~_۱e*e0Yȝ+q,~YhGޥEn@"wg"ö"eQ7dQOʢuʢb,zd1nbI,LcNC_&TE\0]=T_T5/K*\\+K#d7ʮd`o\rٌ,,kTv,[,dWdynYٝ@ٝ|YA\ZKV.+RM}\ZMmeAY2JVIΐ=z${FV=TVF"^0ʖ=.kN.nK+Z٫RYaYg^@''MeaH|rm,L[0dd	;>TFH''#9!edᄌK1Kd,\nGNӣ|PLTU,0eG2iNt MօLuaȺzte=k%+p\\޺\rF|Wd#>>\\Y#etԙk\Z2싪lr!dOlrG6ul}},uXU6$-\\+[(?)]c+QpT/\\Š]+W!WZ/׈5T䚽b5OU/,rv\r>.7Pn''On|?Nn<"79BnN\06M\\[8Hۊ;;?;K]y]ݙ䖁r$-ܶTEnDq@n{N~0M~تO~:<Z%.B,ʽ.˽O}6}=''V/OEʃ,yZyX<L9#w[{#u#F$y5cJhu+ظ:ye<D0$\n*lQh2&O<%懑_*O^''h!<iy''44%UH~G_~zMIyI^XV^L /BRG_kБ1WSU&>jS>Ky]ǰq[zTkNy-,yǟΡ\n9@/T9ǤWñNr\Z9biW,Gџr)ߐ夶e9yO,{*gٟ<ҊosT."ʅNrѹro\\$req;Wޓ$m7Va;|~Q%_"8n"%|G]"@Oȧoȧ˧W 0Rwnb|pH/2U/;JMV.S+4PhPMxXcb]CzUbC.ņ}\neUIe;V+=&nX\\bs#MkEQVUbvbk]bJcǌbwbgkNy.՟run͕]L>Ka,%[z:8!>o/;DqbXqBKqs93ũ\n"?RW{CL;#Sei*"N)"Bf|Ymsk+.pr0/((]H#PQe+߁*nlW܈Qd)ZE"f"W	W䭼R)Gw*\nڊ{6`EYzEȨꩢriAQsBQ۰Kݩx_h&)M),E5NduH&*:3ζK;7Wۂx=^鬠;+8k#F`+Xj\n#N6Rp}[\nZV*D\nqBU!9ѫ])d"DPV_Pt*^߅*wzw؊GbbQ|bǏEO1bLb<T1uW1GeCSbrݢb2vǹCr}4w/yb^+J1]1b9ubL2ST?TT.Q5*(5_+BuJ''(u*\r^*7K_)\r--6+w}MSZVZRڴQq(5J.Lyh`fVyHt\nB(WR:G7*]/+hT)]KJhc״QZWyGOyJy"<iU4Rtse]20q{9Nz{A:f)fV03qהQ''~\Ze|*2]e@yŦEyu2q212p[ev2IJQ&*(Sc*Sg+3E%̏ʬZ孔!eeNܴ2牵2#e>",hWtw7;(kR\rn''e[彏Qyʲte%Sڥ|?`+UVZceSdl<|\ZV6}S6{(_)8k|;	vZOV<vVQSઃJXQ.G+Wȭ딨X%,LU(''*l%ز_IjIWRd))#cJW[p&)B%3SW9a_+94یUrMRЗ~/SJ!JVs|qRQt_R*(}۔}6Cʱ)D1Y9_PNeVN\\QN-\Z+?h+(Gqysu\\()!MBFȈPF	R(l*ٲGTRV}{i<ϙ{rQrɶW~:Wtj_QO_񿒿.u..).|wEw@@5.7P''wVVkM\Z%=Ӏ\r\0mEδ=@גQVN66hlj\0l~\0}U%oB\0\0^޷r!~1`_%p-\n`j\0S\0\0O.\0\05\0Jv&`p88808{p;<8V8~n.ַpr}k+.഑Q	88w	s/H\0As\0B^\0B\ZPRũкpˀuS@m'' \\]s`n4_4|\Zws߻\rH3$eM߀sL@m5!#@L6p\r s\Z I4 u/N@qf@\nP6T8dyu@9wn9mw\0\r?g\0jk7=8"bt~MIM6w{\0F\0mF_O@0@q@wS.CF|m=xD\rdcࣸ$` ;\n0|||-|6c0LNfA%`6\n;,	vp)ɷ\0\07O\0$<tkWH	\0J	RN0\0B!,4\0\0=0 i\\=p2X"@~X4X{x		X2м*@ppձTZ$Pc-Pk\0j7mnn6\r;\0H/|n+9ܾg_p''phxpk:6\0hhh3h\0ZNZ%-ZVǀ[]6F@@G5@G3QS\r謦t|r`\rR<X\n	HztgO=ozTz;^5a6^3C@j0m`ps9Zkๆ`+`9\rBh@WR`w``05\n>PƼ}8k``?kOIiɍ:LB#·\0ང%l^`v0;	j\r0wi\r_\rN߁O07%I\ra2:\rPO.Xw\rX(>\n|:u,d\0;)i`l||M-q\Z\0,\0yM\0;Ӏd`~`-7Q<ױW:%Rc_G5Pq+"p,^Q+3kky{~\\mDr  \rNr".@# Z	DD׏	$@"r;;}sʀ0AJ2V ,o^X_rGs@@Y-PcPkdc&KFt˪ULzz\ZbHcbhh1h}d#h=Ai	\0醀A6<Az%Vg_/O=4m\rÀv:|qU\0%\rڭw	ǏڻZR2>	:sdy̫mAC@ԪAu?l0@Gg@X91+rh|.4|׃<\0@i΄UgA!cA?\0]\0\n4\n]q]\0\0nNNbWo=I%0ށn%%\r%WRmR$Ґ?A*;1s;k@w/A97r׃\n&@AEϠNWA%_J\ZA%$T	***@AUgA58}C\nTT\rzTzj}z\r\rzqԚ+;jryqs#Y6ǀ@>T^A21mA\n`\Z48h4)\Z(W&z@>/A\\EANwYG?Ǘݠ_\r߬}?/ \0Iܷ	k- oR@PKL\n8	~bt@l`Pq޼qC %\0A@\0Gu$}~$s&;Q?*wUs;̟k85Uu`݃wlޖog-Ɓw*h`&\\"i.l^d6:E`ۛ`{ H6`v;\0_{*{?.O7y}kggY\0\0z68p&H]\\nkϞ_9|%G]G~\\_odۃof6ccqep''''26\0RFo_''nԞല0pZp''8]f\\7κ0΂~gby(p6{pA!p/pisp\\~\0\\q\\kg\\ץ?~\n7Og\Zg,sO;7gkw6MYt+)!W%Nq\n\n/;lM\0p	b3×)p5\Z|W8?xX?;YWG.G*Q(khggKSWU.:x!\rODx?{3\n+nKpp*_p`G`}6^Fgщ;00~5O)\0[``R_6	SV[`C0D4:6.Oz(-lr0;U\r[`WomQQ3;	Qg~hWA4L _ ZLE=DR!dS1ȖU3C}d[X.d[).\rc\n1l981bDs#b}\Z"b)JrXbe΂bC?Bq8z8%/C!.!Bp n{Av{ěr:$H`I7$dTD[d\\P 2! B" W9kidgHTr;FG8f\n&\Z$P\rS}w<zV\0W$G#Hҙ}HH*$=$k$z$S|rt䎟+N}zHv/$o\0ɯJ!! 鐢b1Č)&>)\nT.B9z?!Oml!O=[ OC\Z}!\ruAuyxȋZ''(IOҜy9\ny>is١y.\r\ni}}Q\ritҡ	 ];!]^ȇUMCo =$HS/2212\0|2$d_X2i|;XLBfr!~C, _!Sk,1x{:\n	C6\rmB\n!n뇐6d@;L!S! a=Npv$ȿ"\Z@Ĵ-i	D\n[kBWCzE?P,cZ=o]CAu=Uy-[@<ny-6t t{:cto''}&C9\r=ح5\rݬ@͏jA36C-j.B-+^@bP;q:~Zu	z\nPWPYu0@Os''B=;>\rPg	=wvoԏ@٨A)^ACCC~*BþC}+2hMЈЛh4;譇$,h\neZ	V\n]慴BB?f~\nZ֫V>CdЇ''C&Ak.Bk&ڕ%h݅ih]F\Zn<\r	C/@vC[f^C[۠Sm3xhЮ`h9hG:?8Ё s.tpe:bkBbTc3Я@@@g{Ԡ?}?oFCT_.օ.((HB>A!}PV(|h\0nE''A1R(dg\\<	JlN$PҭPқP(eV(m=W`HSeKrf PWPR2TJv|b)Tk*+ХuKա˾G-BNT<aƹ05`E0''&0=õ0=Alki#Lv7l؎a{lvAF;\rLv	v]ؽf,L4a\003o0t雰Ca~ìa65}0{9}f?s9_aΤ#0(	0O07,#\0\0;q&TG/7滸]\ne@4,ˁmz޵	vnv.#|!vy<BvvI6E>M>)"aaOK`WwG®=	\nEoа߽`1!JX,|K`hnn[[oRvRbB`))X,}	,	S*x=4	Ev0aZrXˁl\nC`E\\2xTV+5f]Ua!Xe&7C/=\r_8{:k*5:a/6a`6^j5yھ.>:l``]ᰮn[jX37X_#\Z>\r8[ÆN\rݸJs\r=TF`]1}񻰉5>.lum:6=l6\0KKn;I_W߇Za''7\rg\n6!\naa6xS	/Sa̔,#G΃>xJ^L{a\nI&Lٿ>r>W{˂Du5#kn5lupn\r(\\.N\n\\N9|cq|S,|S)UW[[~moo߁~w#޿v9wy<i<\rFNG6 &ܴW7kO澥p:	Uv+n}nwan	~;tᎯTGvOɀ;];;?+Z]ݧt''v\rpst~jm)wLx`e<\n~q6}\nCˋ0"<\0!\r~}rEgcc\nlDD=x"8<xO낧F{~Wz>~J?\n?\nRxwR<7u<L _+Soj+m''|m[x5xa:m	xǝxP#{cGc!.ʏON\Z§ɽiW\\>> >*_I[2km''UppM+.&pp|f8''[7\\&`\0r\r.6iD\\+O+\ZJu"d_.1uK*6)bxĚZqfIBwski$BMxmw3A^!bϋCc{I%#h xd\r=\\WC7UqMk08Gs\nؼqtlpB.!u1[-=Z8y	q<yl_\n^#r\0k\ZǤ5]"hq~8d?8AmE"EIs9".V#.#BȈФ)fĕĕa>`D*)"R#FD"HH*@\\@!R3*w*w#,(DV}ܛs8(~(FN"J`DEZ9oDuD''ǵnZvu kE\r`''s\nE9=Je&A>DDDˈۣGq.~чF|FG\\Bfd!~ 9#Q7\nau/R*bbbWDyTfbu1CbA\0]F,|E\0PpcD;	ߏ@o@''OA׎AX<i>,E~g#D+_A[tr!4T!0byĲ+pCK#UF*KHu\0RGy\\불r/CnxԎ5GNF%E#u⑛8H=YRd	Rӎ]rJry\ZrW$rbޅHkHFȃ5H(%UãsHM"mH6ҾyԝtJF:e#.''H{vHI;ǯ"]_ #=HϭiHϏEz f\rgba35_gH}ȳJ2B2"rm-O, /_yդ\nyUV׀"''g"?BFOA\\V)hEƮFN#iȄ=dJI2JtEJA})Eޝ+Df%	YH2?52_yY,A"4EbeO3W5	9Ⱥ4M# 䓓OB-7#.ȧbdZ$U+_͆73w}k!ߟBy|>CvlF~`"{TȞ?doٗ5쫲F"^#۾ G GPgkx	CQ5Tԗ7m46-+UB@>9|50rG5A\nT ܮuw#7\np`QDKHT\rĎ5!$!2$/<F{HQ$cɐL"Y${\\!FrS+܌H޺R<#cאR\rBJWFHsH)!xr3ܟ5ߐh2\rr3?''JE @ڜRHDƩ֨EihrQkY4~Bi-֑x(-j>jCdJJg;Jw+d	jzԦjfJ+J/7}Pڹ\Z_>L	jn22ʓ]֡Ljo''P7 P!/P(PƧQPTwGt2j&\06kr\ZI@Zk:%hAy0lQ˨\0*,**\\*h\niE@oBB?1PW7P47"\\B]n$P{wvPqT$*~5x\ru;TJᡒ?P)ܙ._CeEg}De;@PlTTѽQԃ=2T	LUYBUD:٢j{$ZfT-;-AŜB\rA=rA_.B5<\Z\Z3rQRE^mCqM7P-!TK2tv6]G}+Ti<TW\Z#@?)T#jt58\Z^&FDR1"V[|#j*IVw=.j/z례Q1(л^x<rDP6\nD!M((yt\n3݀JQء(-e])(\\[Q̖W-Dq0P]`J%\rD	zP=(/(Ű5j)F.jڊZar*돣Ugw˞L5]GkXZ58Ih͞{uI\r@JZǩ\rsmZw/zz$z*zs>l>z0;''wi%\r#}[=oіcV76\r67ʌv\rhǧh''KKvQ_]hhhhV._~Ov=.=ЧMhO''ڗ\r}F\ZiBV!{oז@eWn@_50AGFGDG=BG7.7G+q^/ѷѷLзcۛ[-ę1tZgtitzC:#A@gFgiyV<Q(@#]@@C.=Շ.}쌮LwBW6+Dtu}f>	T,V9x~~|+6~S~A<nګn__{~1A݋ny]nxߪC]~/X}RA?Fנ?V=CZXg7LoE-I*YaM2(=@EmCOף?j*3ГFcoN8z*~[cvM=пG:04p7\ZACT0H\ZxFz~hƤd1h(\Zk?@8hw[49<BS.14s3}fǺ.\n4?	в1<Z.-ҋnn7uP@J.jQCa֬a4b0vlX>5݌ԷP`P0ztV~)Ƙ$f筯 )fw!c`b_b+S0\\0Ff㵶Cs0&iw011W0礼e`<iT ƙqi9cwaq/`"c\\Uc܌o`4L/*\n`20~J)ƿVߡ	pb`''V0D0G1e[0!ez11ݗ1''va0ݘ(`.Lw&\Zp	I~II`2ba>`<0]1;arʌ19o09091yArL{S0\0mY++LeL)!Lyc(r7\0S҉0T7cg1M\Z1a]<\Zc''QLrLØ?ibތy^`y!.4k`;17̫siLLͪdLt\01eaJ}0}=6~L"f)dd\rRfk5fv3\n3e~d&ǎ\0ϔo_,1ca0sO?0:Zo]Bx&`\0N`,t@\Z0Vk2`C%ߴ	CQPFj4zna2°F1¹N''F:G`đ@R/F^}Tt\rLS+ĪVbկ^êOcWnƮZpjjuupkz*5N\nvsE8V{֛Obw?\Z1=ݿ)\Z\Z2&C{XF)k~{YZ|njcmXT>kOu?uڥu9Vu+u==.wQUC`O3bo:Lu2kUggM؀ r+6[6f칼^칮.칟/NUb/^^^BWaC^a5`ݎv|/6C''O7YaX*l<6?h&Kw/aSܱaރ8b9`o#a:asؼCl#)[w--ZV[VqV7ckbwbk?''ac''/a63C]웓ط;pß؎؎ﱝ]e/.ClWClw!]չ5a%bءءQpPv8R;rvEv,\0;Vو|;᥆?cf~;kJ??:;H;&;[u;ԃ]6{2 (,A?^ÂN>Ăo`7csx<`qKȋĒo	X*,{@Sb9XVbPXa%өXɯXQ4\0+K8~fba;lJ].]._ڇǩ:©WuyV[­#Xi=mVt6q[dYj5^_nmSۦm;\Z;n\\܎q;q{mpƳ+8c9A8\Z)άyqF88F-+¸;~wB2u\rݍsY¹Kp''|q''h#8H=''Twp\0y\rg?y('';Y;w\n.`.h!.xM\\2\\pBEo1..4	޻wٸwEwD.h2zY/\0\\.j	uEsp+.=󸛝Cbq14.N..>uw#.]).i#.9-ՊKـˈ؉2O2i%wgq9Ɓ\\N/w[Uq%qU2O\\yH%.W{d^{~\09W?k{5,;^!Zpp\n\\q:"pIո ܇xs\\]\\OK\\\\R\\3\\_mǺ7\0=''M@n07Tv71:[,[&N&p&K\npFnMXXfpwqŸKt=_{V~\nqkGq@-~#6q885:Cny>8d>9Išp+8LE\rCYY8G|sGȐ8G[wZ麅\r4_6ㄬ8QK\ZNlɺ6_7\0qxܿ#FxxUXWOkX5Fch^)[~*M[iDw[wk2}|^cxC7*0o8o5/\0\0(t=޸.olYMu?ěZ "ޚ)(xm7D[ֺ~:wYul1ar-tJ|w\n>v	ć|_ߌ_uC}_2G+G؟_\r*49(1|T}|M{ckqI:~Oj:[''w#wJlCnⳗ9\r_H8/"?)ŐD||H/𻀯\0U*Y.Y5''O\r[OĶ#hf42yy|S_||;{/oNw֗Ap|{2ߩ!?￾j?g	?,~t<W~rs~?\r?^uMxȡcxh5urxDYģ_x]<{Oޯg:aLJ6UϞ*-|i%x6%6Qxy^9ئ_qT7#t"TmM5	VH} Ak;A#膟''>$l̙$l|9OBЏHo1v~#2G0o`E0M0U"	&	M3 |ٙph8`iz``ٗ`]F 	wR-H`7Jp#8m\0On!E8v\ZMp=CpmzEpJp+|Lp''N!M8$*;\0k!8ȅp>d5ŷoaZm	e	ЮBNB!|[4rK!A{5$D7r	7`LBn!&Nz	BB!t.!l_EH"d"df2DB&pG#=B''=pE7E>-%o%o.$p)_PF#TF"Tn"T-Zij#	k#<JxfxnP''Գw	&yZ6=nC?	}$@zOY	ޜ 	Ca4DYW넯d60sDNEу\n;)c"aG\\$̻#?ޯ&m<D\0 7MΏ\0RIeZD	''BwPY\rcKZM`F	'',gD\n {hAdNAez3OW G5aE*a1ɍ4l\\BX)V&CU\\`U6_jSTjq)QR@\\{.0Qǻ%nDbBϿAoo!n"nW9w׽ Fu\r>tfMO"8dN<PE4ZH4Q@4I4H<4Gxh Zʮ▉V5DND+`pt1\rFN<rѡوW#:FM]zwגnDDC󟉞`;u4+F=w?J+#VH<JD''>I%v*ʈ^G[&7"[''Dpl"2Mj$^$Fj"^{xI1"bS1bB\01Y.1ELGL/K8|9B˅xh+1ˀDL''sCE۫EbW,xN,q#qĊzĪ_!׉5km<F|B|TPN|^NXOu`nGl(%6xO|A|s*+3{.[''7W;Fwލ^;b?- bJYE"y{mϼ#w\nq&]q.ğGqqVI|".At0"$BD\Z#"߉=D)"QO$1"O"&9Md#%rQD^h''ǈb=wwQq-QQ7AT]''.>{N\\#. .''.o%."WfH*u9U$U ImMi{aIpn]''i7Ika?i$m=i3iIS	.u]M\0F/[=ҁ''Iƺ$SC$գ7PUl9·Io!!^%9wΓ\\ߒ\\Av$$Ok7HX^O:"4$&:JR}J8M~9D:j''#Ր|mIAUHw&]\Z$]%!!],#]1$]!;"H׼ȍ֤HKBIQ|R~R4ts*$WHUu-<)ȅO$#IfHIv;9;G)"eUսI䤂=RwTcAzM*&]!U7*7j6GjO =Ҟ!=O/2&5{$5_t&v^Ajit I%-"ZZ1cIVƤSR;O;O>2IU:oA1YoIS`̏bMqJM aّYI\0)	A`K$؈:	IȔFD"x%$$)DK:ؑh_h1PVHbi!qo8\0ߚ$0%	I1$1$-''\\$l$WƑR2~_JZVbHINzŒUnl"ԔUdZY1y)ƤYUND~!;|g{[ԭ[^"o%mEV#''lH6M6~K6}''m5#K"Aid+{>V!o%ޠ|&aKIޒ|슑=dt$D''\Z$@ȧm"6M$nq"ZۏϮJhrrP2tl}ЎF|/9`,By.rr#9ԃH`.WݓW/9꒯&_@RQ0fkɱ	g[[ȷRBrjir仝=6rn5rA\\$1Nܭ''KZȥf6xCr!ry5\nJk*]ɵoRȵ(ri(04q7!9A|M~&%7o"7`_)ޓ_wo۞''=ɝjr`rr4r0f7@%%]\0rϓ3^Mdi''yb{^ψz	oO8wT.۟%.\n@2(3`.2BH''crȘds2NL!OL_dW2nI(-KdF2%!	%s5Gcd~Yֈ,8G:0Y(j!YTd;,[h#\ZJQ2#ȆRy%`EMY-hLQֺ)S)uwRjP6_@эxO-AS6S6l>mAe/ԙbeשk]-ʮ(`-_\0ޢ$FO)z)F1g7S)_S,=+W|:rjbCm=Ҥ8\rPfRuvQz(.)Ǵ3(nJA9J9aH91r/DPJ{pחM_E	ƺP3(S.S."(K(GR)]+2U:r	%3%#]Hy0rsОCsĒĔ1mDU ''JC6%3$%SlOddYܣdSPbR@J?j!hd{RJ)TlɡT=TTrl\n)5ƪog~g9sa\rņ(9bJ"jKyclOy{N#.=]!4޻S:R:F(]AwC"/ӊWѓ_$|ߦn)%iS)\0*eeTe\re잂2-emDsz9s\r+ʗ\03ʄjD^D\Zm74˔)Dm.ߢ|K|M,-R\0(o\n08yJTwS (0ػxx=qAO x\n͚%S+O),yB>6JU_0SIcGb)k)O0_HS$I^''Er"''(4)EYL,''R(KEAU]ʿÔZKTU%585W?P5R+S4zyUW9u9O?4[v.P{G+mnnPw{R\r6n\Z\\C7ojdI59E5Z_ZjEwv^vTPq9TTy3˱Iq2k*1+(MυꮒCu	dD=Ոz[޴a>#iW	5̿6G&k	멁ߩsiG''tMjSjm굍`5FN7S^^F4Sc\\J/Ʃjb-5njĄij_}Ԕ)%Ԕ,jsWj.5-IM+Q3\n^S3FS3\rR；ޏ>S~PjaZ8X@-+mΠ<>>D-=J-Y-RONQkQhjqfLԧvS\0Omv\r7NmjD}OmTS\Z]S?QP?^~*@զ<=<A>:*:Q%>8*uFJZDB"\ZPg''\\{3ԟyԟM?Q瀫ǍׇT`)*XG"O<b*HuyQqTLHTV*HenFPYT7aJM\ntTY{m''U1yxFWMK7KS6\Z<iMh9Lӄޡ8A[fN\Z#62i0/i4~m\Zm4m|V*Mȝ*m[	mK?ڎM]]Kmwh{QH3\n7}&\r,R:,.,4+4[>vpvtA+93i.ճc]z8k:q͝B;QF;yE;JyZM;M}:ivhM;cwgILhӂb*iAoiX]yvJN$]h%c8ZT}5dڍ81-FTM۬O%4HL/Ĥ9ZDZJ-Hj@K@Kj2ve\Z&22hwiTCв|e!i/$ӊ6ZIv4eVgЪިѪӝhul;cc[ǂ''ifZln,-Q)Pګ\rګB8e$"A{Ў6М>ܟ^@|3M*cкW;hCtHnm>6J]mmu k9[L	m6mCKy\0s?ii\ZF4\Zd\Z$\r֏''А1\ZwFxFDШ`\Zm-ư1=i\\]4"L	?4_Mf7I''4w460H[<O[@2@_𖮪\nվb\ZzXg#}o}}9MתOyKIgbƐ[M^[/Ow؂;Yro!ʑ''.ݤI?=n7K7;QK?dH,O֠[MQhuQ5͖n~AJwEw,;z#Gu\ZNN4a3YaJw(yzq;M?qotϊ(A=׏Oo~ָ~=WАFzH<:C~_r~Qe~4=">==kt3=R~}4=*=IO%㣵)_uۏZI=m8.Wg_EϨ-gLbZz# qzP''=CC&dLeBx\0y=T^B7ѫ?#_O_h_@x&}czSZNz--^7Z7{ozIzG&ǘk@HP0}t!}X}"ɀ>eRD\\_OA5D;3MXLСt''::bC:f{њ:tk:z:@D\rt,چN,5-Db$H''TtI:C.Ui{_>t~''~xD3(t&@gl>ً:Y\r[I1]t1@?Ctdm/}/EЗK^EJWfj''C\nPK`ubjc#Znf cEz\\vj	.C''@=1t''5*?N0vDE2v_ػ+cax͆abJ}wCfXQ3g##G4GR60,2OYos?Ùp9pI>p)8.|p+3P\rnG7q5qyڅ`xeex=0NO g`/~\0#Pd eYf{8_2)ud\\t#TNc\\s~θNfD3"He7zQ3#ʣcĈm0\Zڌ5{ɥ)9T35Nw}w9]{݌|FѼ\nx\0xFپ2''bŨQqgT3=3jgԌ%2ju׌GTu''>3jE1\Z[MZWMM0F@Fs{od4c͂nƻ]?r8{F[=%#p*\0腕1512\0c1y1tvι~11_}1%c\\K80>j3>M1__ɖFq81gX\0\0eg2H%pw@n@=0020܍,`''1p[|A0(7t4m!vVàN0*ܕFbpLZ@;|ac\rR1!PPf,F82f+ϲ+g/LOGn1U/0U0UfLLuX s~#0sx''SDednn<ܲ~ٌ?pܭgs+~\Z=MLAAXti\rgҙ3G3N2-1sLwm-Iiw>~=>wi_ydh1k0K1,372]73ݞc[2O(T*LϝG!טgTg0UL){Y=3Yf@>3yƼe?Kd[G1i@fr?W-W.1b1`F"ћ1c[љư7ki\nff3Aļ<:Lafc1̾Sny̆ي?\\q83X&3'',Rb9w2<f>$1K<R5fmJCf:}ZӉYSŬ)^bo`~1낿1?|rw0l/g>z|w)|e;l$0<`=Bg~Kb_`<}f~8T\r{ٯy9*9|;ǜx<9w9b1t+Ek|c"s>}9g)g (&	΄1wL8#!0q<&;& I${2''DII3晴d&\r c`L8?2LNeCgr''0))[e`Z2!sERZ=yֲ/6Y:V,Xt3,o&c$kSkSYOmf:`qe2u0e²}uH}uH+e`Yj,[!œejHkrzr"YYS,g\ZR7r!Nسyr?rgYS1ˬS#,}\0̵,&V@+9D\ZUVH''+$;R7Ⱥ4ͺ4\n_e]9ǊeE6Ċn`EWn5bܙ̺\\?`ſy͊_4b^e%f`%5X~լqVJYV*(8~i,be	YsY9mT+вU8_z;t=VlVewV[{VU5U2`:*Xo\Z\0X92OӒUq)	~1w\rkW7IOXo_XWSdV"ի>fcU(Y}ʝk+;XYq^/-oX߈67XӎXӤ8]֏WX֯eUP\\Hkn&5\reG|d-g-LZ\0;Y,\0~di,h~XY`P7XY3E`,r\r%ˢn!"m+vM^X{WX\\q\ZKP%%r-g.d\nM\\k''K4ǲ73,YKr/[t{U:^Vaׄq\ZZclRƳ`Zډ9W2{mԇt`&M7leogoϚcoߴm`6(>6薲&:؆l,&@2T6)+bTaD;feζ/e[E[b`ۘumlp=]"mdHdMub;>e;RN&l''9ٶ}ܸ}BeOLeĄ=اl*w;>/j*\\_yLz{E!Kv(;e;|:J?$;"QǾzx}mڿ3Hh/ɎIc|mf뫳Kٷ؉^vꛭ0vv&}Gr}gye}qKbawO"@vjxIvѬO1W3+Y\nO/v	svzvt-p~8\nc?a?re?hd?a?7b?~t;v-5^gI즵fKHWv;دg^[?[o*o߱[#mH}vG.]7re3O6;.!''!\\{Qt)MlZ7{%k,{r=}+o\rx۰?N;P6FlHJ>F߹\nxq6CM6dr\rl%^~S܄&6-hc%\nle4{i$^92yG}gգ8\Zk8kՇ8qֽt嬏dp8"\n6ު*g+(%ggm.gІ~WcTc{*%\Zs0;spvmcÕca;ȱϱ|~cc>9,{ȱPʱ1slW8vǲ8vi<_c]/xs&ǥs|"s-$㖚qB=xxq|,9>8Μ38g9~&fll9NvN	}Npn9''f!(''I\\Ź\\͹ʑsE3\\\\MZÉlsnf97=/rnĀ9íĊ͜d=;5DN''l''d''mN,ݱ=d}|'']N`''Gt_)_)b8E½^}Ev<ȩxy&0>S{SSgVǩN<Z.<Y-k4X4qq^q9M\r6IW78\r8-''9mW"9mmv`Nԓ_z}X9=/9ɜ~OX׏JpWgtl+gl#3{3>;ę!p&x7]\Z,3~ΙnL9ęL̐ٶ`w?8O_Ŧ9uO9G8w98 A]8-`^rpyou\Zb9l[ˡ94}mpy+9z\Zp8!@!GP`98GW#ȑ r92شw\ZF]eBVr\rs׭]oӇںurcsg	sZdסp͒J#6ܽ\\C\r!5\\\Z\ZsM֌sMX@A3״(tkj5SFrQViVmV|׮u0uȺu纆p]q݊q#K&\\oZ֋`P\rBqksyPXd#КCFKn(6Ↄ+gp4pMEܫ)xn7nԫh+7''rcX,76-.{M<+&}+׹i<n79n:Ǔ5fl5\\r[Z3ninJ7_-:V-rH0b/[~<\\>I>:}d#1TPmX66Rm)MܦC-W+wVV4=m,˚ە%q$R`.;2Y]!;Q;zņ;	~sΘjqgMqg	٥?"?"M?wZK΁;_t;SpNs]>\\ UゑH.~wpK_$.ћTTr1F.>:Kt%d..eq~.w\rjs\\%W"sJ7K\\^rWPZOe3oOUڴ	orK5<<\r=Z!oj?O+.OtxbosJ:OIooLvg֗];3ܾg(w''?\rϨMg3i];);(w+g.g''goų`ϳcĳe<<y~nz򎼊99&iMVyNh i)sr2`myx''y''75<*|_|m%9..Y#yyam+yWixyKx1?bd5Xw/\nU:x+f^^0/u/\r<ˠy2xw^yxYxYy9Iqͺr^b/p^퇼b\Z^;^+۝+c\nx^Ż*^+҆˫ȫ&oI:y\r''x\rm;y\rދ#RK&#iQ^t1$u^*}gp.׃$>>1My"x>_x%AgF`&ox7SA{/&PxBywy`''9om/9|1O\rBoW+w1PA\0yPA<PVf\0˙EzHz~zb+zG1l1طy=v<N/c.y͑<~HOOZ$D\r<AOShy\n1xoeoQ,᭔yUvYU>*b_w|U-__9k5ͪT6.ׇlN78MÊF[7oBte4]߃woq_^?j?ŋ\0`7M|''|S|*m|ߥ|<52vl|g%rwKQf=Z=''O2nOJO򽍳މR\Z#~\0Џ1ʾ?1+/mſOz*6_N_GlGn_\0z~Lc-?vۼ;"ǢQ1~bu5?鮂;K"~?mEY;tpM+<9~*\Zq#QtIj)Fo7NJҷ,[L/Z濾\Zcdo_wwzLw{՗h~&ȳ hc<?O}Nɟ~RşM	*Npҋr |Г>5>tM	ZCQpB\rc_cX|l]''1EI|<ϠO|e>=5ՍC_|_#@ejLV.Xsy`͓-kwi>].h\nUu;=>k\n[\n\\ͮo[l~/J#!g٦\n})j"	v.	vwiW\n&\ns>z	LOLZ.yA\\$xK`)^,(Xl9YvZuNj''pnu\\m7{G8#N]x-8ZŢaϛ7\rkAK]A`]ܱ(zo)_\\\nBB``A#(տ%w@pKpUYpzt zAL F)~	RR_CiN:`;Ac Q  S&S*{nA<Aa@#BP~{2㨠ƷJPU*<</H\rvYP3U1sAv+Z}WvF	mjA%AG$hoLt)t>	cmnh>>\nzz}=F:A(Dz(LhU]_*U%\n	.1_`r`Rj"(.!K,HKI0wF\0\niW;&(+`OpayI\0+@:U;+''\ZdC@^- &Է4CfW''`X	!>vUX )},ft,%FG,9,k	VcjժV՞\nպB3kᗄQ\r^pB}.''zz;;}=B#oLChQh""4\r+͓M_3V	B57\r[hQ&_:n&<sli9	XBdqL$<q{Vx <f.<z>zzB38tf9ᙸ|aPՈaHAb6Oxq.Yx0̵^n&<*^w^G''Q\07avLxCKga̾ta̩X,a}¤䶫dn0#LR.L{+x,b"{JxO7_xK(̆掯毬DE	l$¢w>hkaI4BXͽ/֢ͅ[º\ru:@a~DX''*|)|6cϫ_F\nUMWyVc}f麰mz}[=x6\\")W?tl#*XR8GGC;Tp*q(?i>Nk)\nݝ!8&>&Z	(A$l&1	6#:)kDy!ꀐ|Zh|"dm.!Q`kW(''\nNB])~ʿ\n+KBpg\0"NtjTW,eurE}YFh-h-eQ>-i[tdSMlі#-+q{ 2Ut0GdֶUdZthS8W''D9"{-Nא-Lt)rz*rQƊ\\w\\D9"We[]CEtj?G7VMN(K(:#:;<?Dn)]H@..%PZ/ܻFqTA$N];T#vU!4-2|!Eg鈢qD76nnEqt(G(q!Jz)JvÊ22=\\(;fTh((,*tMDDR닢RҶҟh5Qr=ל=)OT}>_T=L? M.=YZ=uh^ly#zQ<++9+z}"j=^"jm>&zm͚3E^ˢ.\r.n@G]-?!w>==''D9/\Z<\rm<-\Z._\rƪtE_ɣ<d|蛱 v䈦=DAߢ`hna\\4;-,GFoLE"pP~A.''\rX:%auD^D\\''"}&"?ћDLKuIĶ9!6{xnLH	8a"ɟti@$-RL׊UUSUmū~9U5Īqb\03''5;\ZzZFxCwn|xcQm;[;ĻĻmO\r_{Vl+bCbSqbbbzg-Bl);՟;+vO<,#S]4qg8J\\.igCDc/?_J9!C|[yAq_2AJ&''oouIs$C$NNM''?8,NZ_"-%Si;6eBq^8/tXC\\xIM "I\\kKhqهNq#88$; tY\\9e+rŋk>l׽x-~\\^\\U\\O~+~:)~$7ԔH^glf⦅OfqsLqW+Y8q˶_+oj;J;~}UqMq琸xp6Y<.W[''_4''k_O\\O\\OgGĿ<ĿWΊm+¾1ШFCHR]J~V\ZD!1y{ܳYYw%bVI>!f͋E);ŋ|I{RU+^JT~LIVGI46K4\rJdpDDdSdQ7ɖA=ADcdk]-CA>ނ\n}Yc#Vbz@ Y+LNX-\\.CJl\Z]$6L$׏HlKl.I7IӒ%|equiSsI[Kgk+k瘣]$@8ߑ}*	2ؒibCL"k$\nQr-YQrf+2-$&YY-*aInHnhH~$飫%M;;ѯ$Hrn.Jr''$yF.IQSIIIakP.)nwHJ%oK*=I*r$U}aՎ8IDDfܓԥa$uڒI:䉞8V#y攤<T i]AIN{G)-Ns%$HVa%c%dK2d2E2d{dn9Two@YJ=8JjBH0''%*	5VB:EB\Z_%cJr뎄:!HHXׯJJD?$biݨD2a+7J$pźC]֒Cw%UMUUT5@f''U}j@HJ.HYK^ͷ~II`̥ۦ	RNtOv԰"Uz/5&w&RӧRنRվwXBz:/u&u"JKБKW''^ϸ/G#uUҠэsQ!}!I/UKÃH#W}WkupF_9*騔LђƉf7B	M҄n-/&um`m.$Ҕ\\iʋjijb4mRW%M-ͼNzǧWz7I4YzVi^}4{薕xs_ZڰNZއVH+wOK+[J,ӥU)Ҫ7ZҚ҇\r:FiOYx11G%}Ju+H''HIK_aKWH?r^,dH[xG$KikV:iGgiǭ`i''Wp_}RM7@B]?GoHjZҡG:ҡAtptD0-~.V,,CtPkۼW]`=%]HJ1RȵR`I\n@HP)EEjtX)6ew,_I	");)3XJM;"VR:o!_\0HRFӒ"oR	]*Ke7\rʄ5ҥGKP)ZlCٚ\rue"dæe2/\rd2ev22@l;2}q>roT!3L&_N61eo+ 2u2#<Vvn̴+3;!33''H0Yz]vhJ0AOf_/_ˎ''e2W)2[Q2ޏ2Wn[9W-T7/y ;ů|ZO|352ɲ@bY|\\X͏dSeh+Q+HGYk*"Rvm^ٵeȦ<Y䈁,:,:,(%ݚ|,\r~&Kl˒ԣd)e;,\r,Yֻ]!Y.2LW#e<dųBYHVIV:%+)\\({KV$,\\jKd=lnreNŲ?rY;gdz2d/=^5^eeoY6kFYeY;)dz7z1eU\0"L6I6&}֔}[̓MUȦiWduYXlÔEknD雲?òb_\r ɐd{e(?CMWp7;dNF+#>U/dp͢FFÒdtz8CZ#c+c18;d@Q(pjde"k[ULQ&J/ʔ\rejtmٿ|3ٿ;rA|G`||MN|\\nuwɵdrA\\\\|q4Lc|`|\\wPMn#,߿n\0<VnG[n=Wn/7<+7~Gn֝-?l"\\;+,2[''o?#?~[~6MP\\@lQ?˝N4ȝF^OjOH=7=\n&f><χPr&r_gYX\\ȗ+TxF C_)IGjon<a ԓTqE:<gAJ$''S~?@SۣyIpyK<oD^,/GKK+ҡ!y:OȳY8Ik!YZPy_Um\nYX ױ oem.v׃fyC);+;nYAZaI}||S>*!Ǣc?/ɿOlO˿ȧRgGgnȿuݑASb	\\ה*^ Tɡemr褳$J1r~p^zC_cw1XwДlR&''ѳ\0;9u&gN3l<9Z29/맜a7œ"HT,	5''Kw˗DJ|vBC20XY6Uo>P?XqB8DabDicbK-XK}H-b"I36S0M{U,]絧}D/obߧ\nNKH{TaHaQ=ܧ=械ߴpRp)pRp5Vx7+<9C^>\n/?mp¯Cﭦ*^sTy@<SnU};g)΋r).G*B+SbEx2VqcJqe(Xq"nFq"v@7lRYqrv"q@t""EUH>Td\0)R~T̄*r34ˊk]QIWQn()*G^CJ"Eefuꨨnx󮢱^K챢l⥎UMk3׍-${o[E[t3?N蚹ިpW#S*>+(jl)btbl}dزbyիwV=\0T\0\Z\n\Zb@R O)PKx\n6a\n"篂**)k|~Fg*]kV\nB;PޥPR(f3j\0Ŋ7J#MRP\\u%^jT+w+]t^Da\\czN3NSSأ\\5Ԣ?UW5+uՕ=+7QnnPnLVnJWv\\ոrTOv_OJCrK>-rrߵ*8 \r<ȉVTQTS*;tRZVZ(mΚ+N*cvE}U(#Nl-P:Sݕ.Tk/\r\\選rئBPl\\<$V~}RyM''<+pWԅ*`z9tʋ\rʰAGW[_(#+\no)K)ofS(oT*\ro)K+5t)y221[mVemRw*ߤ(Z)KW(K}ʚ''5,oovڕ|e퇲NT>ݩ|{M蠲!WHR>8|~G"gV|6U_}TOnЭlWvR݉iʾȫʏeBr?TUYQ\Z##p-_%r"kr2D~UNӔluWk))3sm-.J\0J	WBn)aKJ8UܥP"[(Jq%앒$\nPm*)&Ԑ%\\ɜu*hC)OXr!bq\Zx >EC+rJi4.8\\CK"B	NIIHT$\r%PT$RtҥzѠPznng@(%虳zCQe軣@(hP-/ˠygZ`|WA;=]Лz,~_R\r`F]Q}rp`<=۹`c$L5i%''a50c''Nyf`1Xt:eX\0]ym-=v`k0e,P+G,}4\nnu\\*en1_<﯁R^`tY|d;iC}gF}?=6&q:lUD6uNm9>qaot*xB D''Bo@H*84JLpDg?9eD;A_eS}b,ؽ\rqVBEwU8b$N2$HRggP#87k=}.Az\\H_<2lKw2o~\\\nWՕpͰnV@T;p37Idc.=}\nBQX)<MG\njP|<<q_=yTCx''\Z;~Ibp\\\0UGW_+''x}F@Q&4jBh_@p2M2|w:[Ows|z3*`v֚aOYJ\ntB\r{.>Nި|\ZU~t/;΢8`''/Aq!vQ{P#7WhpGeq8ƬtGKGJ>kU	/"pb\Z/Vt)$MI6NiW4ph\rQ4[,`Q9CWh~Z\\-)Z^|izh2F2*C;l/:pK9.\rU!i=tz:WMDwQ\Z=\\G8=ߏC/Kw5zrBV\\7L\n5?{gMCߜz߃~I1@?nL@+9nx[bq_wp5{o{m^44_p?3x0\Zr6%x8ãNvq0[w\n}#y&<$Cɚ0?`=1c[/5eW+̲YSzK=f`Nbo읆7{oM?ǻ5e{e%j,BXd\\\n|şI?G,\\eϻ㳄h|	\r\n`5+kcո]ҿ_VX]\rk<W`Iob]5?N3n`Ky~Vٌ\rFI~dw~H3\0t${ȓI4?n.}r\\E=3Iig5˔zB}:H9/TPi@ѤMҠqir\\[B5"i]J!H{Y霉a]7аwIo	=n&dL!/Ȱv>\rL%40M*J)''iʢd^J&$hځ{4|+M7/d溚dnLH\r&d9͐mE}S9,%6GBBEF9ϥ%\Zts-M;L˜ywtsU\\Z@ՎeyŇeZgN>䛹|O%?05;6XPږ@}ӂhڇ(?K|Xc:M''P52:H3/PTk\\	tjd+7(n1JP$JPkEl(Bg>J-Ԇ:?b)Q5S1o{A]J<(kv"]u@^ 6Lv~B9FGʝ|r[]274PTDzÅ:*J]ORg_*\r2s*\ZHeP-Fs=U;2uIGһL ?fPÔ(-oRs~hKmKj_ګOuUs@\\ًʆp];-X!rSYq?Φr=VgU.yɪ]GSVmVuXm~''eA}<љАJYpuM`<ڄeO``56#Va<x	#\r<[l̖x<a:O''ڰd<Ý'')3٤L^3&i~ώW`M<[&b+,p{^0ZG;5t/_W˃?\rRmŮ&_ͫN]eyu-qِ=c&Bxe(ղ&{''?bʾOoPf.@-\\~9]wmݣQq8~C8tq9ީO{pؚt˨6|s&ٕg#G_8ҹ#	c\r>QS?sLO>xO[ñ9VOo+pݕINMy(sy|qh}Ô8&_fk-|{Nѓw}||..(̅;"ü(~ؖΏۺ"pu.7IE\\Ѝ+^sa~i;n#fg\\Ńk5sN~S؅;n;m>rHn|Cp}4@?ֿ%MώY~^g3bگQP6]Q>Q'']jQ}!eWd5!Q䄋vhg}O\Z8Wt"~XO)ݎ2줱*4$?C_Ā(EH<8(c*AƙdDjIˣdJLm6ފ5VQbuJSlU6Ķ־w]T)[dAHYxU8*%ʲԌeiL8ӫ4Y5tT#;WIɺ)	_+KY?{W4Lٺ3M(Jzi(;%X''JzLҒvИ>rx\rkx+.WZ9D5?TPX-	+NH⑋XV()k^KJ`''c%uFSi#$ӭHIsɪ"Y%r6''A"$''*Rr%ש@޺ɝR?T$R01J\n''ΓBUyV*u\nq<EwIqMHIgy:J<$cʤ@I~yTx{HŶRY Uwe[BjޚKMZ=~B;NEMȓ9(\r{KۏО%.i|2 -fR+H_i>Gf͓gk{|ʷQ1]:HG"nK\ZS MЧ$aͩfl?wZjȑ\0', 'no');
INSERT INTO `wpiq_wfconfig` VALUES
('manualScanType', 'onceDaily', 'yes'),
('max404Crawlers', 'DISABLED', 'yes'),
('max404Crawlers_action', 'throttle', 'yes'),
('max404Humans', 'DISABLED', 'yes'),
('max404Humans_action', 'throttle', 'yes'),
('maxExecutionTime', '0', 'yes'),
('maxGlobalRequests', 'DISABLED', 'yes'),
('maxGlobalRequests_action', 'throttle', 'yes'),
('maxMem', '256', 'yes'),
('maxRequestsCrawlers', 'DISABLED', 'yes'),
('maxRequestsCrawlers_action', 'throttle', 'yes'),
('maxRequestsHumans', 'DISABLED', 'yes'),
('maxRequestsHumans_action', 'throttle', 'yes'),
('migration636_email_summary_excluded_directories', '1', 'no'),
('needsNewTour_auditlog', '0', 'yes'),
('needsNewTour_blocking', '1', 'yes'),
('needsNewTour_dashboard', '0', 'yes'),
('needsNewTour_firewall', '1', 'yes'),
('needsNewTour_livetraffic', '1', 'yes'),
('needsNewTour_loginsecurity', '1', 'yes'),
('needsNewTour_scan', '0', 'yes'),
('needsUpgradeTour_auditlog', '1', 'yes'),
('needsUpgradeTour_blocking', '0', 'yes'),
('needsUpgradeTour_dashboard', '0', 'yes'),
('needsUpgradeTour_firewall', '0', 'yes'),
('needsUpgradeTour_livetraffic', '0', 'yes'),
('needsUpgradeTour_loginsecurity', '0', 'yes'),
('needsUpgradeTour_scan', '0', 'yes'),
('neverBlockBG', 'neverBlockVerified', 'yes'),
('noc1ScanSchedule', 'a:3:{i:0;i:1769699061;i:1;i:1769958261;i:2;i:1770217461;}', 'yes'),
('notification_blogHighlights', '1', 'yes'),
('notification_productUpdates', '1', 'yes'),
('notification_promotions', '1', 'yes'),
('notification_scanStatus', '1', 'yes'),
('notification_securityAlerts', '1', 'yes'),
('notification_updatesNeeded', '1', 'yes'),
('onboardingAttempt1', 'license', 'yes'),
('onboardingAttempt2', '', 'no'),
('onboardingAttempt3', '', 'no'),
('onboardingAttempt3Initial', '0', 'yes'),
('onboardingDelayedAt', '0', 'yes'),
('onboardingLastVersion', '8.0.1', 'yes'),
('originalScheduledScanStart', '1769439858', 'yes'),
('other_blockBadPOST', '0', 'yes'),
('other_bypassLitespeedNoabort', '0', 'yes'),
('other_hideWPVersion', '0', 'yes'),
('other_pwStrengthOnUpdate', '1', 'yes'),
('other_scanComments', '1', 'yes'),
('other_scanOutside', '0', 'yes'),
('other_WFNet', '1', 'yes'),
('previousWflogsFileList', '[".htaccess","attack-data.php","config-livewaf.php","config-synced.php","config-transient.php","config.php","ips.php","rules.php","template.php","geoip.mmdb"]', 'yes'),
('recentServerAddr', 'a:1:{s:13:"111.90.134.97";i:1771390299;}', 'yes'),
('satisfactionPromptDismissed', '0', 'yes'),
('satisfactionPromptInstallDate', '0', 'yes'),
('satisfactionPromptOverride', '1', 'yes'),
('scanAjaxTestSuccessful', '', 'yes'),
('scanMonitorLastAttempt', '1769560572', 'yes'),
('scanMonitorLastAttemptMode', 'standard', 'yes'),
('scanMonitorLastAttemptWasFork', '', 'yes'),
('scanMonitorLastSuccess', '1765423546', 'yes'),
('scanMonitorRemainingResumeAttempts', '2', 'yes'),
('scansEnabled_checkGSB', '1', 'yes'),
('scansEnabled_checkHowGetIPs', '1', 'yes'),
('scansEnabled_checkReadableConfig', '1', 'yes'),
('scansEnabled_comments', '1', 'yes'),
('scansEnabled_core', '1', 'yes'),
('scansEnabled_coreUnknown', '1', 'yes'),
('scansEnabled_diskSpace', '1', 'yes'),
('scansEnabled_fileContents', '1', 'yes'),
('scansEnabled_fileContentsGSB', '1', 'yes'),
('scansEnabled_geoipSupport', '1', 'yes'),
('scansEnabled_highSense', '0', 'yes'),
('scansEnabled_malware', '1', 'yes'),
('scansEnabled_oldVersions', '1', 'yes'),
('scansEnabled_options', '1', 'yes'),
('scansEnabled_passwds', '1', 'yes'),
('scansEnabled_plugins', '0', 'yes'),
('scansEnabled_posts', '1', 'yes'),
('scansEnabled_scanImages', '0', 'yes'),
('scansEnabled_suspectedFiles', '1', 'yes'),
('scansEnabled_suspiciousAdminUsers', '1', 'yes'),
('scansEnabled_suspiciousOptions', '1', 'yes'),
('scansEnabled_themes', '0', 'yes'),
('scansEnabled_wafStatus', '1', 'yes'),
('scansEnabled_wpscan_directoryListingEnabled', '1', 'yes'),
('scansEnabled_wpscan_fullPathDisclosure', '1', 'yes'),
('scanStageStatuses', 'a:11:{s:13:"spamvertising";a:4:{s:6:"status";s:7:"premium";s:7:"started";i:0;s:8:"finished";i:0;s:8:"expected";i:0;}s:4:"spam";a:4:{s:6:"status";s:7:"premium";s:7:"started";i:0;s:8:"finished";i:0;s:8:"expected";i:0;}s:9:"blacklist";a:4:{s:6:"status";s:7:"premium";s:7:"started";i:0;s:8:"finished";i:0;s:8:"expected";i:0;}s:6:"server";a:4:{s:6:"status";s:16:"complete-success";s:7:"started";i:5;s:8:"finished";i:5;s:8:"expected";i:5;}s:7:"changes";a:4:{s:6:"status";s:16:"complete-success";s:7:"started";i:2;s:8:"finished";i:2;s:8:"expected";i:2;}s:6:"public";a:4:{s:6:"status";s:16:"complete-success";s:7:"started";i:2;s:8:"finished";i:2;s:8:"expected";i:2;}s:7:"malware";a:4:{s:6:"status";s:16:"complete-success";s:7:"started";i:2;s:8:"finished";i:2;s:8:"expected";i:2;}s:7:"content";a:4:{s:6:"status";s:16:"complete-success";s:7:"started";i:3;s:8:"finished";i:3;s:8:"expected";i:3;}s:8:"password";a:4:{s:6:"status";s:16:"complete-success";s:7:"started";i:1;s:8:"finished";i:1;s:8:"expected";i:1;}s:13:"vulnerability";a:4:{s:6:"status";s:16:"complete-warning";s:7:"started";i:1;s:8:"finished";i:1;s:8:"expected";i:1;}s:7:"options";a:4:{s:6:"status";s:16:"complete-warning";s:7:"started";i:2;s:8:"finished";i:2;s:8:"expected";i:2;}}', 'no'),
('scanStartAttempt', '1769560572', 'yes'),
('scanTime', '1765423549.3628', 'yes'),
('scanType', 'standard', 'yes'),
('scan_exclude', '', 'yes'),
('scan_force_ipv4_start', '0', 'yes'),
('scan_include_extra', '', 'yes'),
('scan_maxDuration', '', 'yes'),
('scan_maxIssues', '1000', 'yes'),
('scan_max_resume_attempts', '2', 'yes'),
('schedMode', 'auto', 'yes'),
('schedStartHour', '20', 'yes'),
('scheduledScansEnabled', '1', 'yes'),
('serverDNS', '1770116635;300;172.67.167.161', 'yes'),
('serverIP', '1765048038;111.90.134.90', 'yes'),
('showAdminBarMenu', '1', 'yes'),
('showWfCentralUI', '1', 'yes'),
('signatureUpdateTime', '1765143463', 'yes'),
('spamvertizeCheck', '1', 'yes'),
('ssl_verify', '1', 'yes'),
('startScansRemotely', '0', 'yes'),
('supportContent', '{"top":[{"title":"Blocking Troubleshooting","permalink":"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/","order":0},{"title":"Optimizing The Firewall","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/","order":1},{"title":"Wordfence Web Application Firewall (WAF)","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/","order":2},{"title":"Scan Troubleshooting","permalink":"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/","order":3},{"title":"Wordfence and LiteSpeed","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/","order":4},{"title":"Two-Factor Authentication","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/","order":5},{"title":"Firewall Learning Mode","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/","order":6},{"title":"Scan Results","permalink":"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/","order":7},{"title":"I am locked out of my site","permalink":"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site","order":8},{"title":"PHP Fatal error: Failed opening required wordfence-waf.php","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php","order":9}],"all":[{"title":"Vulnerability Management: Webhook Notifications","permalink":"https:\\/\\/www.wordfence.com\\/help\\/webhook-notifications\\/","excerpt":"Stay up-to-date with important events relating to vulnerabilities discovered in your software, in real-time, using the Webhook Notifications feature in your Vulnerability Management Portal.","order":0},{"title":"Wordfence Free","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-free\\/","excerpt":"Wordfence Free is an all-in-one security solution for WordPress websites that includes an endpoint firewall, security scanner, login security, alerts, centralized management, and more.","order":1},{"title":"Wordfence Premium","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-premium\\/","excerpt":"Wordfence Premium comes with real-time firewall protection, real-time scan signatures, an IP address blocklist, country blocking, and Premium support.","order":2},{"title":"Wordfence Care","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-care\\/","excerpt":"Wordfence Care is for business owners who place a premium on their time. Our team installs, configures, optimizes, and maintains your WordPress site security.","order":3},{"title":"Wordfence Response","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-response\\/","excerpt":"Wordfence Response is for mission-critical WordPress websites that require 24\\/7\\/365 security monitoring with a 1-hour response time and 24-hour remediation.","order":4},{"title":"Incident Response Services","permalink":"https:\\/\\/www.wordfence.com\\/help\\/incident-response-services\\/","excerpt":"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.","order":5},{"title":"License Key","permalink":"https:\\/\\/www.wordfence.com\\/help\\/api-key\\/","excerpt":"All Wordfence installations need a license key, also known as an API-key. The key can be a free key or a Premium key. ","order":6},{"title":"Account and Billing History","permalink":"https:\\/\\/www.wordfence.com\\/help\\/account\\/","excerpt":"How to navigate and use your Wordfence account.","order":7},{"title":"Wordfence Central Tool","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/","excerpt":"The Wordfence Central tool provides a powerful and efficient way to manage the security of many WordPress sites via a single interface. This tool is available to all users of free license keys or Premium license keys.","children":[{"title":"Connecting your sites to Wordfence Central","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/","order":0},{"title":"Setting up two-factor authentication","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/","order":1},{"title":"Using Wordfence plugin options Templates","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/","order":2},{"title":"Using the Configuration page","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/","order":3},{"title":"Using the Dashboard page","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/","order":4},{"title":"Using Wordfence Central Teams","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/","order":5},{"title":"Using the Settings page","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/","order":6},{"title":"Viewing scan Findings","permalink":"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/","order":7}],"order":8},{"title":"Dashboard","permalink":"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/","excerpt":"The Wordfence Dashboard provides insight into the current state of your site\\u2019s security.","children":[{"title":"Options","permalink":"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/","order":0},{"title":"Alerts","permalink":"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/","order":1}],"order":9},{"title":"Firewall","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/","excerpt":"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. ","children":[{"title":"Optimizing","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/","order":0},{"title":"Statistics","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/","order":1},{"title":"Learning Mode","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/","order":2},{"title":"Options","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/","order":3},{"title":"MySQLi storage engine","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/","order":4},{"title":"Brute Force Protection","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/","order":5},{"title":"Rate Limiting","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/","order":6},{"title":"Troubleshooting","permalink":"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/","order":7}],"order":10},{"title":"Blocking","permalink":"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/","excerpt":"Aside from the firewall rules that protect against various attacks, Wordfence also has custom features for additional blocking. ","children":[{"title":"Country Blocking","permalink":"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/","order":0},{"title":"Blocking Troubleshooting","permalink":"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/","order":1}],"order":11},{"title":"Scan","permalink":"https:\\/\\/www.wordfence.com\\/help\\/scan\\/","excerpt":"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, and shells that hackers have installed. It also scans for known malicious URLs and known patterns of infections.","children":[{"title":"Options","permalink":"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/","order":0},{"title":"Results","permalink":"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/","order":1},{"title":"Scheduling","permalink":"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/","order":2},{"title":"Troubleshooting","permalink":"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/","order":3}],"order":12},{"title":"Tools","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/","excerpt":"Wordfence Tools include Live Traffic analysis, WHOIS Lookup, Import\\/Export Options, and Diagnostics.","children":[{"title":"Live Traffic","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/","order":0},{"title":"WHOIS Lookup","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/","order":1},{"title":"Import\\/Export","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/","order":2},{"title":"Diagnostics","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/","order":3},{"title":"Legacy Two-Factor Authentication","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/","order":4},{"title":"Two-Factor Authentication","permalink":"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/","order":5}],"order":13},{"title":"Audit Log","permalink":"https:\\/\\/www.wordfence.com\\/help\\/audit-log\\/","excerpt":"The Wordfence Audit Log is a premium feature that records a history of events on your site to assist in monitoring for unauthorized actions or signs of compromise. Events can include everything from user creation and editing to plugin\\/theme installation and updates. All data captured for relevant events is saved remotely to Wordfence Central to prevent any tampering that may interfere with post-incident analysis and response.","order":14},{"title":"Login Security","permalink":"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/","excerpt":"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.","order":15},{"title":"Basic Plugin Settings","permalink":"https:\\/\\/www.wordfence.com\\/help\\/basic-plugin-settings\\/","excerpt":"Here are our minimal recommended settings to set up once you have installed and activated our plugin.","order":16},{"title":"Advanced","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/","excerpt":"If you want to know more about the technical details of Wordfence, you will find the answers in this section.","children":[{"title":"Compatibility","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/compatibility\\/","order":0},{"title":"Technical Details","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/","order":1},{"title":"Changelog","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/","order":2},{"title":"Constants","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/","order":3},{"title":"Remove or Reset","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/","order":4},{"title":"System requirements","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/","order":5},{"title":"Wordfence API","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/","order":6},{"title":"Troubleshooting","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/","order":7},{"title":"Plugin \\/ Theme Conflicts","permalink":"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/","order":8}],"order":17},{"title":"API Callbacks","permalink":"https:\\/\\/www.wordfence.com\\/help\\/api-callbacks\\/","excerpt":"Learn how to identify callbacks made from Wordfence servers to your site.","order":18},{"title":"Wordfence and GDPR - General Data Protection Regulation","permalink":"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/","excerpt":"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available standard contractual clauses to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services.","children":[{"title":"Sub-Processors List","permalink":"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/","order":0}],"order":19},{"title":"Login Security Plugin","permalink":"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/","excerpt":"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can\\u2019t or don\\u2019t want to run the full Wordfence plugin.","order":20},{"title":"Wordfence Intelligence","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/","excerpt":"Detailed documentation about the Wordfence Intelligence API, for developers looking to make use of Intelligence data in their own applications.","children":[{"title":"V3: Accessing and Consuming the Vulnerability Data Feed","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/v3-accessing-and-consuming-the-vulnerability-data-feed\\/","order":0},{"title":"V2: Accessing and Consuming the Vulnerability Data Feed","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/v2-accessing-and-consuming-the-vulnerability-data-feed\\/","order":1},{"title":"V1: Accessing and Consuming the Vulnerability Data Feed","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/accessing-and-consuming-the-vulnerability-data-feed\\/","order":2},{"title":"Wordfence Intelligence Webhook Notifications","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence\\/wordfence-intelligence-webhook-notifications\\/","order":3}],"order":21},{"title":"Wordfence Vulnerability Management Portal","permalink":"https:\\/\\/www.wordfence.com\\/help\\/wordfence-vulnerability-management-portal\\/","excerpt":"Webhook Notifications","order":22}]}', 'no'),
('supportHash', 'f3bfd875f4a20e3b63906b4657871ee852ddd0bed5e3bc975cdcac694ce7bead', 'yes'),
('suspiciousAdminUsernames', 'a:2:{i:0;s:46:"/^wp\\.service\\.controller(?:\\.[a-zA-Z0-9]+)$/i";i:1;s:55:"/^(?:wordpressssadmin|wordprestadmin|jaime.besser56)$/i";}', 'yes'),
('timeoffset_wf', '1', 'yes'),
('timeoffset_wf_updated', '1769985553', 'yes'),
('tldlist', '|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|ceo|cfa|cfd|cpa|crs|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|scb|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|aero|adult|akdn|ally|army|arpa|actor|aetna|amex|arab|arte|asda|asia|audi|auto|baby|band|bank|bbva|azure|beer|best|bike|bing|blog|blue|bofa|bond|book|buzz|cafe|call|camp|cars|casa|case|canon|care|cards|cash|cbre|cern|chat|citi|city|cool|coop|cyou|data|date|dclk|deal|autos|club|dell|desi|diet|dish|docs|dvag|lego|lgbt|lidl|life|like|limo|link|live|loan|love|ltda|luxe|maif|meet|meme|menu|mini|mint|mobi|moda|moto|name|navy|news|next|nico|nike|ollo|open|page|pars|pccw|pics|ping|pink|play|plus|pohl|porn|post|prod|prof|qpon|read|reit|rent|rest|rich|baidu|save|beats|bible|bingo|black|room|rsvp|ruhr|safe|sale|sarl|saxo|boats|build|scot|seat|sexy|shia|shop|show|silk|sina|site|bosch|seek|skin|amfam|archi|chase|sncf|town|amica|sohu|song|apple|sony|spot|surf|cymru|teva|drive|dubai|tips|delta|edeka|talk|taxi|team|tiaa|deals|tech|dance|earth|toys|tube|click|wine|cheap|cisco|weir|wiki|audio|wien|citic|vana|wang|xbox|zone|cloud|viva|coach|zara|codes|visa|vivo|vote|voto|crown|work|yoga|zero|email|land|fedex|gallo|broadway|epson|erni|fage|fail|faith|fans|farm|fast|broker|fido|camera|capital|careers|fund|career|caravan|capitalone|casino|capetown|center|church|circle|claims|brother|chrome|calvinklein|chanel|channel|catering|catholic|charity|chintai|christmas|clinic|brussels|builders|cipriani|citadel|business|cleaning|clinique|film|final|clothing|coupon|courses|fire|fish|college|cologne|commbank|flir|food|ford|forex|forum|coffee|clubmed|coupons|community|comsec|condos|company|compare|contact|cooking|corsica|country|computer|consulting|construction|free|contractors|paris|alstom|amazon|quest|radio|alipay|anquan|alibaba|android|allfinanz|allstate|amsterdam|analytics|press|promo|alsace|prime|apartments|parts|party|phone|place|poker|praxi|rehab|americanexpress|pizza|americanfamily|photo|bridgestone|reise|airtel|salon|abbott|sener|seven|shell|abbvie|sharp|abogado|abudhabi|accountant|ricoh|rocks|rodeo|rugby|academy|accenture|shoes|accountants|skype|sling|smart|smile|africa|airforce|solar|agakhan|agency|airbus|bradesco|space|author|bayern|bauhaus|beauty|auction|barclays|bargains|berlin|audible|barefoot|bestbuy|bharti|banamex|tirol|auspost|attorney|tmall|booking|today|tokyo|tools|toray|total|tours|trade|trust|tunes|tushu|ubank|weber|aramco|bostik|boston|athleta|yahoo|baseball|basketball|boehringer|sport|aquarelle|boutique|stada|store|study|style|tatar|associates|sucks|swiss|tires|vodka|volvo|world|xerox|barcelona|bloomberg|bnpparibas|blackfriday|blockbuster|vegas|video|barclaycard|wales|watch|weibo|works|credit|creditcard|cuisinella|doctor|gbiz|expert|cruises|gent|gives|cruise|family|cricket|creditunion|events|flickr|game|george|ggee|gift|gmbh|gold|glass|globo|gmail|gallup|garden|golf|dating|datsun|guge|guru|hair|haus|hdfc|direct|discount|help|games|here|durban|energy|futbol|directory|dupont|emerck|gifts|group|dealer|degree|dental|estate|delivery|music|deloitte|democrat|dentist|nexus|design|goog|green|gripe|diamonds|guide|digital|gucci|giving|holiday|honda|hsbc|house|icbc|ieee|gratis|gallery|holdings|host|imdb|immo|info|horse|itau|java|hyatt|jeep|jobs|graphics|homes|jprs|google|grainger|kddi|kids|goodyear|kiwi|kpmg|kred|hyundai|ikano|grocery|koeln|kyoto|lamer|lease|legal|lexus|lilly|lotte|lotto|health|loans|locus|money|global|helsinki|movie|hermes|jetzt|guitars|hangout|hockey|hotels|hamburg|hitachi|hosting|hotmail|miami|discover|hdfcbank|hisamitsu|homedepot|homesense|irish|mango|media|healthcare|hiphop|homegoods|hughes|hospital|imamat|domains|fashion|fishing|jaguar|ferrari|ferrero|intuit|finance|insure|fitness|flights|florist|flowers|omega|forsale|firestone|genting|jewelry|feedback|fidelity|immobilien|industries|infiniti|financial|firmdale|football|institute|insurance|istanbul|international|ismaili|ipiranga|investments|joburg|jpmorgan|juegos|farmers|frogans|latino|lawyer|lefrak|osaka|fujitsu|download|furniture|kosher|frontier|godaddy|kaufen|juniper|foundation|kerryproperties|kindle|locker|kerryhotels|kitchen|living|komatsu|fresenius|lacaixa|leclerc|limited|kuokgroup|lanxess|lifestyle|lighting|lamborghini|lasalle|latrobe|lincoln|lifeinsurance|london|madrid|maison|mattel|museum|nagoya|netflix|network|nikon|exchange|lundbeck|ninja|luxury|netbank|eurovision|market|mormon|moscow|lplfinancial|makeup|mobile|monash|nowtv|nissan|neustar|management|nokia|norton|landrover|marketing|nissay|extraspace|nowruz|oracle|physio|quebec|exposed|express|office|olayan|online|orange|otsuka|pfizer|photos|pictet|okinawa|philips|pictures|pioneer|realty|goldpoint|photography|racing|politie|reisen|select|engineer|rogers|school|schule|secure|origins|review|sanofi|search|unicom|realtor|voting|markets|organic|yachts|education|monster|partners|xihuan|recipes|zappos|panasonic|yandex|rentals|report|voyage|webcam|ericsson|shouji|walter|pharmacy|reviews|rexroth|vision|equipment|repair|ryukyu|saarland|virgin|enterprises|safety|sakura|viking|villas|engineering|viajes|samsclub|samsung|marriott|mortgage|motorcycles|schmidt|property|sandvik|schwarz|science|reliance|security|shiksha|observer|fairwinds|properties|protection|progressive|republican|productions|services|marshalls|shangrila|prudential|solutions|realestate|sandvikcoromant|staples|scholarships|shopping|redumbrella|schaeffler|olayangroup|star|soccer|social|stream|studio|supply|suzuki|target|tjmaxx|nextdirect|taobao|storage|taipei|melbourne|sydney|singles|swatch|support|toyota|memorial|merckmsd|statebank|statefarm|stcgroup|stockholm|travel|supplies|tkmaxx|restaurant|surgery|tattoo|tennis|temasek|tickets|trading|walmart|mckinsey|wedding|plumbing|theater|theatre|softbank|training|xn--90ae|xn--node|xn--p1ai|xn--qxam|microsoft|tienda|toshiba|software|systems|travelers|vanguard|ventures|verisign|vacations|wanggou|watches|weather|richardli|website|whoswho|windows|winners|woodside|xn--80aswg|xn--90a3ac|xn--90ais|xn--c1avg|xn--e1a4c|xn--9dbq2a|xn--9et52u|xn--c2br7g|xn--cg4bki|xn--fhbei|xn--5tzm5g|xn--nqv7f|tatamotors|technology|xn--j1aef|xn--j1amh|university|xn--l1acc|xn--ngbrx|zuerich|travelersinsurance|xn--30rr7y|xn--p1acf|mitsubishi|youtube|yokohama|xn--3pxu8k|xn--45q11c|xn--4gbrim|yamaxun|vlaanderen|xn--qxa6a|xn--55qx5d|xn--tckwe|xn--vhquv|yodobashi|xn--czrs0t|xn--d1alf|xn--pssy2u|xn--t60b56a|xn--80adxhks|xn--80ao21a|xn--80asehdb|xn--q7ce6a|xn--unup4y|xn--q9jyb4c|xn--8y0a063a|xn--9krt00a|xn--o3cw4h|xn--nyqy26a|xn--otu796d|xn--pgbs0dh|xn--s9brj9c|xn--ogbpf8fl|xn--ses554g|xn--vuq861b|xn--qcka1pmc|xn--rhqv96g|xn--rovu88b|xn--80aqecdr1a|xn--rvc1e0am3e|xn--tiq49xqyj|xn--wgbh1c|xn--b4w605ferd|xn--nqv7fs00ema|xn--w4rs40l|xn--wgbl6a|playstation|xn--3hcrj9c|xn--42c2d9a|versicherung|weatherchannel|williamhill|wolterskluwer|xn--11b4c3d|xn--1ck2e1b|xn--1qqw23a|xn--2scrj9c|xn--3bst00m|xn--3ds443g|xn--45brj9c|xn--55qw42g|xn--6frz82g|xn--cck2b3b|xn--3e0b707e|xn--xhq521b|xn--45br5cyl|xn--4dbrk0ce|xn--54b7fta0cc|xn--5su34j936bgsg|xn--6qq986b3xl|xn--y9a3aq|xn--zfr164b|xn--eckvdtc9d|xn--yfro4i67o|xn--ygbi2ammx|xn--xkc2al3hye2a|xn--bck1b9a5dre4c|xn--czru2d|xn--d1acj3b|xn--efvy88h|xn--fct429k|xn--fiq64b|xn--fiqs8s|xn--fiqz9s|xn--fjq720a|xn--io0a7i|xn--czr694b|xn--flw351e|xn--g2xx48c|xn--fzc2c9e2c|xn--clchc0ea0b2g2a9gcd|xn--hxt814e|xn--imr513n|xn--j6w193g|xn--jvr189m|xn--gckr3f0f|xn--gecrj9c|xn--gk3at1e|xn--h2brj9c|xn--fpcrj9c3d|xn--h2brj9c8c|xn--h2breg3eve|xn--i1b6b1a6a2e|xn--kprw13d|xn--fiq228c5hs|xn--fzys8d69uvgm|xn--jlq480n2rg|xn--kcrx77d1x4a|xn--kpry57d|xn--kput3i|xn--mgbbh1a|xn--ngbc5azd|xn--cckwcxetd|xn--mxtq1m|xn--mgbtx2b|xn--mix891f|xn--mgb9awbf|xn--mgbpl2fh|xn--mk1bu44c|xn--mgba3a3ejt|xn--mgbt3dhd|xn--mgbaam7a8h|xn--mgbab2bd|xn--mgbgu82a|xn--mgbayh7gpa|xn--ngbe9e0a|xn--mgbai9azgqp6j|xn--mgbbh1a71e|xn--lgbbat1ad8j|xn--mgbca7dzdo|xn--mgba3a4f16a|xn--mgba7c0bbn0a|xn--mgbi4ecexp|xn--mgbah1a3hjkrd|xn--mgbc0a9azcg|xn--mgbcpq6gpa1a|xn--mgberp4a5d4ar|xn--mgbx4cd0ab|xn--vermgensberater-ctb|xn--xkc2dl3a5ee0h|xn--vermgensberatung-pwb|xn--w4r85el8fhu5dnra|', 'no'),
('tldlistHash', '63cd2b0b1309b9d1045cfa075937483e0069f97dcd6cdc18ae273f72ffe58306', 'yes'),
('total503s', '877', 'yes'),
('totalAlertsSent', '18', 'yes'),
('totalIPsBlocked', '858', 'yes'),
('totalIPsLocked', '2', 'yes'),
('totalLoginHits', '1452', 'yes'),
('totalLogins', '14', 'yes'),
('totalScansRun', '584', 'yes'),
('touppBypassNextCheck', '0', 'yes'),
('touppPromptNeeded', '1', 'yes'),
('vulnerabilities_core', 'a:1:{s:7:"current";a:4:{s:10:"vulnerable";b:0;s:4:"link";b:0;s:5:"score";N;s:6:"vector";N;}}', 'no'),
('vulnerabilities_plugin', 'a:9:{i:0;a:7:{s:4:"slug";s:13:"code-snippets";s:11:"fromVersion";s:5:"3.6.8";s:10:"vulnerable";b:1;s:9:"toVersion";s:5:"3.9.3";s:4:"link";s:108:"https://www.wordfence.com/threat-intel/vulnerabilities/id/c7c7247c-2fc3-46ff-858e-2242b7211476?source=plugin";s:5:"score";s:4:"8.00";s:6:"vector";s:44:"CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:C/C:H/I:H/A:H";}i:1;a:7:{s:4:"slug";s:9:"elementor";s:11:"fromVersion";s:6:"3.28.1";s:10:"vulnerable";b:1;s:9:"toVersion";s:6:"3.33.4";s:4:"link";s:108:"https://www.wordfence.com/threat-intel/vulnerabilities/id/473bef81-b2c9-429c-aa23-c2dba0908cc3?source=plugin";s:5:"score";s:4:"6.40";s:6:"vector";s:44:"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N";}i:2;a:7:{s:4:"slug";s:11:"wp-optimize";s:11:"fromVersion";s:5:"4.1.1";s:10:"vulnerable";b:1;s:9:"toVersion";s:5:"4.3.1";s:4:"link";s:108:"https://www.wordfence.com/threat-intel/vulnerabilities/id/d524b859-b61c-4c52-b4b3-76f2983c085a?source=plugin";s:5:"score";s:4:"4.90";s:6:"vector";s:44:"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N";}i:3;a:7:{s:4:"slug";s:13:"elementor-pro";s:11:"fromVersion";s:6:"3.15.1";s:10:"vulnerable";b:1;s:9:"toVersion";s:6:"3.33.2";s:4:"link";s:108:"https://www.wordfence.com/threat-intel/vulnerabilities/id/0d5d47bd-4f05-4dc7-84c1-f7bc1196ee16?source=plugin";s:5:"score";s:4:"6.40";s:6:"vector";s:44:"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N";}i:4;a:4:{s:4:"slug";s:23:"all-in-one-wp-migration";s:11:"fromVersion";s:5:"7.101";s:10:"vulnerable";b:0;s:4:"link";b:0;}i:5;a:4:{s:4:"slug";s:16:"elementskit-lite";s:11:"fromVersion";s:5:"3.7.7";s:10:"vulnerable";b:0;s:4:"link";b:0;}i:6;a:4:{s:4:"slug";s:30:"ooohboi-steroids-for-elementor";s:11:"fromVersion";s:6:"2.1.24";s:10:"vulnerable";b:0;s:4:"link";b:0;}i:7;a:4:{s:4:"slug";s:9:"wordfence";s:11:"fromVersion";s:5:"8.1.3";s:10:"vulnerable";b:0;s:4:"link";b:0;}i:8;a:4:{s:4:"slug";s:43:"all-in-one-wp-migration-unlimited-extension";s:11:"fromVersion";s:4:"2.63";s:10:"vulnerable";b:0;s:4:"link";b:0;}}', 'no'),
('vulnerabilities_theme', 'a:1:{i:0;a:5:{s:4:"slug";s:17:"twentytwentythree";s:9:"toVersion";s:3:"1.6";s:11:"fromVersion";s:3:"1.2";s:10:"vulnerable";b:0;s:4:"link";b:0;}}', 'no'),
('wafAlertInterval', '600', 'yes'),
('wafAlertOnAttacks', '1', 'yes'),
('wafAlertThreshold', '100', 'yes'),
('wafAlertWhitelist', '', 'yes'),
('waf_status', 'enabled', 'yes'),
('wfKillRequested', '0', 'no'),
('wfPeakMemory', '88080384', 'no'),
('wfsbskip', 'IAcUdxc2qU2okYF369Ikro34qtN+yQwBg4Dkg617rPnpJ8S+iNAPMTZMDA6P0ZDOSzvQvHesMZL/Ymm8ISGM9cEpFaOucVFWJdONkQrHmar3h6dbYYodo9Rsl13fhz9AKzrrACRgOBxvJY6DldMCb1cfDZp2SI3Ng3Y5sTrtMWVgRZFG4ZnPGFGOGh7VMNqa5vfChxE3BetNHvbYSlYKEd9c/zGtKfT9sqH5L0177EyrqbuXJY4capB+D8pyHF8c9Q==', 'no'),
('wfsbskipHash', '0335ddb4c00fc4745cdd345f498133f5da15305de1bfefc98012ae35db9e2989', 'yes'),
('wfScanStartVersion', '6.9', 'yes'),
('wfsd_engine', '', 'no'),
('wfStatusStartMsgs', 'a:2:{i:0;s:0:"";i:1;s:0:"";}', 'yes'),
('wf_scanLastStatusTime', '0', 'yes'),
('wf_scanRunning', '', 'yes'),
('wf_summaryItems', 'a:8:{s:12:"scannedPosts";i:0;s:15:"scannedComments";i:0;s:12:"scannedFiles";i:0;s:14:"scannedPlugins";i:0;s:13:"scannedThemes";i:0;s:12:"scannedUsers";i:0;s:11:"scannedURLs";i:0;s:10:"lastUpdate";i:1765423546;}', 'yes'),
('whitelisted', '', 'yes'),
('whitelistedServices', '{}', 'yes'),
('whitelistHash', 'c2f7f6cd996834bbcd0b5f1b01ebb775fb2ee960933e1b64ded3c037450250cf', 'yes'),
('whitelistPresets', '{"wordfence":{"n":"Wordfence","h":true,"d":true,"f":true,"r":["54.68.32.247","44.235.211.232","54.71.203.174"]},"sucuri":{"n":"Sucuri","d":true,"r":["192.88.134.0\\/23","185.93.228.0\\/22","66.248.200.0\\/22","2a02:fe80::\\/29","208.109.0.0\\/22"]},"facebook":{"n":"Facebook","d":true,"r":["31.13.24.0\\/21","31.13.64.0\\/18","45.64.40.0\\/22","57.141.0.0\\/24","57.141.1.0\\/24","57.141.2.0\\/24","57.141.3.0\\/24","57.141.4.0\\/24","57.141.5.0\\/24","57.141.6.0\\/24","57.141.7.0\\/24","57.141.8.0\\/24","57.141.9.0\\/24","57.141.10.0\\/24","57.141.11.0\\/24","57.141.12.0\\/24","57.141.13.0\\/24","57.144.0.0\\/14","66.220.144.0\\/20","69.63.176.0\\/20","69.171.224.0\\/19","74.119.76.0\\/22","102.132.96.0\\/20","103.4.96.0\\/22","129.134.0.0\\/16","147.75.208.0\\/20","157.240.0.0\\/16","163.70.128.0\\/17","163.77.128.0\\/17","173.252.64.0\\/18","179.60.192.0\\/22","185.60.216.0\\/22","185.89.216.0\\/22","204.15.20.0\\/22","2401:db00::\\/32","2620:0:1c00::\\/40","2a03:2880::\\/32","2a03:2881::\\/32","2a03:2887:ff2c::\\/48","2a03:2887:ff2d::\\/48","2a03:83e0::\\/32","2a10:f781:10:cee0::\\/64"]},"uptimerobot":{"n":"Uptime Robot","d":true,"r":["216.144.250.150","69.162.124.226","69.162.124.227","69.162.124.228","69.162.124.229","69.162.124.230","69.162.124.231","69.162.124.232","69.162.124.233","69.162.124.234","69.162.124.235","69.162.124.236","69.162.124.237","69.162.124.238","63.143.42.242","63.143.42.243","63.143.42.244","63.143.42.245","63.143.42.246","63.143.42.247","63.143.42.248","63.143.42.249","63.143.42.250","63.143.42.251","63.143.42.252","63.143.42.253","216.245.221.82","216.245.221.83","216.245.221.84","216.245.221.85","216.245.221.86","216.245.221.87","216.245.221.88","216.245.221.89","216.245.221.90","216.245.221.91","216.245.221.92","216.245.221.93","208.115.199.18","208.115.199.19","208.115.199.20","208.115.199.21","208.115.199.22","208.115.199.23","208.115.199.24","208.115.199.25","208.115.199.26","208.115.199.27","208.115.199.28","208.115.199.29","208.115.199.30","216.144.248.18","216.144.248.19","216.144.248.20","216.144.248.21","216.144.248.22","216.144.248.23","216.144.248.24","216.144.248.25","216.144.248.26","216.144.248.27","216.144.248.28","216.144.248.29","216.144.248.30","46.137.190.132","122.248.234.23","167.99.209.234","178.62.52.237","54.79.28.129","54.94.142.218","104.131.107.63","54.67.10.127","54.64.67.106","159.203.30.41","46.101.250.135","18.221.56.27","52.60.129.180","159.89.8.111","146.185.143.14","139.59.173.249","165.227.83.148","128.199.195.156","138.197.150.151","34.233.66.117","52.70.84.165","54.225.82.45","54.224.73.211","3.79.92.117","3.21.136.87","35.170.215.196","35.153.243.148","18.116.158.121","18.223.50.16","54.241.175.147","3.212.128.62","52.22.236.30","54.167.223.174","3.12.251.153","52.15.147.27","18.116.205.62","3.20.63.178","13.56.33.4","52.8.208.143","34.198.201.66","35.84.118.171","44.227.38.253","35.166.228.98","99.80.173.191","99.80.1.74","3.111.88.158","13.127.188.124","18.180.208.214","54.249.170.27","3.105.190.221","3.105.133.239","78.47.98.55","157.90.155.240","49.13.24.81","168.119.96.239","157.90.156.63","88.99.80.227","49.13.134.145","49.13.130.29","168.119.53.160","142.132.180.39","49.13.164.148","128.140.106.114","78.47.173.76","159.69.158.189","128.140.41.193","167.235.143.113","49.13.167.123","78.46.215.1","78.46.190.63","168.119.123.75","135.181.154.9","37.27.87.149","37.27.34.49","37.27.82.220","65.109.129.165","37.27.28.153","37.27.29.68","37.27.30.213","65.109.142.78","65.109.8.202","5.161.75.7","5.161.61.238","5.78.87.38","5.78.118.142","2607:ff68:107::3","2607:ff68:107::4","2607:ff68:107::5","2607:ff68:107::6","2607:ff68:107::7","2607:ff68:107::8","2607:ff68:107::9","2607:ff68:107::10","2607:ff68:107::11","2607:ff68:107::12","2607:ff68:107::13","2607:ff68:107::14","2607:ff68:107::15","2607:ff68:107::16","2607:ff68:107::17","2607:ff68:107::18","2607:ff68:107::19","2607:ff68:107::20","2607:ff68:107::21","2607:ff68:107::22","2607:ff68:107::23","2607:ff68:107::24","2607:ff68:107::25","2607:ff68:107::26","2607:ff68:107::27","2607:ff68:107::28","2607:ff68:107::29","2607:ff68:107::30","2607:ff68:107::31","2607:ff68:107::32","2607:ff68:107::33","2607:ff68:107::34","2607:ff68:107::35","2607:ff68:107::36","2607:ff68:107::37","2607:ff68:107::38","2607:ff68:107::39","2607:ff68:107::40","2607:ff68:107::41","2607:ff68:107::42","2607:ff68:107::43","2607:ff68:107::44","2607:ff68:107::45","2607:ff68:107::46","2607:ff68:107::47","2607:ff68:107::48","2607:ff68:107::49","2607:ff68:107::50","2607:ff68:107::51","2607:ff68:107::52","2607:ff68:107::53","2607:ff68:107::54","2607:ff68:107::55","2607:ff68:107::56","2607:ff68:107::57","2607:ff68:107::58","2607:ff68:107::59","2607:ff68:107::60","2607:ff68:107::61","2607:ff68:107::62","2a03:b0c0:2:d0::fa3:e001","2a03:b0c0:1:d0::e54:a001","2604:a880:800:10::4e6:f001","2604:a880:cad:d0::122:7001","2a03:b0c0:3:d0::33e:4001","2600:1f16:775:3a01:70d6:601a:1eb5:dbb9","2600:1f11:56a:9000:23:651b:dac0:9be4","2a03:b0c0:3:d0::44:f001","2a03:b0c0:0:1010::2b:b001","2a03:b0c0:1:d0::22:5001","2604:a880:400:d0::4f:3001","2400:6180:0:d0::16:d001","2604:a880:cad:d0::18:f001","2600:1f18:179:f900:88b2:b3d:e487:e2f4","2600:1f18:179:f900:1977:916:ee3d:711e","2a05:d014:1815:3400:588a:ee17:65c3:3b09","2600:1f16:775:3a00:b729:c226:2737:fe49","2600:1f1c:edf:1401:2124:652e:c5df:f89b","2600:1f16:775:3a00:acb7:ec84:11f2:2bf4","2600:1f16:775:3a00:66b2:530c:e48:573e","2600:1f18:179:f900:803:c81e:6059:b78f","2600:1f18:179:f900:473d:7e21:19be:3b9d","2600:1f1c:edf:1401:bd68:1478:fe7d:c02f","2600:1f1c:edf:1401:619b:f188:3403:94c8","2600:1f16:775:3a00:8c2c:2ba6:778f:5be5","2600:1f16:775:3a00:ac3:c5eb:7081:942e","2600:1f16:775:3a00:dbbe:36b0:3c45:da32","2600:1f16:775:3a00:37bf:6026:e54a:f03a","2600:1f18:179:f900:4696:7729:7bb3:f52f","2600:1f18:179:f900:4b7d:d1cc:2d10:211","2600:1f18:179:f900:5c68:91b6:5d75:5d7","2600:1f18:179:f900:71:af9a:ade7:d772","2600:1f14:203:e40d:c86b:1e24:fab4:7d03","2600:1f14:203:e48b:5538:77b2:6e13:4f8d","2600:1f14:203:e46c:6c8c:bcb:5245:7a0c","2a01:4f8:c013:34c0::\\/64","2a01:4f8:c013:3c52::\\/64","2a01:4f8:c013:3c53::\\/64","2a01:4f8:c013:c18::\\/64","2a01:4f8:c012:c60e::\\/64","2a01:4f8:c013:3c55::\\/64","2a01:4f8:c17:42e4::\\/64","2a01:4f8:c013:3c54::\\/64","2a01:4f8:c013:3c56::\\/64","2a01:4f8:c013:3b0f::\\/64","2a01:4f8:1c1b:7ecc::\\/64","2a01:4f8:1c1c:5353::\\/64","2a01:4f8:1c1b:4ef4::\\/64","2a01:4f8:1c1b:5b5a::\\/64","2a01:4f8:1c1c:11aa::\\/64","2a01:4f8:1c1c:7240::\\/64","2a01:4f8:c0c:83fa::\\/64","2a01:4f8:c2c:beae::\\/64","2a01:4f8:c2c:9fc6::\\/64","2a01:4f8:1c1c:a98a::\\/64","2a01:4f9:c010:b473::\\/64","2a01:4f9:c012:d5a6::\\/64","2a01:4f9:c012:a954::\\/64","2a01:4f9:c010:dc03::\\/64","2a01:4f9:c012:592a::\\/64","2a01:4f9:c010:e70b::\\/64","2a01:4f9:c012:97c5::\\/64","2a01:4f9:c012:b246::\\/64","2a01:4f9:c012:a544::\\/64","2a01:4ff:f0:e9cf::\\/64","2a01:4ff:f0:b2f2::\\/64","2a01:4ff:1f0:9092::\\/64","2a01:4ff:1f0:e821::\\/64"]},"statuscake":{"n":"StatusCake","d":true,"r":["128.199.105.174","167.172.171.102","149.248.50.29","146.190.20.113","45.32.69.14","45.32.195.225","149.28.79.140","108.61.162.214","34.92.43.64","45.76.123.211","34.65.116.80","138.68.187.225","13.48.238.157","45.63.104.11","45.32.151.21","198.199.112.67","138.197.201.67","198.211.123.207","146.190.20.1","198.211.121.217","45.32.202.57","146.190.24.231","108.61.119.153","198.211.123.54","45.32.141.163","108.61.252.147","155.138.247.97","108.61.224.36","178.62.62.252","209.222.30.242","159.65.19.28","108.61.212.141","165.22.122.238","138.68.139.98","198.211.122.64","146.190.20.13","198.211.118.32","139.59.179.152","206.189.178.14","174.138.57.253","188.166.150.48","192.241.243.72","46.101.11.146","162.243.37.40","159.223.175.210","178.62.85.105","178.62.83.142","178.62.40.182","165.227.74.224","157.245.32.33","159.89.82.33","207.148.13.55","159.65.93.138","167.71.143.76","16.170.114.19","13.246.54.122","167.172.175.168","167.172.161.111","167.71.61.88","188.166.145.79","34.165.80.145","143.110.216.228","18.102.1.62","216.238.73.102","13.245.222.203","159.223.74.121","167.172.163.51","167.172.171.89","167.172.163.238","68.183.39.102","165.22.125.189","138.68.83.231","35.195.188.224","15.160.68.179","34.116.156.130","143.110.177.252","45.63.121.159","45.32.145.79","199.247.12.100","143.198.153.99","107.191.47.131","143.244.178.189","138.68.252.209","198.199.100.13","143.110.216.159","143.110.216.64","143.110.216.47","167.172.171.10","167.172.163.229","209.97.178.115","167.172.163.128","165.22.210.218","45.63.88.213","45.63.86.120","45.32.128.80","104.156.229.24","45.32.212.56","104.156.255.184","108.61.215.179","45.32.166.195","45.32.160.172","45.32.171.24","107.191.57.237","45.63.26.78","45.76.192.50","45.32.36.158","143.110.177.254","143.110.177.18","104.238.164.105","45.63.76.68","45.63.78.84","45.32.195.186","45.76.3.112","45.32.7.22","45.76.1.44","165.227.104.61","162.243.37.58","167.99.224.153","45.63.51.63","45.63.61.213","108.61.205.201","45.32.192.198","45.32.195.93","45.63.97.4","104.238.185.175","104.238.185.46","104.238.186.209","45.76.128.250","104.238.171.176","167.172.173.165","104.238.187.61","104.238.174.234","108.61.196.37","108.61.197.147","45.76.134.164","45.76.135.253","108.61.173.0","45.63.96.68","45.76.134.85","45.32.183.128","45.76.130.43","45.76.129.212","45.76.134.198","45.76.134.237","45.76.135.14","45.32.193.13","45.76.44.221","140.82.52.199","199.247.9.63","140.82.52.51","45.77.61.188","149.28.124.140","108.61.229.252","54.72.247.193","142.93.100.235","13.245.199.158","54.194.6.253","45.76.122.71","45.77.235.246","167.172.171.150","216.238.76.215","207.148.106.182","45.77.23.81","141.164.58.9","141.164.48.161","141.164.35.233","13.49.141.132","13.48.110.214","34.65.146.108","34.65.97.251","34.95.163.121","34.95.214.187","35.199.96.243","34.78.123.120","34.92.171.119","34.118.59.148","34.118.53.12","34.65.97.99","34.116.229.102","34.165.13.190","209.97.171.44","34.165.219.192","34.165.120.108","35.187.119.100","34.34.185.236","35.247.248.27","13.247.17.60","54.170.7.14","52.48.52.95","34.96.139.85","34.150.35.14","216.238.84.207","216.238.77.111","15.161.88.159","18.102.253.202","140.82.4.219","34.22.96.192","35.198.232.244","34.175.49.24","34.175.19.199","34.175.21.165","34.175.86.21","34.13.166.3","34.13.185.113","34.34.97.213","34.13.188.75","34.141.16.202","34.159.178.196","34.40.39.31","34.107.112.44","35.197.251.116","35.197.195.213","35.197.232.17","34.147.219.142","34.155.143.57","34.163.147.250","34.155.232.229","34.155.58.180","35.235.115.146","34.94.175.122","34.94.216.215","34.102.121.250","34.174.9.202","34.174.49.169","34.174.16.112","34.174.16.200","165.22.77.197","198.199.95.216","108.61.99.232","45.32.251.210","198.199.111.122","2a03:b0c0:1:d0::a4:6001","178.62.47.83","2a03:b0c0:1:a1::3a5:3001","46.101.86.253","188.166.170.233","2400:6180:0:d0::257:1","128.199.230.46","128.199.252.83","2a03:b0c0:3:d0::b6d:4001","46.101.172.39","2a03:b0c0:3:d0::b6d:5001","46.101.227.232","198.199.91.244","2604:a880:400:d0::2c:1","192.34.63.77","2604:a880:400:d0::699:7001","198.211.104.10","2604:a880:400:d0::699:9001","198.199.91.32","2400:6180:100:d0::94:9001","139.59.6.165","2604:a880:cad:d0::2d4:c001","159.203.60.219","2a03:b0c0:3:d0::5764:f001","46.101.217.181","2a03:b0c0:0:1010::3ae:1","198.199.126.66","2a03:b0c0:0:1010::1404:3001","188.226.161.230","192.241.151.177","67.207.82.93","139.59.170.38","2604:a880:cad:d0::b45:d001","165.227.47.219","178.128.45.91","45.76.119.156","95.179.210.32","178.128.46.6","2a03:b0c0:1:d0::1432:7001","178.62.59.196","2a03:b0c0:1:e0::2ab:7001","209.97.143.186","46.101.37.24","174.138.46.101","2a03:b0c0:1:e0::264:d001","209.97.132.39","178.128.37.179","192.241.242.113","2a03:b0c0:3:d0::e2:a001","207.154.246.185","162.243.29.225","13.49.85.27","2604:a880:2:d0::2147:7001","142.93.31.128","162.243.30.74","107.170.248.179","142.93.47.138","162.243.32.153","107.170.203.65","2a03:b0c0:1:e0::6b0:6001","165.232.44.244","162.243.33.205","46.101.75.135","165.232.98.183","162.243.20.174","45.63.27.30","167.99.242.41","162.243.19.113","139.180.164.162","198.199.115.185","162.243.141.135","107.170.235.240","104.236.163.90","209.97.132.240","188.166.158.224"]},"managewp":{"n":"ManageWP","d":false,"r":["54.191.137.17","34.211.180.66","54.70.65.107","34.210.224.7","52.41.5.108","52.35.72.129","35.162.254.253","52.11.12.231","52.11.29.70","52.11.54.161","52.24.142.159","52.25.191.255","52.34.126.117","52.34.254.47","52.35.82.99","52.36.28.80","52.39.177.152","52.41.237.12","52.43.13.71","52.43.76.224","52.88.96.110","52.89.155.51","54.187.92.57","54.191.32.65","54.191.67.23","54.191.80.119","54.191.135.209","54.191.136.176","54.191.148.85","54.191.149.8","52.26.122.21","52.24.187.29","52.89.85.107","54.186.128.167","54.191.40.136","52.88.119.122","52.89.94.121","52.25.116.116","52.88.215.225","54.186.143.184","52.88.197.180","52.27.171.126","34.211.178.241","52.24.232.158","52.26.187.210","52.42.189.119","54.186.244.128","54.71.54.102","34.210.35.214","34.213.77.188","34.218.121.176","52.10.190.191","52.10.225.96","52.11.187.168","52.25.139.76","52.43.127.200","54.191.108.9","54.70.201.228","44.224.174.169","52.32.57.81","44.225.177.160","34.223.186.249","44.224.135.238","44.226.111.14","44.225.203.104","44.226.100.122","44.224.250.144","44.225.118.211","54.189.93.69","44.231.184.112","44.238.10.27","54.185.116.30","44.238.58.95","52.13.23.154","54.149.16.35","44.226.97.20","54.244.242.144","44.238.67.135","44.235.15.76","54.214.47.164","34.214.48.135","54.184.234.227","44.238.241.95","52.37.217.170","34.214.212.42","54.203.109.179"]},"seznam":{"n":"Seznam Search Engine","d":true,"r":["77.75.72.0\\/21","77.75.72.0\\/23","77.75.72.0\\/23","77.75.74.0\\/24","77.75.75.0\\/24","77.75.75.0\\/24","77.75.76.0\\/23","77.75.78.0\\/23","185.66.188.0\\/22","2a02:598::\\/32","2a02:598:2::\\/48","2a02:598:a::\\/48","2a02:598:b::\\/48","2a02:598:3333::\\/48","2a02:598:4444::\\/48"]},"google":{"n":"Google Search Engine","d":true,"r":["2001:4860:4801:10::\\/64","2001:4860:4801:12::\\/64","2001:4860:4801:13::\\/64","2001:4860:4801:14::\\/64","2001:4860:4801:15::\\/64","2001:4860:4801:16::\\/64","2001:4860:4801:17::\\/64","2001:4860:4801:18::\\/64","2001:4860:4801:19::\\/64","2001:4860:4801:1a::\\/64","2001:4860:4801:1b::\\/64","2001:4860:4801:1c::\\/64","2001:4860:4801:1d::\\/64","2001:4860:4801:1e::\\/64","2001:4860:4801:1f::\\/64","2001:4860:4801:20::\\/64","2001:4860:4801:21::\\/64","2001:4860:4801:22::\\/64","2001:4860:4801:23::\\/64","2001:4860:4801:24::\\/64","2001:4860:4801:25::\\/64","2001:4860:4801:26::\\/64","2001:4860:4801:27::\\/64","2001:4860:4801:28::\\/64","2001:4860:4801:29::\\/64","2001:4860:4801:2::\\/64","2001:4860:4801:2a::\\/64","2001:4860:4801:2b::\\/64","2001:4860:4801:2c::\\/64","2001:4860:4801:2d::\\/64","2001:4860:4801:2e::\\/64","2001:4860:4801:2f::\\/64","2001:4860:4801:30::\\/64","2001:4860:4801:31::\\/64","2001:4860:4801:32::\\/64","2001:4860:4801:33::\\/64","2001:4860:4801:34::\\/64","2001:4860:4801:35::\\/64","2001:4860:4801:36::\\/64","2001:4860:4801:37::\\/64","2001:4860:4801:38::\\/64","2001:4860:4801:39::\\/64","2001:4860:4801:3a::\\/64","2001:4860:4801:3b::\\/64","2001:4860:4801:3c::\\/64","2001:4860:4801:3d::\\/64","2001:4860:4801:3e::\\/64","2001:4860:4801:3f::\\/64","2001:4860:4801:40::\\/64","2001:4860:4801:41::\\/64","2001:4860:4801:42::\\/64","2001:4860:4801:44::\\/64","2001:4860:4801:45::\\/64","2001:4860:4801:46::\\/64","2001:4860:4801:47::\\/64","2001:4860:4801:48::\\/64","2001:4860:4801:49::\\/64","2001:4860:4801:4a::\\/64","2001:4860:4801:4b::\\/64","2001:4860:4801:4c::\\/64","2001:4860:4801:4d::\\/64","2001:4860:4801:4e::\\/64","2001:4860:4801:50::\\/64","2001:4860:4801:51::\\/64","2001:4860:4801:52::\\/64","2001:4860:4801:53::\\/64","2001:4860:4801:54::\\/64","2001:4860:4801:55::\\/64","2001:4860:4801:56::\\/64","2001:4860:4801:57::\\/64","2001:4860:4801:58::\\/64","2001:4860:4801:59::\\/64","2001:4860:4801:60::\\/64","2001:4860:4801:61::\\/64","2001:4860:4801:62::\\/64","2001:4860:4801:63::\\/64","2001:4860:4801:64::\\/64","2001:4860:4801:65::\\/64","2001:4860:4801:66::\\/64","2001:4860:4801:67::\\/64","2001:4860:4801:68::\\/64","2001:4860:4801:69::\\/64","2001:4860:4801:6a::\\/64","2001:4860:4801:6b::\\/64","2001:4860:4801:6c::\\/64","2001:4860:4801:6d::\\/64","2001:4860:4801:6e::\\/64","2001:4860:4801:6f::\\/64","2001:4860:4801:70::\\/64","2001:4860:4801:71::\\/64","2001:4860:4801:72::\\/64","2001:4860:4801:73::\\/64","2001:4860:4801:74::\\/64","2001:4860:4801:75::\\/64","2001:4860:4801:76::\\/64","2001:4860:4801:77::\\/64","2001:4860:4801:78::\\/64","2001:4860:4801:79::\\/64","2001:4860:4801:7a::\\/64","2001:4860:4801:7b::\\/64","2001:4860:4801:7c::\\/64","2001:4860:4801:7d::\\/64","2001:4860:4801:80::\\/64","2001:4860:4801:81::\\/64","2001:4860:4801:82::\\/64","2001:4860:4801:83::\\/64","2001:4860:4801:84::\\/64","2001:4860:4801:85::\\/64","2001:4860:4801:86::\\/64","2001:4860:4801:87::\\/64","2001:4860:4801:88::\\/64","2001:4860:4801:90::\\/64","2001:4860:4801:91::\\/64","2001:4860:4801:92::\\/64","2001:4860:4801:93::\\/64","2001:4860:4801:94::\\/64","2001:4860:4801:95::\\/64","2001:4860:4801:96::\\/64","2001:4860:4801:97::\\/64","2001:4860:4801:a0::\\/64","2001:4860:4801:a1::\\/64","2001:4860:4801:a2::\\/64","2001:4860:4801:a3::\\/64","2001:4860:4801:a4::\\/64","2001:4860:4801:a5::\\/64","2001:4860:4801:a6::\\/64","2001:4860:4801:a7::\\/64","2001:4860:4801:a8::\\/64","2001:4860:4801:a9::\\/64","2001:4860:4801:aa::\\/64","2001:4860:4801:ab::\\/64","2001:4860:4801:ac::\\/64","2001:4860:4801:ad::\\/64","2001:4860:4801:ae::\\/64","2001:4860:4801:b0::\\/64","2001:4860:4801:b1::\\/64","2001:4860:4801:b2::\\/64","2001:4860:4801:b3::\\/64","2001:4860:4801:b4::\\/64","2001:4860:4801:b5::\\/64","2001:4860:4801:c::\\/64","2001:4860:4801:f::\\/64","192.178.4.0\\/27","192.178.4.128\\/27","192.178.4.160\\/27","192.178.4.192\\/27","192.178.4.32\\/27","192.178.4.64\\/27","192.178.4.96\\/27","192.178.5.0\\/27","192.178.6.0\\/27","192.178.6.128\\/27","192.178.6.160\\/27","192.178.6.192\\/27","192.178.6.224\\/27","192.178.6.32\\/27","192.178.6.64\\/27","192.178.6.96\\/27","192.178.7.0\\/27","192.178.7.128\\/27","192.178.7.160\\/27","192.178.7.192\\/27","192.178.7.224\\/27","192.178.7.32\\/27","192.178.7.64\\/27","192.178.7.96\\/27","34.100.182.96\\/28","34.101.50.144\\/28","34.118.254.0\\/28","34.118.66.0\\/28","34.126.178.96\\/28","34.146.150.144\\/28","34.147.110.144\\/28","34.151.74.144\\/28","34.152.50.64\\/28","34.154.114.144\\/28","34.155.98.32\\/28","34.165.18.176\\/28","34.175.160.64\\/28","34.176.130.16\\/28","34.22.85.0\\/27","34.64.82.64\\/28","34.65.242.112\\/28","34.80.50.80\\/28","34.88.194.0\\/28","34.89.10.80\\/28","34.89.198.80\\/28","34.96.162.48\\/28","35.247.243.240\\/28","66.249.64.0\\/27","66.249.64.128\\/27","66.249.64.160\\/27","66.249.64.192\\/27","66.249.64.224\\/27","66.249.64.32\\/27","66.249.64.64\\/27","66.249.64.96\\/27","66.249.65.0\\/27","66.249.65.128\\/27","66.249.65.160\\/27","66.249.65.192\\/27","66.249.65.224\\/27","66.249.65.32\\/27","66.249.65.64\\/27","66.249.65.96\\/27","66.249.66.0\\/27","66.249.66.128\\/27","66.249.66.160\\/27","66.249.66.192\\/27","66.249.66.224\\/27","66.249.66.32\\/27","66.249.66.64\\/27","66.249.66.96\\/27","66.249.67.0\\/27","66.249.67.32\\/27","66.249.67.64\\/27","66.249.68.0\\/27","66.249.68.128\\/27","66.249.68.160\\/27","66.249.68.192\\/27","66.249.68.32\\/27","66.249.68.64\\/27","66.249.68.96\\/27","66.249.69.0\\/27","66.249.69.128\\/27","66.249.69.160\\/27","66.249.69.192\\/27","66.249.69.224\\/27","66.249.69.32\\/27","66.249.69.64\\/27","66.249.69.96\\/27","66.249.70.0\\/27","66.249.70.128\\/27","66.249.70.160\\/27","66.249.70.192\\/27","66.249.70.224\\/27","66.249.70.32\\/27","66.249.70.64\\/27","66.249.70.96\\/27","66.249.71.0\\/27","66.249.71.128\\/27","66.249.71.160\\/27","66.249.71.192\\/27","66.249.71.224\\/27","66.249.71.32\\/27","66.249.71.64\\/27","66.249.71.96\\/27","66.249.72.0\\/27","66.249.72.128\\/27","66.249.72.160\\/27","66.249.72.192\\/27","66.249.72.224\\/27","66.249.72.32\\/27","66.249.72.64\\/27","66.249.73.0\\/27","66.249.73.128\\/27","66.249.73.160\\/27","66.249.73.192\\/27","66.249.73.224\\/27","66.249.73.32\\/27","66.249.73.64\\/27","66.249.73.96\\/27","66.249.74.0\\/27","66.249.74.128\\/27","66.249.74.160\\/27","66.249.74.192\\/27","66.249.74.224\\/27","66.249.74.32\\/27","66.249.74.64\\/27","66.249.74.96\\/27","66.249.75.0\\/27","66.249.75.128\\/27","66.249.75.160\\/27","66.249.75.192\\/27","66.249.75.224\\/27","66.249.75.32\\/27","66.249.75.64\\/27","66.249.75.96\\/27","66.249.76.0\\/27","66.249.76.128\\/27","66.249.76.160\\/27","66.249.76.192\\/27","66.249.76.224\\/27","66.249.76.32\\/27","66.249.76.64\\/27","66.249.76.96\\/27","66.249.77.0\\/27","66.249.77.128\\/27","66.249.77.160\\/27","66.249.77.192\\/27","66.249.77.224\\/27","66.249.77.32\\/27","66.249.77.64\\/27","66.249.77.96\\/27","66.249.78.0\\/27","66.249.78.128\\/27","66.249.78.160\\/27","66.249.78.32\\/27","66.249.78.64\\/27","66.249.78.96\\/27","66.249.79.0\\/27","66.249.79.128\\/27","66.249.79.160\\/27","66.249.79.192\\/27","66.249.79.224\\/27","66.249.79.32\\/27","66.249.79.64\\/27"]}}', 'yes');
INSERT INTO `wpiq_wfconfig` VALUES
('wordfenceI18n', '1', 'yes'),
('wordpressPluginVersions', 'a:9:{s:23:"all-in-one-wp-migration";s:5:"7.102";s:43:"all-in-one-wp-migration-unlimited-extension";s:4:"2.63";s:13:"code-snippets";s:5:"3.6.8";s:9:"elementor";s:6:"3.28.1";s:13:"elementor-pro";s:6:"3.15.1";s:16:"elementskit-lite";s:5:"3.7.9";s:30:"ooohboi-steroids-for-elementor";s:6:"2.1.24";s:9:"wordfence";s:5:"8.1.4";s:11:"wp-optimize";s:5:"4.1.1";}', 'yes'),
('wordpressThemeVersions', 'a:1:{s:17:"twentytwentythree";s:3:"1.2";}', 'yes'),
('wordpressVersion', '6.9', 'yes'),
('wp_home_url', 'https://omsrislb.my', 'yes'),
('wp_site_url', 'https://omsrislb.my', 'yes');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfcrawlers`
--

CREATE TABLE `wpiq_wfcrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfcrawlers`
--

INSERT INTO `wpiq_wfcrawlers` VALUES
('\0\0\0\0\0\0\0\0\0\0Υ.', 'i| OoD!', 'verified', 1769725147, ''),
('\0\0\0\0\0\0\0\0\0\0Υ.', '>b0oQ1', 'badPTR', 1769725147, 'ec2-18-206-165-46.compute-1.amazonaws.com'),
('\0\0\0\0\0\0\0\0\0\0E)', 'i| OoD!', 'verified', 1769985553, ''),
('\0\0\0\0\0\0\0\0\0\0E)', '>b0oQ1', 'badPTR', 1769985552, '69.167.12.41');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wffilechanges`
--

CREATE TABLE `wpiq_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wffilemods`
--

CREATE TABLE `wpiq_wffilemods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `real_path` text NOT NULL,
  `knownFile` tinyint unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `newMD5` binary(16) NOT NULL,
  `SHAC` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `stoppedOnSignature` varchar(255) NOT NULL DEFAULT '',
  `stoppedOnPosition` int unsigned NOT NULL DEFAULT '0',
  `isSafeFile` varchar(1) NOT NULL DEFAULT '?',
  PRIMARY KEY (`filenameMD5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wffilemods`
--

INSERT INTO `wpiq_wffilemods` VALUES
('\0^n+(-', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/password.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/password.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p''Qª=9m;Fz', 'ŀee|l,}ubF\n~Cߺd>U', '', 0, '?'),
('\0?H\0E}"', 'wp-includes/sodium_compat/lib/namespaced.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/namespaced.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '01vnG\r', ']/r~ʺOCcxBj/oUI*', '', 0, '?'),
('\0tFqS揃 Y', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"k''	\n''j%', 'lbj\Z&v4ڦ}AIg`+F', '', 0, '?'),
('\0(ad<d\0', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConstantExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConstantExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nUK`E', ']5r0{UBrt0P5;_x', '', 0, '?'),
('\0)4\nTYd4G~', 'wp-includes/images/w-logo-blue-white-bg.png', '/home/binawebp/omsrislb.my/wp-includes/images/w-logo-blue-white-bg.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Ȉk|Ѽ', 'OɗoCA/x<%4=?', '', 0, '?'),
('\00#9Z4j$', 'wp-admin/network/user-edit.php', '/home/binawebp/omsrislb.my/wp-admin/network/user-edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nd4VڋS~tɱź', 'oᕑ"tySM8!9/?YX', '', 0, '?'),
('\05g꫔c0"D', 'wp-includes/css/media-views-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/media-views-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tqۻ;\Z', 'Y9neA^=FWi', '', 0, '?'),
('\0BCb+Wr', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/HttpAuthServiceProvider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/HttpAuthServiceProvider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ddz[_I.', 'b\r.K@\ZQ$3N2`ɲ^O	Ę', '', 0, '?'),
('\0C_\njD@k', 'wp-admin/network/index.php', '/home/binawebp/omsrislb.my/wp-admin/network/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P/IGV7wY', 'E7]0-iY6w~U6', '', 0, '?'),
('\0GM(YlWz!', 'wp-includes/sodium_compat/src/Core/X25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/X25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.mj5*75nݔ', '."*O7bP''u1+7a', '', 0, '?'),
('\0M_M8ؖ', 'wp-content/plugins/wordfence/js/wfdashboard.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfdashboard.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԽP`{i', '=Pzr!?w\Z/d!LӪ1!', '', 0, '?'),
('\0Z>f', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/shortcode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/shortcode.php', 0, 'k90d4\n(\\}', 'k90d4\n(\\}', 'W!J[|_v}-', '', 0, '?'),
('\0\\sTÐ֘8', 'wp-includes/blocks/post-excerpt/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9aN4=\r^', '~ŪAWw@7vz4_', '', 0, '?'),
('\0dsxH$;%l', 'wp-content/plugins/code-snippets/js/types/wp/User.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/User.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']׀cO^', '3{;2Mځ<miH+nr', '', 0, '?'),
('\0hQJ?X4-', 'wp-content/plugins/elementor/assets/js/ai.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WGIXk3H6[', '~9~agꋢ', '', 0, '?'),
('\0|ۛUܭA', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite.pot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite.pot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cx9Rmq', 't9|K$ׯ,69Sk', '', 0, '?'),
('\0}a\rg1\rnL', 'wp-includes/css/dist/base-styles/admin-schemes.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^O2NI\\G1R', '5^>47nVg[o^[]\n', '', 0, '?'),
('\0:i{%βx', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',em\rZ4`g>', '!U;K)awm#G)%', '', 0, '?'),
('\0;fQ=*Ǖ', 'wp-includes/js/wp-emoji.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z\n&M+', 'q(NLz;"mcÆvqy[|', '', 0, '?'),
('\0''6&Hv]', 'wp-includes/block-bindings/post-meta.php', '/home/binawebp/omsrislb.my/wp-includes/block-bindings/post-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=n=FU*J', 'McC#Dʏr2e', '', 0, '?'),
('\06e@VpID', 'wp-content/plugins/elementor/modules/system-info/helpers/model-helper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/helpers/model-helper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd;Gg`', 't%TKCy%ejNtOkԒF', '', 0, '?'),
('\09k5&ٙ 7N', 'wp-includes/sodium_compat/src/Core32/Curve25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '43k&t8p', 'j+JL¦{׹\ZI]ً=', '', 0, '?'),
('\0XL&\Zf', 'wp-includes/blocks/page-list-item/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list-item/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '--ªZ(ΡRC', '?5࠰)''\\DMh_', '', 0, '?'),
('\0qO(\Z~Fy', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~f<RqPx\n', '\\ vqŵtRץV5~@wd', '', 0, '?'),
('\0F~?	', 'wp-content/plugins/elementor/assets/shapes/mountains.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/mountains.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Pq%@u"O', '}Îׯ<pݭ#X', '', 0, '?'),
('\0g\rͣNNgyQ', 'wp-content/plugins/code-snippets/js/types/WordPressCodeEditor.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/WordPressCodeEditor.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yAs-', 'ogX3r30Z\\V(bg?>', '', 0, '?'),
('\0|9ue@', 'wp-admin/includes/image.php', '/home/binawebp/omsrislb.my/wp-admin/includes/image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D9I61', 'ٓ>\n]D\0su}IIPPa', '', 0, '?'),
('\0˖Cy(Q', 'wp-content/plugins/elementor/modules/link-in-bio/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eh!k硤;Am', '\rjӼk9^JPDA', '', 0, '?'),
('\0D`8Rɲ%', 'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M{㜰4Ty囋', '!*<\\{_&,<+쳸', '', 0, '?'),
('\0K%5,$ˣ', 'wp-includes/blocks/video/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	X6TcW#''L', 'D f7R.+;`1-p:}yu6', '', 0, '?'),
('\0lDdu^Y', 'wp-admin/user/privacy.php', '/home/binawebp/omsrislb.my/wp-admin/user/privacy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dIU{x1A', 'FuX\0og:~h_5pt$', '', 0, '?'),
('\0vئݞ', 'wp-includes/blocks/post-template/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '®ӈ#@K', 'h_[rT\r69D:Ǘ', '', 0, '?'),
('\0,ʨ7|0Ev-', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-profile-picture.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-profile-picture.php', 0, ';KvV~w', ';KvV~w', '?Ď2yӕ\ZJOM:Dj', '', 0, '?'),
('\0$XG-tUƹ', 'wp-includes/blocks/navigation-link/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o^P=x', '(sWێ⣘}xXu%aM8ԇ#', '', 0, '?'),
('\0 $ә\0֫', 'wp-includes/block-patterns.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hhB"AyC', 'Rpt_9ɝaM5', '', 0, '?'),
('\0/9Y=y', 'wp-content/plugins/elementor/modules/favorites/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nVz%Q(', '_77m72=811hbu', '', 0, '?'),
('\076ڙh', 'wp-content/plugins/elementor/core/common/modules/connect/apps/library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd)aFY\r!H', 'P~IqkZ!.Ԍ', '', 0, '?'),
('\rx+Uڜ', 'wp-includes/css/dist/list-reusable-blocks/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@~9J79+ۈe', '0/9oD`ucԲ[U.', '', 0, '?'),
('&Փ[4y*', 'wp-content/plugins/elementor-pro/modules/posts/widgets/posts-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/widgets/posts-base.php', 0, '/;YKþl', '/;YKþl', '$zӰPdBETD;aG1.~\rm', '', 0, '?'),
('\rqwAț', 'wp-content/plugins/elementor/includes/elements/repeater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/repeater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/Ġ-!MU', 'N/\rñKf''	R?4ss', '', 0, '?'),
('{_?2', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image_select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image_select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'γAuCx[#"2w', 'g%v;~P`ӌ!W`-', '', 0, '?'),
(' @׊', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z>灂ҠOp5R', '''`''3	ݍHZu$}ˇD`\ZI', '', 0, '?'),
('sT[Ի#g@', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icomoon.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icomoon.php', 0, '@~su#e,]', '@~su#e,]', 'x /'',M#\\(ĉP"aH{', '', 0, '?'),
('g3''z4', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/font-awesome.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/font-awesome.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|8$g''1\rh', '4jE}>+''ggl/d툿d6CE\06', '', 0, '?'),
('\Zף(&D%0h', 'wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W!pm5RHE)', 'Ҟ\0[U =b\Z^ճ', '', 0, '?'),
('/>(3', 'wp-includes/blocks/verse/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eˣRR|', 'j/+H+׈z*c*aae', '', 0, '?'),
('hl8Xw', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/SignatureSniffer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/SignatureSniffer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VA.I~0Wp', '2c#No'']\nO(\\EJO\r|PT', '', 0, '?'),
('"V"f*d', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/golang.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/golang.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R\0رdW#O', '}%`OMOR-;6츶v/Zb<ݩm', '', 0, '?'),
('/އhsb<\Z,m(', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IT.y@YB', 'd]Iv(A{kI>Ж)^', '', 0, '?'),
('1u/|ʐ@y', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/ConditionalGet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/ConditionalGet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j@t;&aG', '[r	/ vEzlwVnW', '', 0, '?'),
('50ăg=aa', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/forms-index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/forms-index.php', 0, 'f\\2:=]U>', 'f\\2:=]U>', 'Vr/(i&JA((/b5*jA	', '', 0, '?'),
('AyjlC𶹎Z', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionNormalizer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionNormalizer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bOjh1@D*w', '"qqM(''eq}!1SV', '', 0, '?'),
('C(LC*R΍\0', 'wp-content/plugins/wordfence/lib/wfCurlInterceptor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCurlInterceptor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FHim{X{bȤL', '\\OqL{3<K9\n=', '', 0, '?'),
('Fm&g\r[X_', 'wp-content/plugins/elementor/core/dynamic-tags/base-tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/base-tag.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_%74OƎ`?', 'B\\c30gˎҟ0BI%DCp~', '', 0, '?'),
('HL<Կ9', 'wp-content/plugins/elementor/core/base/background-process/wp-async-request.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-process/wp-async-request.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jMB,; qs2', '\r&]׿3LoHU5Wy\\M', '', 0, '?'),
('NQ"*hzrw|\Z', 'wp-admin/images/media-button-other.gif', '/home/binawebp/omsrislb.my/wp-admin/images/media-button-other.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ayO1/2|	{&]', 'Lp-87Q|Ji`1O2c', '', 0, '?'),
('TѵvY6;I', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&mڎ?|^@', '##j$\0ݟȊ02)gHc"%J', '', 0, '?'),
('VHR6%?\r', 'wp-content/plugins/elementor-pro/modules/forms/actions/activity-log.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/activity-log.php', 0, 'S7d\02', 'S7d\02', '&(3=jFXz!Nq0!	(!7M', '', 0, '?'),
('Xɘy_7XN/', 'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\h''\n䷺', ' 7RG$/-iNm(W;̅', '', 0, '?'),
('^/א¬$\0j陔', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/gmaps.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/gmaps.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S<Ʀ.A', 'vLcS1[9Q]㆚''+', '', 0, '?'),
('lEjyfj[b uW', 'wp-content/plugins/elementor/assets/js/4573680c5d8b9b2d9f17.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/4573680c5d8b9b2d9f17.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ѩF9ёmƣ', '[~Od9z{(h&&?', '', 0, '?'),
('qo}{Xҏo|', 'wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZyԘRO', 'mbc[!FiaTVY.)', '', 0, '?'),
('z,Me''qJ!Z', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-price.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-price.php', 0, '"\0A!5''8', '"\0A!5''8', '_(ʏ3Ƙ-B">0 $PeS', '', 0, '?'),
('q]C(S~', 'wp-content/plugins/elementor/core/debug/classes/inspection-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/inspection-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L', 'ҳr&%ij$g\r.%L>', '', 0, '?'),
('ThzPr', 'wp-admin/widgets.php', '/home/binawebp/omsrislb.my/wp-admin/widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z*Np=2', '|\n2U)j+oL	)o', '', 0, '?'),
('ϋД''OtʗM;', 'wp-includes/js/dist/deprecated.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/deprecated.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T@UJ1	+4iK.', '׎Y?gqb6c"~lCQ', '', 0, '?'),
('\0B"O;AIE', 'wp-content/plugins/elementor-pro/assets/js/page-transitions.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions.js', 0, '>	pR8	6Z', '>	pR8	6Z', '	]7;m&*|dY1Μ&h8', '', 0, '?'),
('9U+	ƕM', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/space.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/space.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\G>#ҮC', '\ZB:LcNuR߹', '', 0, '?'),
('W]_xLZ8', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/README.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ꚛp)Q\rv0l|<', 'El2YcvR$^\\''\Z]\0', '', 0, '?'),
('vW;ڷ`', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߡ//-߳͛q9', 'sៗ]}SJ!\0VnkZ15K|', '', 0, '?'),
('X|_wc:j', 'wp-includes/blocks/search/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}@R[q', 'Hp􆡼V9\0x', '', 0, '?'),
('~򩨖K]^', 'wp-content/plugins/elementor/assets/css/widget-image-gallery-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-gallery-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '21\\L!cUb', 'k2`?ot@v }nD', '', 0, '?'),
('E?tB9bvF`1', 'wp-content/plugins/wordfence/modules/login-security/img/loading_background.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/loading_background.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''2p\nKX', 'Ύ%XŖF1s;Lzr璻', '', 0, '?'),
('kJo9NT8|', 'wp-content/plugins/wordfence/images/audit-log-preview.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/audit-log-preview.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '		쏪]B', 'K:)Uufw$zԎ78c3Ka', '', 0, '?'),
('^/M\n8L', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/ajax-loader.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/ajax-loader.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0	rZν(mxN', 'WpwфjM߅Rw؝4', '', 0, '?'),
(',8ٲ@g9', 'wp-content/plugins/code-snippets/dist/editor-themes/pastel-on-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/pastel-on-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~O	_BTɨE', 'wp+0;O.ExQiw4ƅ(>N', '', 0, '?'),
('Ͱ(3D.', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lV+', '"/̾*.\ru\0B9jK	g', '', 0, '?'),
('LSxnq1,:', 'wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%~fSv"d>N', 'xUw^N*KE6cy^Z \nW"', '', 0, '?'),
('Tc-,''J', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\LbVSd2b{vW', ' bgw<y^÷y,<{', '', 0, '?'),
('t]ٟuuj', 'wp-admin/images/menu-vs.png', '/home/binawebp/omsrislb.my/wp-admin/images/menu-vs.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qL,_;1/E', 'GiH|)E;"_;ԣ4Իwly', '', 0, '?'),
('~w`5;F㮮', 'wp-includes/js/jquery/ui/effect-size.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-size.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b2\\Z$r', '^-o\rf	2߽Άf', '', 0, '?'),
('=q\rljA+', 'wp-admin/user/user-edit.php', '/home/binawebp/omsrislb.my/wp-admin/user/user-edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<D\0\n#E', 'Xxno{\0\\䞿e[jZN', '', 0, '?'),
('''IWD_MpC', 'wp-content/plugins/code-snippets/php/settings/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D"Jǧ', 'yIs\rjVI[ql8y~Cփc*', '', 0, '?'),
('0->$U', 'wp-content/plugins/elementor/includes/controls/select2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/select2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~ڧ=G2\r8w', '<ϦT%^yϫ^ʣg', '', 0, '?'),
('3%\0Hv]', 'wp-includes/blocks/query-total/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r<X\nx_(l"I', 'f.dLJ fcU}d.q3t2㤦', '', 0, '?'),
('HC!"(', 'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wyBo|', 'oJj$scRQc伍F', '', 0, '?'),
('J\rӷG>', 'wp-includes/class-walker-page-dropdown.php', '/home/binawebp/omsrislb.my/wp-includes/class-walker-page-dropdown.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z`Tuϡ', 's>w`kP䐆:x\nqpe(', '', 0, '?'),
('Lą6(C%f', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QiT6', '9W\nytj!J;3/4', '', 0, '?'),
('S;C<d', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-groovy.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-groovy.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b>\0".', '}VX$k39.WK''Ab(', '', 0, '?'),
('[ޥ.c8)Wn#', 'wp-content/plugins/elementor/includes/controls/groups/text-stroke.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/text-stroke.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '56ʙY\rON', '¦`0}+#կ#I/m«,', '', 0, '?'),
('usy6''v,=', 'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\ZVZ ', '"	!Uayx$3<e8', '', 0, '?'),
('"qUy9%Q', 'wp-includes/class-wp-matchesmapregex.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-matchesmapregex.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%`^`|j\r', 'C;ZzZFT{^x}Z', '', 0, '?'),
('u&ʖn&zQ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~	Ģ`-֨:', 'Bk9)#4~.K\ZΟ_0q', '', 0, '?'),
('u@V܍M', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/text.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/text.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i?B|v', '\n7C Ul+ăޝ', '', 0, '?'),
('}b[­', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IymuK_', 'pY;RƮGy!#nmR', '', 0, '?'),
('.*{6:9Mڅ3', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('Oi?\0<\nQ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/ExecTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/ExecTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0GyO', 'Q#fy4@k\\5,G|tJpPl) *<V', '', 0, '?'),
('<"	KEg݋', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/toml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/toml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EuI\0^Y', '/AȠY_jhe+˘/', '', 0, '?'),
('f''מsmk', 'wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qX\r2q', 'W1Qvg㏌,t$9', '', 0, '?'),
('XߎeK', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php', 0, 'Ȳ$)δ\Z/', 'Ȳ$)δ\Z/', '^&?t́(<هw2?%', '', 0, '?'),
(' K iDt', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zz#H', 'n]x\Z_ѪkB-a&̃', '', 0, '?'),
('~E@T#tw', 'wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-walker.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-walker.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2k''9R团H', 't1	HvG̢lB\r^qE', '', 0, '?'),
(':6', 'wp-includes/blocks/comment-edit-link/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':S60	iEo', 'Oo*/ѷ8?/hh''*', '', 0, '?'),
('r\0pmI', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x`⁌|Z|', 'B2@\rqkK_3ۉUYg?', '', 0, '?'),
('A\ZC&U*}', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@ʝa746', 'L~8݆v_R.QTUѳb>I"nB', '', 0, '?'),
('7&Ȁ', 'wp-includes/js/tinymce/skins/lightgray/content.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/content.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\PIɥ<\\', ')Y@u&Kg\0?\\F''X0ǈ', '', 0, '?'),
('*(*+Wjcp', 'wp-content/plugins/wordfence/crypto/vendor/autoload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3Կ:V	U''', '|<P*tg3dYs/', '', 0, '?'),
('浑1Q=E#S)?', 'wp-includes/js/dist/script-modules/block-library/navigation/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/navigation/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'چj揥', ',S9Q6IۍI''["|`BE&', '', 0, '?'),
('4g`F', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-classic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-classic.php', 0, 'hpI\rF', 'hpI\rF', 'Mݍqah{I~%]c,Q', '', 0, '?'),
('0rH"YK]T', 'wp-admin/css/site-icon-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-icon-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pL%7', 'J.Hz[bb<3yU', '', 0, '?'),
('\nTa%v', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template.js', 0, '@\0L5', '@\0L5', 'e[b2BD"xڋZeɼ/_>', '', 0, '?'),
('(9l15nq', 'wp-includes/blocks/button/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b̈T3~58.', '[^\0=z\0jl'']c;', '', 0, '?'),
('(љ\0H<_', 'wp-admin/includes/nav-menu.php', '/home/binawebp/omsrislb.my/wp-admin/includes/nav-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-:}U29yI', '4^܋]fJb.S_', '', 0, '?'),
('3x2§h_', 'wp-includes/blocks/shortcode/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>`Y<', 'ŵ3J}g9x 1ʅFސf', '', 0, '?'),
('5u- |wFr4%eX', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-\n!h', 'A7KmCk5+7ge쟣NE', '', 0, '?'),
(':''J?Y>c', 'wp-content/plugins/elementor/assets/images/app/site-editor/single-page.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/single-page.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@Mk6Qd', 'WTH\rvv\\0F\\rm\n', '', 0, '?'),
('<.4vc"`t', 'wp-includes/class-wp-simplepie-sanitize-kses.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-simplepie-sanitize-kses.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vɐw:\ZG', '5R6"W<H`$`L', '', 0, '?'),
('>3x !E', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/twig.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/twig.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c|l94>\n', 'mޒ''Q2\nᲟ 3hR-', '', 0, '?'),
('Hth?ݫ', 'wp-content/plugins/elementor/modules/wp-rest/classes/elementor-post-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/elementor-post-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!޲4u1s\Zg', 'uЙ6,\nf{ݢ,#4q', '', 0, '?'),
('PxF`c[e7', 'wp-content/plugins/elementor/assets/shapes/book.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/book.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aUtc׎f:O9~', 'Щ)|XIs߄ZK++ԔVi', '', 0, '?'),
('a''XDEUC͙', 'wp-content/plugins/code-snippets/php/class-welcome-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-welcome-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '66VI%kio', 'w)Y̥Y+nf)@4u''', '', 0, '?'),
('bo3b-%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-keybinding_menu.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-keybinding_menu.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ot`\rb', '|ҭ1y7a^E!,\nbN', '', 0, '?'),
('c&&,iLm', 'wp-content/plugins/elementor/includes/maintenance-mode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/maintenance-mode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?Z6ؿqP', 'DQs%k]30yUd?Q5i#+', '', 0, '?'),
('g_=x', 'wp-content/plugins/wordfence/css/wf-font-awesome.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-font-awesome.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''MًV:', '997dIOu-%enԻ1I', '', 0, '?'),
('iPÙld\0', 'wp-includes/css/jquery-ui-dialog.css', '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'syTS]oaX(', '0?(zڣ0ܛK!d', '', 0, '?'),
('k4c5<"', 'wp-includes/js/dist/autop.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/autop.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U>CB', 'e@͂8=Ld\rWu2', '', 0, '?'),
('ps-''CMЯ', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/add-new.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/add-new.js', 0, 'I\ZnOMv', 'I\ZnOMv', 'š[gڢ*6U2z)nG', '', 0, '?'),
('s\0z[02KH', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.js', 0, 'Yt2}ӵw', 'Yt2}ӵw', 'fx	=\Zyg<773߅`~_	܀M', '', 0, '?'),
('~,%.k6k}', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/BadMethodCallException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/BadMethodCallException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\2Azx%78', 'tpDb4_e9Mn\\/faEI', '', 0, '?'),
('mƱ]4J\0L', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/core.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/core.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\naO[`)', 'EM7?Z=Bţۘ`_tn;>X', '', 0, '?'),
('|ҷ5C', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mushcode.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mushcode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z\r\Z*ҤK6', '>oXbuN14ft93&XV', '', 0, '?'),
('u<ЬVq/', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js.LICENSE.txt', 0, '>7y՜', '>7y՜', 'z^D}\nibpU~P', '', 0, '?'),
('i_^̩ҍ', 'wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.023d7d31fbf96c3dbdfc.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.023d7d31fbf96c3dbdfc.bundle.min.js', 0, ';ߵmv', ';ߵmv', '``/HP*Ppaݱ13iw', '', 0, '?'),
('F"T}z|9', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/request.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/request.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|Dnr', 'H@+1a,U6扱_xK{=5~', '', 0, '?'),
('9	\0c̴,', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AkauntingInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AkauntingInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U;i\ZU', 'pd4KS\0<%06SC', '', 0, '?'),
('S\r؟!K', 'wp-content/plugins/elementor/core/experiments/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P ۝1x5', '<}pbo3\\\0qRe', '', 0, '?'),
('S3v O', 'wp-content/plugins/elementor/assets/css/conditionals/shapes.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/shapes.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z?E`Fyoӥ', '\rبP*Frne7}zz=WMn', '', 0, '?'),
('xEAe}>', 'wp-content/plugins/elementor-pro/modules/popup/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/module.php', 0, 'X2^ ;!', 'X2^ ;!', 'ðNQ\\''K-=Wר\\pj,Yp', '', 0, '?'),
('VO;', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_Hҥɤdʈp', 'P󋪵[7^F6ޒZbp|', '', 0, '?'),
('j<', 'wp-content/plugins/elementor-pro/assets/js/frontend.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/frontend.js', 0, 'i\Z7g3Ĉ', 'i\Z7g3Ĉ', 'J>k	v{/ds}5S', '', 0, '?'),
('zD2}9rA1@', 'wp-content/plugins/elementor/assets/css/admin-top-bar.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@ɪ(IW/', '^`/''U9Xen', '', 0, '?'),
('3FHeQ', 'wp-content/plugins/elementor/assets/css/frontend.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z%R%PA넫', '"uUuT\Z-&u`', '', 0, '?'),
('jg*!F', 'wp-content/plugins/elementor/modules/announcements/classes/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/classes/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Nʫ	b@', 'ɚ<X\0.Kz4\rk3&', '', 0, '?'),
('N.!A25L', 'wp-includes/block-supports/utils.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pm/9ljT	^', 'WrW[\0K)\n\n.^u', '', 0, '?'),
('WL*	Sd/', 'wp-content/plugins/wp-optimize/templates/cache/page-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z3P&z\ZB#6O', 'eD)±0="~N5diMOY$', '', 0, '?'),
('u_[HT', 'wp-includes/blocks/accordion-heading/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PEo*~%+', 'mWXplv~K|168k', '', 0, '?'),
('>4)T-G', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-objectivec.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-objectivec.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4K)םcB', 'wO?y!J;ܺ*Q.\\\Z\r', '', 0, '?'),
('>]I_V', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '={HX=~Nj', '6''VVnT6`YTyf\rĂC', '', 0, '?'),
('ǵ=fC', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-font.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-font.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Li"du', 'WU.Ma.a%ԛ7w/8wvUU', '', 0, '?'),
('''SDr!=', 'wp-includes/html-api/class-wp-html-span.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-span.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZqXM_)u"/', 'o4]HOm\ZxRyj/', '', 0, '?'),
('yf `<''7', 'wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/import-export.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/import-export.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eCe\0z', 'M̐eHy,eҜ{Ƽ	*', '', 0, '?'),
('x#*W`PD', 'wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':ok{ػ', 'cA[^rD ԧxr9;', '', 0, '?'),
('!@|4n', 'wp-includes/class-http.php', '/home/binawebp/omsrislb.my/wp-includes/class-http.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WQK\rtǝh<', 'ajEXOtf};g$خ44Ѵ', '', 0, '?'),
('''ڞ\0;?+VҪ', 'wp-admin/network/edit.php', '/home/binawebp/omsrislb.my/wp-admin/network/edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=#LH', 'q/*߲3xS~.'']wk,W', '', 0, '?'),
(')%\n]i$#', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php', 0, 'eEZ3euß', 'eEZ3euß', 'c\r:pMmVa=`m&`"mqnA', '', 0, '?'),
('+D_	6,2', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icon-set-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icon-set-base.php', 0, 'YhY|W', 'YhY|W', 'ĂDá30ʅ''p2hAގ\0]', '', 0, '?'),
(';pR9+qpծ', 'wp-admin/includes/options.php', '/home/binawebp/omsrislb.my/wp-admin/includes/options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z±wUWع0', 'M灌o3],~G54$l', '', 0, '?'),
('?|꺯~x', 'wp-includes/blocks/query/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kl', 's/y>O''67/ז"[ ', '', 0, '?'),
('E2V"c%u', 'wp-content/plugins/elementor/modules/atomic-widgets/image/image-sizes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/image/image-sizes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?A\\M/Et', 'e>9ؽQԳT.ʠ~`׫', '', 0, '?'),
('Gn\Z;>*sdt', 'wp-content/plugins/elementor/modules/system-info/reporters/base-plugin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/base-plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '¹T[-j.Cb', 'GBҙ"(A\0p^bʙ</JuW2F', '', 0, '?'),
('W[_2Tj', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coldfusion.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coldfusion.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P\n\Z7D+&tde-', '8Ko?@tKdEB.pf|', '', 0, '?'),
('b\0%''\0 ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IfNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IfNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\~keojm\n', 'v膛Ǐ!g:\0.''k=(V~ ;P', '', 0, '?'),
('q`*o1Icn=', 'wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/mobile.index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/mobile.index.html', 0, 'anyyn', 'anyyn', '''\0Y+4Ar''4Xev4', '', 0, '?'),
('xm\0~', 'wp-includes/customize/class-wp-customize-nav-menus-panel.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menus-panel.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϩGhUH%b', 'l<UqThi/7\0}JgWb', '', 0, '?'),
('܈y7@"', 'wp-includes/blocks/audio/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P⋎m{tmo', '}/14o|&X1ͦO8	7:a', '', 0, '?'),
('P%h~g\r	', 'wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZgSOR\ry-', 'KC6#3urŤ7|''', '', 0, '?'),
('䚞8md', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/ReflectionCallable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/ReflectionCallable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(<M ,Q', 'ab`\n_MVA8	?t', '', 0, '?'),
('r-V', 'wp-content/plugins/elementor-pro/core/integrations/exceptions/exception-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/exceptions/exception-base.php', 0, 'Նz_nn+,', 'Նz_nn+,', 'w`r9V6Q[p6YP\n:ݚ', '', 0, '?'),
('\n#T?׻', 'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6@E-mdo', '̉Yj''i)j|EVlF\nL', '', 0, '?'),
('5.', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Iіz>HIZ', 'O<|\\X::SF/"QBJ-h', '', 0, '?'),
('[2S?dD', 'wp-includes/class-wp-phpmailer.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-phpmailer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k1{[J', '_3kls\n7Qq6ٖ5=k', '', 0, '?'),
('Ú2d=', 'wp-includes/rest-api.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')GA\r{ۊ', 'Gnkĕ2;;bJsoC', '', 0, '?'),
('P\0''0lv#J<', 'wp-includes/js/jquery/ui/effect-fold.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fold.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R3*0:Oh', '6?Ǩz\\,ܨ6', '', 0, '?'),
('Ȅxy', 'wp-includes/js/tinymce/skins/wordpress/images/embedded.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/embedded.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pNy~n"', '{ux''Jº@i"H;]6h', '', 0, '?'),
('58L(9 |n''', 'wp-includes/blocks/comments/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u$.3oQӷ0', '5lhv4ԮA.>EXʊK_A', '', 0, '?'),
('ϴ 3P`#8^Z', 'wp-admin/css/colors/coffee/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nx\r`^u', '*?e@F5Cqbqf?Xx', '', 0, '?'),
('݁"B_', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/LeaveProfileNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/LeaveProfileNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b/O''9', ' ~v,ױM҉30Ԅ', '', 0, '?'),
('G#;"L%', 'wp-includes/blocks/categories/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|\0\r聝', 'նUb%Æ(x8 2pV', '', 0, '?'),
('߇cͱ_0d', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0LtCY#%~tw', 'pJ}9^տsTդ#', '', 0, '?'),
('Uy4]!g', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FromTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FromTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/?9<(', 'DqX''^V+Wy~w%rxk', '', 0, '?'),
('\n,yЉʸ#', 'wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',,rjsz!2`', 'MsװI?p3Z~p#*2', '', 0, '?'),
('\0,#heLG(}', 'wp-includes/blocks/query-pagination-numbers.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xk.ImdyR', 'd4ErNs>7\Zdl`qi', '', 0, '?'),
('$^n]*Vh', 'wp-content/plugins/elementor/assets/js/checklist.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/checklist.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T2+''ZP', 'EY/Iz-fLUFFyyuxAXP*', '', 0, '?'),
('ilMթOU5?', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-url.php', 0, ''']M''&%PC', ''']M''&%PC', 'CD;=gJ)DJ+H UtL', '', 0, '?'),
('B+ކnK7', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/group.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/group.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z& ', 'KTn%L9N\rcH+T<AVn', '', 0, '?'),
('\Z9/Cn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-error_marker.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-error_marker.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z4#:CC*>z', '2XQSY6vDҷugRVqB$eB', '', 0, '?'),
('"N߬jj)\0N', 'wp-admin/images/menu-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/menu-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jG{>^;$', '2]y#h29> ^s\rH	\ng', '', 0, '?'),
('.ľV(sN^m', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/conditions-config.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/conditions-config.js', 0, '"2\Z8_+~eɏ', '"2\Z8_+~eɏ', 'hw c$=''i^f?{aV\\qؾ', '', 0, '?'),
('2Wx	$', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/popups-promotion-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/popups-promotion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I-rcaŔ', 'qjT]uerG-{@ƵWr$],', '', 0, '?'),
('3XG%<!>', 'wp-includes/blocks/pullquote/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7^,m"-v', '++(x[iALF=h5&}`z', '', 0, '?'),
('9*ICc', 'wp-includes/blocks/post-excerpt/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9aN4=\r^', '~ŪAWw@7vz4_', '', 0, '?'),
('F$*G,', 'wp-content/plugins/elementor/includes/widgets/common-optimized.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/common-optimized.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`9ydugi58''eGU', ']tҐ?$˒X/Ɯ(T#ۓgP', '', 0, '?'),
('K|/SO->Y', 'wp-content/plugins/code-snippets/dist/editor-themes/rubyblue.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/rubyblue.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-2ӍE_ny', '\0vwD3ש	Y=S(9}U', '', 0, '?'),
('NW%XHYG}', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^iVHíPuW\08,', 'uSdjF#ڄ^un>,g', '', 0, '?'),
('Yk}7', 'wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W&;aaJ''W', '62Tt/YT5~¬%-c', '', 0, '?'),
('[cv[[', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/plain_text.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/plain_text.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x!.''B-T^', 'Ӆ66/]/,cxW=\rp', '', 0, '?'),
('l8zfodԁ', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WN;"쇋', 'tb]Q쾍4K[y!^', '', 0, '?'),
('q_"1F', 'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\܋G<?AQ]', 'H![f\r`vhF"#2.?(', '', 0, '?'),
('s&^"WD=', 'wp-includes/blocks/query/view.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xIS_t\\%^', '\\Z?;\n4cwMz:`?0j,N#', '', 0, '?'),
('tZQYz0跫', 'wp-admin/images/wordpress-logo.png', '/home/binawebp/omsrislb.my/wp-admin/images/wordpress-logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ưyo88S`', 'bxLPͰ=^am1i', '', 0, '?'),
('yvtTP5-+`1', 'wp-content/themes/twentytwentythree/templates/404.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/404.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%"ښ''&..', 'by&>#ᎀR\Z]j_', '', 0, '?'),
('Q,)#p1', 'wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T#c{C797b', '˥;¦<{VgJb+s|ø', '', 0, '?'),
('K5$rEp', 'wp-content/plugins/elementor/includes/widgets/accordion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/accordion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' \ZK^Ɋ\03', '\nPMa]ֽ2fj(M$ȚV', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('ebWA0d', 'wp-admin/images/comment-grey-bubble.png', '/home/binawebp/omsrislb.my/wp-admin/images/comment-grey-bubble.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y*''tF', '7	y񮌬U{ԟ`]m', '', 0, '?'),
(']Q^p=jM', 'wp-content/plugins/code-snippets/php/admin-menus/class-edit-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-edit-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5zп\n}p', 'kB;m2F}&Gh%}$I)', '', 0, '?'),
('=cJ'':\\.', 'wp-includes/blocks/accordion-panel/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XP\0HF0:', 'KĒu&q2Y+-Q1Usa(JL', '', 0, '?'),
('[4?s', 'wp-includes/css/dist/block-library/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':pۼY!', '\0DK	^C#GBҸ', '', 0, '?'),
('$4שAG<}', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IE(iS0wD', '8ח@sRvHl9Q}nԫ', '', 0, '?'),
('c*&~', 'wp-content/plugins/code-snippets/assets/icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/assets/icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xK6h\Z˄S ', 'M\nchSp_Sl#$"P', '', 0, '?'),
(':!@Qk:[', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-kontrolz.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-kontrolz.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M@}hRKv]', '33	a(=p91!', '', 0, '?'),
('v<cg|b=\\', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kf"n\Z4h!I', 'A]^TuI<®~/}n', '', 0, '?'),
('U2R,''@', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0I77M\Z?', '_%UK''\n3%a./](`:', '', 0, '?'),
('Ia\n؎a', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>\Z\Z+,', '*y$MQ[q:h")XTC\0\\k', '', 0, '?'),
('ɰ`[', 'wp-content/plugins/elementor-pro/core/database/query-builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/query-builder.php', 0, '+ؗKMICj', '+ؗKMICj', 'Pju٘fH!PxO	//r@', '', 0, '?'),
('̳ݧa ʯg,', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-autohotkey.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-autohotkey.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=^=͵_G', 'M0N)	y\Zouun-SY', '', 0, '?'),
('w~cR\r', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/IntegrationTestCase.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/IntegrationTestCase.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J''BHZfg', '&UM-/2\0sݠp', '', 0, '?'),
('4"^|Y', 'wp-content/plugins/elementor/includes/controls/groups/flex-container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/flex-container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ses֓5OƮw{0', '<C91bKxy45Q2{i$s', '', 0, '?'),
('e^\nx$*L', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app.js', 0, 't\\D1', 't\\D1', 'I!i8l.qH2e.^Q*Η9C', '', 0, '?'),
('Ce9	yQ', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pv6sCט8Z', '}+i˨t@=', '', 0, '?'),
('	UǞ_R[k', 'wp-content/plugins/elementor/assets/css/widget-text-editor.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ') @\0*0vu', '*w&jhƎeZ_Fgl+]|', '', 0, '?'),
('	eحVMy', 'wp-includes/blocks/rss/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/v\nt60r', 'DA&G滹9h^py', '', 0, '?'),
('mqPoD0*L', 'wp-content/plugins/wordfence/lib/wfRESTAPI.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfRESTAPI.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\8H mi+', '++Ɵ0͂b=[㜁', '', 0, '?'),
('7++2', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/groupsConfig.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/groupsConfig.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5J\Z A^}a', 'N012vM\ZZ|x4{''\r>', '', 0, '?'),
(' ,eOzÑ', 'wp-includes/customize/class-wp-customize-site-icon-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-site-icon-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o#/v', 'Y$B[dU', '', 0, '?'),
('!`/zll\rg<)', 'wp-content/plugins/elementor-pro/modules/loop-builder/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/module.php', 0, '%3؄i8`<2', '%3؄i8`<2', 'd yC슌.i\\p쫩a', '', 0, '?'),
('";&rvS_', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E6c,C', '!NcN~@	ɠo5^E$}m既', '', 0, '?'),
('''N8_\n"h', 'wp-includes/blocks/comments-pagination-next.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-next.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MC_R=<R', '	a"Q+ڏ%m3{p', '', 0, '?'),
(',5XpBFdcj+', 'wp-includes/js/dist/vendor/lodash.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/lodash.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2<(-yi*O', '\nfh $L7:8gJ?[@yHG', '', 0, '?'),
('7c-kЄ"`k', 'wp-includes/blocks/html/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3tcm0תy', '^q]CɠBԏn p>ZF;', '', 0, '?'),
('=,v1̠@>I', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߲v \0', 'T7D72,/Js5jx3L', '', 0, '?'),
('Q (;ؠ|~R8b', 'wp-admin/includes/user.php', '/home/binawebp/omsrislb.my/wp-admin/includes/user.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xV%FA', 'w>^.910{Y^F99~E', '', 0, '?'),
('T]\\g4źuP;', 'wp-admin/css/admin-menu-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N2q&ܖm}Q>', 'K{	qc&Mh6R<v:?', '', 0, '?'),
('bpA+-+ʉ', 'wp-admin/js/widgets/text-widgets.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/text-widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(<M}Z?w', 'l!O^l@X(SqVO}QtW', '', 0, '?'),
('o`Z.3Sjf', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/App.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/App.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<}NlS.=L', '\r0G\rS''Չzcvqao{', '', 0, '?'),
('st<v@M,', 'wp-content/plugins/elementor/assets/js/video.6ebfa2c3f5493cb2eaaf.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/video.6ebfa2c3f5493cb2eaaf.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V:0k!', 'z47̸_1L\rR\ru{', '', 0, '?'),
('z2$H', 'wp-content/plugins/elementor/assets/css/templates/widget-alert-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-alert-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+?~ ,5', 'dţ>UkC=fMv?	ZgX', '', 0, '?'),
('~G)Mt/\rʦy_', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Command.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Command.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H?"', 'cYnBO,=Joo^Is[w', '', 0, '?'),
('b͕+f3c', 'wp-includes/blocks/latest-posts/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[PC[Q;5:>', 'u̿$$"-SQe,j|zhO~@I', '', 0, '?'),
(' K1', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of.php', 0, 'ƁV=G}', 'ƁV=G}', 'csK+O(UXS', '', 0, '?'),
('%bQbM<x', 'wp-includes/js/imgareaselect/border-anim-h.gif', '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/border-anim-h.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z,ntZ^6{Lp4', 'qschm-%x\ZBx''E:', '', 0, '?'),
('"[Xu#Ha', 'wp-content/plugins/code-snippets/dist/editor-themes/liquibyte.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/liquibyte.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N-v̷d[', 'w?\\|ʑDSov''jڑ,8+b-hO', '', 0, '?'),
('O}ܸUy,', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-data-tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-data-tag.php', 0, '>70zI\ZQ', '>70zI\ZQ', 'וGC\0+Y3*J)G3@	0', '', 0, '?'),
('-6Yw@i=', 'wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OhO<FҬ', 'PJHtNsnd*F''WWaq]', '', 0, '?'),
('1y4x%v$', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/README.rst', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/README.rst', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vց,sS.l', ' Xi|#Ȼ\08<Tw<"9', '', 0, '?'),
('Zp]\n\Z', 'wp-content/plugins/elementor/core/editor/loader/v2/scss/editor-v2-app-bar-overrides.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/scss/editor-v2-app-bar-overrides.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɪ;6ெ\Zͦ', '<C+c;@,#e**KurzhfH', '', 0, '?'),
('0,X', 'wp-includes/css/dist/edit-post/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0j/ߡchp', '8<ϸ8HħV\ZRM|їu+v', '', 0, '?'),
('H0o>4C^N', 'wp-content/plugins/elementor/includes/widgets/sidebar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/sidebar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v	eSLLV[ulx9', '_XWܙoKHZ[+dU@<ݬ[س', '', 0, '?'),
('\r5 -|˃I\Z', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':?좑.''\0C', 'Y9ƣYl-[	\Z/', '', 0, '?'),
('r\0Q@sή', 'wp-content/plugins/elementor/modules/history/views/revisions-panel-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/views/revisions-panel-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SԯXzj', '!V%X!E=SAIA9mG\rmqGA', '', 0, '?'),
(',\Zh3', 'wp-content/plugins/elementor-pro/modules/loop-filter/widgets/taxonomy-filter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/widgets/taxonomy-filter.php', 0, 'b-0:{Պ', 'b-0:{Պ', 'Us(s+v՟-?^G$eK', '', 0, '?'),
('U_IV:t&', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-route-post-id.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-route-post-id.php', 0, '݂<+PS{"{', '݂<+PS{"{', 'ƈ\Z[29˵\nQ:xD"]^+', '', 0, '?'),
('ۣ#z;\n\\H,', 'wp-content/plugins/wordfence/lib/wfScanFileProperties.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFileProperties.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':''B(\Z6]^', ' (&f;(JsU\\`', '', 0, '?'),
('9ղK', 'wp-content/plugins/elementor-pro/modules/forms/widgets/login.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/widgets/login.php', 0, 'kw\Z,#$ve', 'kw\Z,#$ve', 'ҨLce"P@YY\\LO{l', '', 0, '?'),
('''Qm\0', 'wp-content/plugins/elementskit-lite/compatibility/conflicts/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/conflicts/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c[ȜY\nυ', '\0)bl33Lt˛C+v', '', 0, '?'),
('i)33ܥs*', 'wp-admin/includes/class-wp-ms-users-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ms-users-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}6<饩ݣJC]o', 'X;{)SQZF=偏p0)', '', 0, '?'),
('_k6i\nxw}', 'wp-content/plugins/elementor-pro/modules/global-widget/views/panel-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/views/panel-template.php', 0, 'Uaͪ{7', 'Uaͪ{7', '֤uW Pd&^Fo\\', '', 0, '?'),
('zm|>ņ=P', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/functions.php', 0, 'IRKϢ5[;', 'IRKϢ5[;', 't=50Y\\@rb', '', 0, '?'),
('|19uͬ', 'wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z$}l|xt\rrP ', 'E܄^,".(*m^A', '', 0, '?'),
('\rP)4_"''1', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q"]=|A_', 'kcب/^<q#HtQMV', '', 0, '?'),
('-8]u@g', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QDbOq\n', 'h{(]+YT^UU<@ݟ', '', 0, '?'),
('\Z~^^Yj', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sources.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sources.svg', 0, '7}L6s-', '7}L6s-', 'd΄5Rz4>^rDa)MY6>fA', '', 0, '?'),
('$1mL候', 'wp-content/plugins/code-snippets/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/readme.txt', 0, 'P\0uuIR{', 'P\0uuIR{', 'qȱyud8+-|q<>', '', 0, '?'),
('$n#h', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e\Z2.<bp+', 'wzXRWP\\nс:)(', '', 0, '?'),
('KK5Da', 'wp-includes/blocks/term-template/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n.#A0TD', 'xÆV,JntvȑI', '', 0, '?'),
('Rz1''7Q_B~', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.min.js', 0, '|B"y(Oa', '|B"y(Oa', '(L2^3V]RopJQ[', '', 0, '?'),
('U~ߣeM', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-forth.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-forth.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';@:px|V:', '	#2lb?d+', '', 0, '?'),
('^2ZcOeD', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2''O=䭁zP', 'h߶puMdQM;KT', '', 0, '?'),
('o	lѴcd', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n@LjwD', '\r8d8sڇ6FȌ', '', 0, '?'),
('|~ec<@4', 'wp-content/plugins/code-snippets/vendor/composer/autoload_namespaces.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_namespaces.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"@~Ǵ[@A', 'ЬKql:~ҝ٤Bu$*Vz)', '', 0, '?'),
('\rHck', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']\Z)\ZA+_.', 'H9:1+>ŭU{ؑ1ju', '', 0, '?'),
('G dHj6', 'wp-content/plugins/elementor/assets/js/lightbox.f3fa607b705962362647.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/lightbox.f3fa607b705962362647.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ЇĤD2&', '#OIˆG!`R#	=$\\kϠ', '', 0, '?'),
('I2e灨?D	', 'wp-content/plugins/elementor/core/settings/page/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/page/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WRͣr\Z', 'ʜ''8az@y^~U{', '', 0, '?'),
('f],VDv', 'wp-content/plugins/elementor/core/editor/notice-bar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/notice-bar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KJƾD0iiHr', '1n~} ikJ|y:#aېW', '', 0, '?'),
('*ΫB*	GX', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_f͜[K', ')ȍ5u5ހ)}lnݦ;u', '', 0, '?'),
('[Qkx', 'wp-content/plugins/code-snippets/code-snippets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/code-snippets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0c%', '@VD[`KLG4F|', '', 0, '?'),
('x|sKa', 'wp-content/plugins/wordfence/views/common/page-help.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-help.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!YJJk', '\Z=DBא	%%A?Ow*/~u', '', 0, '?'),
('{:ƴ4m', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Groups.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Groups.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!c/n=ڱVR', 'Xjݷt|>N/8k55]\n', '', 0, '?'),
('M\n[%rDi<', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSSmin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSSmin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y@nɔ7#B', 'l])ke,әkl7ٴ0˲', '', 0, '?'),
('b~E?l', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-regex.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-regex.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7VJd7\\s/x0ĄZ~', '{ŷ^۾_	c6D$', '', 0, '?'),
('#	>7', 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ImLWyݓH', '\rflդ/;l\\\\.6r#P[', '', 0, '?'),
('1dePN', 'wp-content/plugins/elementor/app/modules/import-export/compatibility/base-adapter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/compatibility/base-adapter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WXA\nX', '7׊݃~,YjTgEN:S6q', '', 0, '?'),
('ăfHH', 'wp-includes/blocks/navigation/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-y]rs֎(', 'ٜ~PI>Ǚ5n߲f?''g', '', 0, '?'),
('ņLGP(Ήȯ', 'wp-admin/js/widgets/media-widgets.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rcFﱭC"[', '%*e ''>\\ܲBI', '', 0, '?'),
('$3-t^A', 'wp-content/plugins/elementor/assets/lib/animations/styles/flash.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/flash.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N=slo', 'x3S6RuJB\n4_0k~', '', 0, '?'),
('Y/X,''\0', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5}y>b2', 'f"ZpipSӁ"oyIq0', '', 0, '?'),
('֤ 2Rƒa', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/tpae.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/tpae.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fK\0"(z{ޝc', 'h[3:Ap+~E%KXVe "', '', 0, '?'),
('v%|Ռpd', 'wp-content/plugins/elementor/core/utils/assets-translation-loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/assets-translation-loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lrw(N', 'eE/ju@aű\051V_Wd', '', 0, '?'),
('&	AH)I&', 'wp-includes/js/dist/vendor/moment.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/moment.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W$ob\\fiY', 'Do JuhH:4}h;E', '', 0, '?'),
('4A4DJm{', 'wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-handler.php', 0, '$^`H^', '$^`H^', 'P0ӗ>|{EF DCǺO\\9h', '', 0, '?'),
('cYF}j`', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3b(浏К', 'n;<	Ǖ-Wt]<su', '', 0, '?'),
('\n^|J', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-name.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-name.js', 0, 'w4~0yٸBC', 'w4~0yٸBC', 'ahFZMn_JjlMId5&\nmY79', '', 0, '?'),
('&2', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ylhw%Re', '\njqW	v_# f~R>', '', 0, '?'),
('|P_;y&I', 'wp-content/plugins/elementor/assets/css/widget-icon-list-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-list-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_c!N~&mK', 'OZ^X̉PcQ<¡=ԡW\0^', '', 0, '?'),
('Ԗr2bJ', 'wp-admin/js/site-icon.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/site-icon.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2ԽǍ|+', 'o/IPixԼ6ԕxU[!	', '', 0, '?'),
('#7rY\0i', 'wp-content/plugins/wordfence/views/common/status-tooltip.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-tooltip.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FfZ؍PIR&i', 'EQtY=j.#eW㈤A3QcPT', '', 0, '?'),
('&#pJh', 'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3Čd<vWJmx', '6R3]iJ)o.g1&lJ"', '', 0, '?'),
('+g 8P\\\\dM\\', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nCKmhڒGN', 'rft%KɕC0:Npk%', '', 0, '?'),
(',!#QP[;', 'wp-includes/sodium_compat/lib/sodium_compat.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/sodium_compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\Za,МX$', 'PW&O!\n[Y<t\n6@=&', '', 0, '?'),
('4ہ;0.*', 'wp-content/plugins/wordfence/views/blocking/country-modal.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/country-modal.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(G"nrPi)߬j', '\rFAmea	r-wYEuu', '', 0, '?'),
(':뭲cRPe(', 'wp-includes/rest-api/class-wp-rest-server.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/class-wp-rest-server.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!\0|N\Zy', '~<e;L*OTuHhU8Eoڶ''v', '', 0, '?'),
('KxP0&O:p', 'wp-includes/blocks/archives/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kx#ksyR<\0-', 'i˫Y:T`lPO"b2.\0', '', 0, '?'),
('LB1Ez', 'wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bXZ*.PB', '&^Y}sv̭͗]`F?&,', '', 0, '?'),
('MZ_Ӻ', 'wp-content/plugins/elementor/assets/css/widget-google_maps-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-google_maps-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd){~i	,`', 'J 2˜=ˇL,>9|0퀤1F', '', 0, '?'),
('e؟v笪Ej', 'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' UwYII}', 'ݠ\rڗUDPTV+6^:2!', '', 0, '?'),
('iaFpA^܏', 'wp-content/plugins/elementskit-lite/modules/controls/ajax-select2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/ajax-select2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0\ZݰZ=èDw', '?mqߥ0ߡI63`J0:G', '', 0, '?'),
('k\0\Z{ ݛ6', 'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G2Ϻn(աh\0\\\r''', 'p\\IRF.$\Ẓoq', '', 0, '?'),
('kbgS', 'wp-includes/js/tinymce/plugins/wplink/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wplink/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LY(Lcs', '~[jf$Hgl69YڛT', '', 0, '?'),
('l象p| c:*', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-alter-html.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-alter-html.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Od\0vz<t)%t', ':c޾Z[ؒ"d''5}Jr+w', '', 0, '?'),
('vnٜY	4JyKm', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreSite.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreSite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''N<|Φ0', 'g%y9q=ﾵSx՞', '', 0, '?'),
('y`pyisnA', 'wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x`PB2', 'Tzܷ$Ν	}z''''', '', 0, '?'),
('\\@j`Sb!=c', 'wp-content/plugins/code-snippets/js/components/TagEditor/TagList.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/TagList.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'glO(KǓ', 't''5f.̟`Mw\roTt]9', '', 0, '?'),
('FGeRU4@', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J%)xT-SS', ']fÖN¢?*=\\Qc4%', '', 0, '?'),
('57D;TkC', 'wp-includes/blocks/social-links/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_%a$', '! ƨde	_CSD-:m', '', 0, '?'),
('s5,}', 'wp-content/plugins/all-in-one-wp-migration/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5$mxlP%', 'F}ՌOX	##', '', 0, '?'),
('L.\nw;[', 'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_logins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E	4mY>`', '#_[Ѹ@uHa(+j>V\Z+q[V', '', 0, '?'),
('~DkKP&', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-icobox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-icobox.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mSU4oC{', 'qs(\r]ewC{\01vccĠ3j', '', 0, '?'),
('s\\۟', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/AbstractLogger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/AbstractLogger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lje¢0', '$Q5P2v\Zi$RE}', '', 0, '?'),
('g~w\Zhh', 'wp-admin/css/themes-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/themes-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+\\ޙyR', 'gQ66)V4`+C3+p@', '', 0, '?'),
(': ʺH\n!\r', 'wp-content/plugins/elementor/assets/shapes/tilt.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/tilt.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q\nMt	mV ', 'т!!:b$_:/e', '', 0, '?'),
('4x0,	B', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ReflectionClosure.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ReflectionClosure.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',\nbB+', 'nFќ?.L''FI*R:b4ug@j', '', 0, '?'),
(' \\ix(0', 'wp-includes/blocks/text-columns/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '++R\r', '$Y|eqЍu\0dfDbtF^	T', '', 0, '?'),
('d/6`', 'wp-content/plugins/elementskit-lite/traits/singleton.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/traits/singleton.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+bw,>p', '>s~`EK\n>$X', '', 0, '?'),
('ݐx_?Q+h', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ServeConfiguration.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ServeConfiguration.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ЀOWd', '\\]~[(]\ZX[k\\D\\?iO', '', 0, '?'),
('ͥ`FJSu', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kz+UŸ(5\\', '8:oI9,=zDk8;{A{\Zij', '', 0, '?'),
('CF]\0@', 'wp-content/plugins/wp-optimize/optimizations/optimizetables.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/optimizetables.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`ёcz2Y', '7"2$3!R<JՐ!MF	', '', 0, '?'),
('񥞟w;I', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementById.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementById.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܱ4׏1^qV', '{7!(aCv2Pȁ', '', 0, '?'),
('|ٻ'';l͗', 'wp-content/themes/twentytwentythree/templates/page.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/page.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',s1D	\0', '12֠"]K9lψ#N:', '', 0, '?'),
('	QW~-\0d', 'wp-includes/class-phpass.php', '/home/binawebp/omsrislb.my/wp-includes/class-phpass.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\neI-c	$.NE', 'B4)eU,9kp>*}[d', '', 0, '?'),
('	L=R0݃T', 'wp-content/plugins/elementor/assets/css/widget-counter.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-counter.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '׿bn1&$7', 'W sBg*,ɿiwB%H=}', '', 0, '?'),
('	?quM', 'wp-includes/js/mediaelement/mediaelementplayer.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	5)ky~', '_Dt3ג3pa;9,\nigC?3', '', 0, '?'),
('	8BKq\Z\0e', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\\\Z8X[sA3AgA', '@4s#fRLNٞLD:', '', 0, '?'),
('	ZQ/[\nWR', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elm.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elm.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gzVVj', ')sOU9D,\Zݐ4g^ʒ8', '', 0, '?'),
('	(EѼ}8G', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/loader-krasi.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/loader-krasi.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mg\rSX|i;', 'D7[묉P|PPkK]1', '', 0, '?'),
('	,/Օ!gyd', 'wp-includes/js/media-editor.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nu''s\0@', '.eXwh!st3H\\&3-#', '', 0, '?'),
('	.*5E[d\n', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/admin-script.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/admin-script.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Zs`0 ', '.OQy?Jekg\ria~lA', '', 0, '?'),
('	2p<(X"ݵ', 'wp-includes/blocks/audio/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CuȀc4B)', '(4KqbQX{d*P\nz', '', 0, '?'),
('	7f	`', 'wp-content/plugins/wordfence/images/sort_both.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_both.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dm	8f|Y', '~%ۉ%>BlouI)ȉ7g', '', 0, '?'),
('	<C]Tjzn', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&DKzS§0', 'NQ*TZ%P%jܑtZn/', '', 0, '?'),
('	=%fB*;QJ', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-url.php', 0, '\Zzv|f/', '\Zzv|f/', '}\\NBEEf}& ,Ym''QP\nϒ/', '', 0, '?'),
('	>;W{7v', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+#;&\r', '`$ZUA~Q/]ˍ>."%e', '', 0, '?'),
('	@t-1m\Z', 'wp-content/plugins/code-snippets/vendor/composer/installed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eqn/u@DOh', 'lH/vqH6^}Zq', '', 0, '?'),
('	H|T|V''d', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/soy_template.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/soy_template.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rt', ' aW?"_	TWS)ޑ(	l', '', 0, '?'),
('	J;uz', 'wp-includes/sitemaps/class-wp-sitemaps-provider.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-provider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\r-90', 'LL{VG5nXߺAP*', '', 0, '?'),
('	P=N>b"j:~[Q{', 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'We⎆?Nt', 'n4<Fz_5kig', '', 0, '?'),
('	U(;])', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/site-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/site-editor.js', 0, 'Eˊ?\nU', 'Eˊ?\nU', 'J$\Z;ot Ć馡/EY 1qy', '', 0, '?'),
('	Xt\\4vNI5j', 'wp-admin/async-upload.php', '/home/binawebp/omsrislb.my/wp-admin/async-upload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd?6.aĤc', 'W(W9*＀J#h4qMkdPH', '', 0, '?'),
('	t]9''', 'wp-includes/blocks/nextpage/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ei@FF\Z', '-!`,#ál៳DTD	v8=Y5F', '', 0, '?'),
('	u	0_3q', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/Error.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/Error.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''צ*,Ecwy\Z', 'iF3$Б~<y\0Xʧ6+', '', 0, '?'),
('	vg_\rz', 'wp-includes/blocks/comments-pagination/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"\Z?I{>', 'hY="f+ZƲ{<lm\0翦P).E', '', 0, '?'),
('	|Aܮ.', 'wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/download-link.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/download-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.habaO\Zp', 'am.I\Z3Ц4JbϟyEMV\rL', '', 0, '?'),
('	hXk%>{NB', 'wp-includes/js/dist/viewport.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/viewport.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~ZF~]', 'Di9	umMfB-s3iV', '', 0, '?'),
('	!\\$y&\r', 'wp-includes/css/dist/edit-site/posts.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fmjt', ' ()d)(@8z@Y99', '', 0, '?'),
('	&#fmʷpѯ', 'wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-classic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-classic.php', 0, '<6FA', '<6FA', 'yfC]mD\r/?.Fcd@[`', '', 0, '?'),
('	i	$_^=xt^', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/schedules-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/schedules-list.php', 0, '9[?D', '9[?D', ')9b~0#\Z<-c', '', 0, '?'),
('	;6]ZIab', 'wp-content/plugins/elementor/includes/managers/image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-?[Iج1', 'LC(rQ<$Nj9rB', '', 0, '?'),
('	[̓4^2?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abc.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abc.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8RO\n>?', 'R^=C1ʡhҤmk;(/', '', 0, '?'),
('	I,!D', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LogLevel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LogLevel.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"aB]9\r9xC', 'nYy"\0\nd#.eg56d\\>^', '', 0, '?'),
('	ҵ5_4zwP', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop.php', 0, 'Ṕ`^"^ \Z', 'Ṕ`^"^ \Z', '} D߷J@R+1d@]', '', 0, '?'),
('	Ӱꅑc', 'wp-includes/js/dist/escape-html.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/escape-html.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hg|', '!J.lil䕓J|vB׻O\r', '', 0, '?'),
('	9fވUf', 'wp-includes/js/tinymce/tinymce.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/tinymce.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xl̡Ckn', 'Zk	6|{*\Z{Hiܝk^', '', 0, '?'),
('	[CXkO', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/TextNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/TextNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V;Qq@~4b', 'Hh6>M$"yY\n''[|''X', '', 0, '?'),
('	o!QO', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.wn&?a׳', 'y{峚-9!NMfsq nս', '', 0, '?'),
('	H9Ҏ5Q_', 'wp-includes/abilities.php', '/home/binawebp/omsrislb.my/wp-includes/abilities.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n-~/-~b', 'Yť,!aeTooh7Es<dI', '', 0, '?'),
('	IhBpO', 'wp-includes/blocks/heading/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ѽ =Bu0', '%X*|6\Zq_\nPB.$kB;_yTBO', '', 0, '?'),
('	09-bͩW', 'wp-admin/network/users.php', '/home/binawebp/omsrislb.my/wp-admin/network/users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[ݢvl0z', '`)7+u#<^-n85ygj', '', 0, '?'),
('	/?^EՑ', 'wp-includes/sitemaps/class-wp-sitemaps.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~[]=!ذ', '0a\0<Eq\ns1ZFn', '', 0, '?'),
('	rhA\0͜', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rJSᝓ\ZLb', 'f1OMrWq+pbƉgIs', '', 0, '?'),
('	ۮcг21L,', 'wp-content/plugins/elementor/assets/js/ai.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=ڡudYiF', 'KX)6ۏ!ksmýa`h', '', 0, '?'),
('\ny>BYA', 'wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates/cart/mini-cart.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates/cart/mini-cart.php', 0, '*aU$Ltqכc', '*aU$Ltqכc', '+	L0wRP~Q', '', 0, '?'),
('\naQ|uWN@?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/hidden.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/hidden.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ykks-', '9zԧog5ܫ =6sBwcT', '', 0, '?'),
('\nm W0', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yvn33n', '73wKO)m;/B[)0\rp#[ŠY', '', 0, '?'),
('\nY\n(@qS', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/add-new-post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/add-new-post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`zG\Za%M4s', 'Q_b/|Gh-IA1ԏ4', '', 0, '?'),
('\n	64R9', 'wp-includes/blocks/social-links/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u/Lw!ٔ}', '>PL:Y*=[ib)$*S.\0', '', 0, '?'),
('\n"''࡛ܹ', 'wp-includes/blocks/blocks-json.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/blocks-json.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{\Z''c}Ɣ', '~qxGKqr84I\r\r', '', 0, '?'),
('\n.I', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/controller.php', 0, 'mʒm#', 'mʒm#', ':s|&S,\0*dZ~f#', '', 0, '?'),
('\n70T.颂mD', 'wp-content/plugins/elementskit-lite/autoloader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/autoloader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H+8X}X#', 'Z䠆ltkDu=sDS±ֱn׷''', '', 0, '?'),
('\n;R \rxEY', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/QualityOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/QualityOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's.OL| D,a', 'T[0\0\ZLMYkٶ\r+\0^$n.', '', 0, '?'),
('\nC9cxS', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$PPI31', 'kiPFlC8</um7H', '', 0, '?'),
('\nS \ZNo޽', 'wp-content/plugins/wp-optimize/js/jszip/jszip.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/jszip/jszip.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%LܶLWz', '"{4_h@C7>?@3', '', 0, '?'),
('\nT/\\9$YU\n͌', 'wp-includes/customize/class-wp-widget-form-customize-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-widget-form-customize-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{D*@6{τ}', '+֓zi@^F%5qZg<', '', 0, '?'),
('\n]_u', 'wp-content/plugins/wordfence/js/admin.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/admin.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǞZI g_', ', $B~\nMК6]11[TLHp', '', 0, '?'),
('\nfY4&L', 'wp-admin/images/se.png', '/home/binawebp/omsrislb.my/wp-admin/images/se.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȔB`.}''7:', 'Y"K{Ur:2JL', '', 0, '?'),
('\ngEnY>~vG3>', 'wp-content/plugins/elementor-pro/assets/js/search-form.416aa432fdfe2bcfe9b5.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/search-form.416aa432fdfe2bcfe9b5.bundle.js', 0, 'Jw<=ro\rl', 'Jw<=ro\rl', 'Ѳ_1''D":+	O)\\rR', '', 0, '?'),
('\nzŭ}{.u[', 'wp-includes/block-supports/generated-classname.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/generated-classname.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1HRO#/}', '?!jCouc3eIB=''/Ka', '', 0, '?'),
('\n{X%N8w2?M4C', 'wp-includes/css/dist/format-library/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' \nӔCb', 'Fc6X}t_Tնi-8~܁zX', '', 0, '?'),
('\n{Y)d^i^', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C	{j00mn', 'x.WmD`GueM9Go2J', '', 0, '?'),
('\n}''٩B39:', 'wp-includes/blocks/table/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U*N.y^Ϗs', 'Z>t>7^ҙ_ͧhvk', '', 0, '?'),
('\n~+fv7[<', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+s\rɄ', 'ǥ,GJ\\Uע7~"P)*', '', 0, '?'),
('\nfӅ;{t', 'wp-includes/class-wp-role.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-role.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G&c{', '{!џamT>TlAR9]O\Z', '', 0, '?'),
('\nJ>9Zۋ5YN', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-base-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-base-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''-\n2dh', 'D&ʹg}=[/2\n:rj', '', 0, '?'),
('\nb-V:|m', 'wp-admin/edit-link-form.php', '/home/binawebp/omsrislb.my/wp-admin/edit-link-form.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GB4xB3Js4', '(DA֟n,?^F;-PZ(j/#', '', 0, '?'),
('\n#x|]', 'wp-includes/blocks/site-tagline/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9s+2c1\\%\0{', 'ZkR⨈\Z5pm\\nz', '', 0, '?'),
('\nM>ct@\\l', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/section.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`%RP\rOjл/', 'h{[m"nG.PG,\r((', '', 0, '?'),
('\nNNMۑ4;p4', 'wp-includes/js/customize-models.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-models.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eTo\n:ם/0', '0Om	.>j><f:o^', '', 0, '?'),
('\nX]&F1b', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/EmbedNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/EmbedNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ҍ|&Kٽ', '*$\Z9_D܍JPeݸHs', '', 0, '?'),
('\nƉ%%\\eԖ', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-additional-information.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-additional-information.php', 0, ' Iz', ' Iz', '}neE/TS&zscKhbuYDD', '', 0, '?'),
('\na7>i', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scheme.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scheme.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rt0hªGs', 'M7yhcr]	fYNFx.jd\\>v', '', 0, '?'),
('\nyj?@J0', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php', 0, 'Դ5ϟ{', 'Դ5ϟ{', '7)*eyr5BIg''HMiu3', '', 0, '?'),
('\n	_{', 'wp-includes/blocks/audio/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L@إm_YF', 'e7KVӧidƍ9ky', '', 0, '?'),
('\n`o ݘr', 'wp-content/plugins/elementor/core/responsive/responsive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/responsive/responsive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n;lQq', 'H*<"گ]#>w;o	2[>)y', '', 0, '?'),
('\n7T	o;J', 'wp-content/plugins/elementskit-lite/compatibility/backward/widget-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/widget-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c_O\rKHXm', '?nhZ:F@ቜ:Z}2', '', 0, '?'),
('\n@g+T;V', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ίU""', ':Qo	硛,+Qj|3ό', '', 0, '?'),
('\n\rBp̭', 'wp-admin/theme-install.php', '/home/binawebp/omsrislb.my/wp-admin/theme-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-L!\0*', 'prL{sh<*d4Ū\0s>_', '', 0, '?'),
('\n@G''Σn', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-description.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-description.php', 0, '\n~lYVx', '\n~lYVx', ':J۷\\NפAg	Cv@-)	B', '', 0, '?'),
('\n:X2Lnc', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SɛmE}Zh', '-y.=U6\n68h&9#', '', 0, '?'),
('\nECn>Bshg', 'wp-content/plugins/elementor/app/modules/import-export/compatibility/kit-library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/compatibility/kit-library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p7	E', 'WB|N=iɖb~FcՖ', '', 0, '?'),
('\nGƙn\Z@1+U]', 'wp-admin/css/revisions.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/revisions.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?"Я2\ZWl', '30''jg(V>^+b5xؿ&IU-', '', 0, '?'),
('\0MsކWIrj', 'wp-content/plugins/elementor-pro/assets/js/notes/notes.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes.js', 0, '	)?{hC<a5', '	)?{hC<a5', 'v\0ŵCmXJ#N"̈́`|EiЯ', '', 0, '?'),
('\rD趗N-I\nP^', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f1[6 PO', 'tҸ\Zu|N_25$ʾc', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('d.YGx)', 'wp-content/plugins/elementor-pro/assets/js/packages/loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/loader.php', 0, 'NHrON', 'NHrON', 'nOr]Eמ(Ⰶ"ssyO08zΠ', '', 0, '?'),
('ga/''QCNu', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-postman.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-postman.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lv-p', 'SkJJ&bCǾ\0v`+!+UB', '', 0, '?'),
('8!v4', 'wp-content/plugins/elementor/assets/js/editor-loader-v2.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v2.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|sz4z9a', '8y:=lO;\rF{$`4(', '', 0, '?'),
('")(@Wt', 'wp-content/plugins/elementor/includes/controls/wp-widget.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/wp-widget.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j`YJ3QR', '&LoJe⯅=|\nn', '', 0, '?'),
('"w%_K\\u', 'wp-admin/images/wpspin_light.gif', '/home/binawebp/omsrislb.my/wp-admin/images/wpspin_light.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$n4H{', '-*znD,"aHKHrޱ~\Zy\Z%', '', 0, '?'),
('&cYD#P{+', 'wp-includes/js/jquery/ui/effect-blind.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-blind.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E\Z6yF(dߝ', 'x/ׯH#&.\ZZ(HVrѪ', '', 0, '?'),
(',+E&*tӁhgN', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|7.Q\rV', '''/.׮\rf=П&ōܐ5j!{\0WQP', '', 0, '?'),
('1\r{цnDeP]', 'wp-includes/blocks/home-link.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/home-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}ilA7|H', 'cK\nLoUTȼ\r3K	+ef=', '', 0, '?'),
('9BJMEm', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '԰cMtA6Y', 'ڪ|[K/VL?jJ>\\', '', 0, '?'),
('A`k{n/*ScN', 'wp-includes/js/dist/vendor/react-dom.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-dom.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+7\0[{t⠶nE|', 'Z\ZƷfu9N2Sr~E\nx', '', 0, '?'),
('Phui8V\0kU', 'wp-includes/blocks/post-date/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B:?34cm', 'wiܠ4إ"*L	]ϵ}', '', 0, '?'),
('S1&', 'wp-content/plugins/elementor/assets/shapes/pyramids-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/pyramids-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nS=sU+ \Z', 'BVz͋(?i1ha	S#\n', '', 0, '?'),
('Tt2i''<', 'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-archive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-archive.php', 0, '־a57k', '־a57k', 'Orh@p*e"u*y&R/', '', 0, '?'),
('Y?,>D', 'wp-content/plugins/wordfence/js/chart.umd.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/chart.umd.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b?\\ٰYgD\rz', 'Od :X RU+@9', '', 0, '?'),
('\\>\\J]hD_', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/constants.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/constants.php', 0, 'R n$u|c7', 'R n$u|c7', '<Ae5Jm	][t\ZYG&2p', '', 0, '?'),
('nC)ly', 'wp-content/plugins/elementor/core/document-types/post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/document-types/post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EzWHq''', 'Wu%_Z\\m$;c\Z:2$0AQ', '', 0, '?'),
('ob#w;Ri\n', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HoSG', 'wvөTV{$r`oN.A(D3\n', '', 0, '?'),
('p젋pŔG', 'wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|;ō+76~', ']AqVъز\\FkM"ci', '', 0, '?'),
('u>;~bGs', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qMyQJ''\r\Z+', 'u#x/K׿u98`O0', '', 0, '?'),
('Yq', 'wp-includes/customize/class-wp-customize-partial.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-partial.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm)fIf8XKO', 'Img\0W?T,m9rLmy6@y<', '', 0, '?'),
('^WYБ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js', 0, '"''@QY܉Iy\r\0', '"''@QY܉Iy\r\0', '[ԭCbSM ޤ}ctN\\"', '', 0, '?'),
('"0_fз', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sh)~GRwp,', ']傼S#`<Y', '', 0, '?'),
('loY\Z)', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=:fX-D', '`IeM	?(k7/\rZpOTt', '', 0, '?'),
(':L_r', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-io.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-io.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5iyo2â', '{Ybl1ZbOFL<M;', '', 0, '?'),
(',H(b_FO', 'wp-admin/admin.php', '/home/binawebp/omsrislb.my/wp-admin/admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WDܹD', 'WJ\ZW.m$w *T<byS$o}:', '', 0, '?'),
(']91-l&3n', 'wp-content/plugins/elementor/assets/js/packages/http/http.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y-#J..9', 'mnó"iN$Ջvpn', '', 0, '?'),
('HVեdpVp', 'wp-includes/images/media/spreadsheet.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/spreadsheet.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4\0Ṫ?', 'v)\n6Zl2В1!+	', '', 0, '?'),
('WCM&=jh', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0R5ǃi\Z[`', '"ӑ(kC(@iTI''Lƒv', '', 0, '?'),
('5Åƌm', 'wp-includes/block-patterns/query-standard-posts.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-standard-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'уBUCL{', ':Τ~&\rCF+Iq_e', '', 0, '?'),
('p+=¡\nh0', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Minify.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Minify.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|8&p=', 'ej3q1K;1|?ǮV\n#oW\rk{', '', 0, '?'),
('?%M	?N', 'wp-includes/js/dist/vendor/wp-polyfill-inert.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӶF^pt<jQ', '76Gzmsqz&Bȃ s', '', 0, '?'),
('0c\n_"ƻ', 'wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js.LICENSE.txt', 0, 'md]:oLk]Ϧba', 'md]:oLk]Ϧba', '9y+m29^F] ', '', 0, '?'),
('>QrK~', 'wp-includes/blocks/post-content/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B^{V5*M', 'lp[xu?æ\ZKW6dt}1W6oh`', '', 0, '?'),
(':,mIQB', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsByTagName.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsByTagName.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=B\n4xl''%tO', '􏜡ƶ_3&5V9u"qь', '', 0, '?'),
('%m', 'wp-content/plugins/elementor/assets/images/information.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/information.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c''sA;\\p', '"''M\rڼ1`''_Q7si油', '', 0, '?'),
('Xe/Y@>', 'wp-content/plugins/wp-optimize/images/notices/keyy_logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/keyy_logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	"o)W/', '(i.ثo?bFCEvwK', '', 0, '?'),
('\nUN~\0m', 'wp-includes/js/codemirror/csslint.js', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/csslint.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M_ϱIl', ']ih4Fò\rUWEK(Pd', '', 0, '?'),
('j1NuuuIZ', 'wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pJ?cY>', '޼b:gik2l|TiSPh\rl', '', 0, '?'),
('c"ml Ǟ>o', 'wp-admin/images/wordpress-logo.svg', '/home/binawebp/omsrislb.my/wp-admin/images/wordpress-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N%dgp', '"uj-QE\0[gLZ5MD:', '', 0, '?'),
('ͭn5Hi[{d', 'wp-content/plugins/elementor/assets/js/media-hints.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/media-hints.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2m>ag>.', 'd\07]Ҧ0,\0''9wͿ>', '', 0, '?'),
('\nڒ''c.H=te', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nsis.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nsis.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4|:M,\0"', '\rKG1֤{k%BQӖĝ', '', 0, '?'),
('\r?@ۘNl', 'wp-content/plugins/elementor/assets/lib/animations/animations.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/animations.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FUDpl "l=', 'sG[ֶWa|ֆۆAZۊ', '', 0, '?'),
('%,S9Gav', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qPWl-\Z\0WU', '<j8jR;	x (N:iuwU3', '', 0, '?'),
('$%#_U_d', 'wp-content/plugins/wordfence/views/options/option-toggled-select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	|Cw@m', '5ã\0ӊVbAŇ.Z;Mzq]', '', 0, '?'),
('*Oi', 'wp-includes/customize/class-wp-customize-media-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-media-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MGԝZܡ\0`"', 'ݑ^vBZAq\0L!qdsGH', '', 0, '?'),
('C>vm8*', 'wp-content/plugins/elementor/core/debug/classes/shop-page-edit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/shop-page-edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+#++h*>', 'qWߍJA`w4U	l', '', 0, '?'),
('D 2K|&', 'wp-admin/css/nav-menus-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N?5"zds', '獿.A\\cJ-"((R9(mj', '', 0, '?'),
('HC(\Z¤X=/a', 'wp-content/plugins/wp-optimize/templates/images/smush-popup.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/smush-popup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/;ZD', 'dE''N\r\0ؾ<[w})\r OyyWJT', '', 0, '?'),
('Ll-aV=&0w''', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/responsive.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/responsive.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0NaR_', 'W6l\ZƔPmmqEi05', '', 0, '?'),
('Q10G,', 'wp-includes/sodium_compat/src/Core32/Curve25519/H.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/H.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x} pcKO', '(H>0}8:e)ＴN/z', '', 0, '?'),
('Xf@o.o3>', 'wp-content/plugins/elementor/modules/element-manager/ajax.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/ajax.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jU1_"4W"', '!A5\\Fk\\iF', '', 0, '?'),
('dW9Ys[', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<EFC\08,', 'ktv+#?G^-閪R-Y\ry', '', 0, '?'),
('of"! =peA', 'wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UYc6<''', ']+M.JA+[''Y&', '', 0, '?'),
('stP', 'wp-content/plugins/elementor/assets/js/kit-library.09cb71ec3fbb128f4e25.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-library.09cb71ec3fbb128f4e25.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S0ރMb9Z;b', 'l_A^}bb4=Zûzj	P', '', 0, '?'),
('ws[7Uv', 'wp-content/plugins/elementor-pro/core/editor/editor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/editor.php', 0, '$8Ҩ6r', '$8Ҩ6r', ';VxpVN''7''fjs$-', '', 0, '?'),
('z)4,K\n', 'wp-includes/speculative-loading.php', '/home/binawebp/omsrislb.my/wp-includes/speculative-loading.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>''Xmd', 'Fu7K̖\\Os#⼁ǃ', '', 0, '?'),
('{Mii2n6', 'wp-includes/js/jquery/ui/effect-highlight.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-highlight.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dlۖ)S~|L', 'FzmUT**`@U', '', 0, '?'),
('z%P)KH', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/applescript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/applescript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~o,렧s%8B', '''ôR)e~2aU7;a}', '', 0, '?'),
('H_i\nZ9$g', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C2\\՘80', 'MEIe_sZx/|;Jz·M-', '', 0, '?'),
('!v])"_c8Q', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/VariadicExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/VariadicExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':БbyYmD', '0z{Jt%{o@IO', '', 0, '?'),
(']zf")*\rL', 'wp-content/plugins/elementor/core/editor/loader/v2/js/editor-environment-v2.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/js/editor-environment-v2.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';SoIKv', 'Xz[9ӝ7''In~/I	fi]', '', 0, '?'),
('!V31ts-', 'wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R&)FM(', '3Jv''<i/\n=hD2,', '', 0, '?'),
(':yAHI[t', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jlۀwA_9ah', 'e<,s1bx,.#_Ft', '', 0, '?'),
('ت(/>', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0科fPBDe', 'iV4. o4hfIdX*tK|', '', 0, '?'),
('8GT\ZУ8s', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/hooks/use-templates-screenshot.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/hooks/use-templates-screenshot.js', 0, 'hg\0+Ud5ku', 'hg\0+Ud5ku', 'Di{w^cd*	\r,ń/', '', 0, '?'),
('AFk', 'wp-admin/js/privacy-tools.js', '/home/binawebp/omsrislb.my/wp-admin/js/privacy-tools.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ȅh\ZW;K\nQj', '|9n\nȬuO/C݄', '', 0, '?'),
('w;=x$pY', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite@2x.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite@2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aOamMSghP\\5', '(\\nk:J!XX<RЈj4', '', 0, '?'),
('!=iZW', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SandboxTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SandboxTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q^G5`L	xq', 'gspy\0F{Ċ]JfEa', '', 0, '?'),
('ZuiigԄ', 'wp-includes/js/dist/nux.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/nux.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T\\q?,v', '/W\0tf\\>U2Ĉ[x֋', '', 0, '?'),
('J`X&5T', 'wp-content/plugins/elementor/core/dynamic-tags/dynamic-css.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/dynamic-css.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɊDnr', '/c&ѾSy7lŋBL''zR', '', 0, '?'),
(':Sao6h', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/README.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pUvrI-8', 'ݮTqʇ4m:K^vcI', '', 0, '?'),
('\r͛ܹ}CLR)', 'wp-includes/blocks/file/view.min.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.min.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u0{os^.j+', 'l)gLA.mH,\Z8zrX', '', 0, '?'),
('\r\Z=^ld,}uSO', 'wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W&;aaJ''W', '62Tt/YT5~¬%-c', '', 0, '?'),
('\r9331~', 'wp-content/plugins/elementor/modules/wp-rest/classes/elementor-user-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/elementor-user-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''Dvj7C]\\&r', 'ZJst8RWlbu"1_@(', '', 0, '?'),
('\rF%Mvs<', 'wp-content/plugins/elementor/assets/css/widget-nested-accordion.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-accordion.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{; La]', '_9	RF|1@:fej!?', '', 0, '?'),
('\rKdԐ=~J&\0', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-preview-popup.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-preview-popup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-CH)3x:', '_LXu{*Q&QjԤ2LǍ', '', 0, '?'),
('\rMX8dyՕ_', 'wp-content/backuply/backups-0uelYu/index.php', '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/index.php', 0, 'ySY', 'ySY', 'ݧ\\\n.nbeNY''p*tk', '', 0, '?'),
('\rNcݨl=n', 'wp-content/plugins/elementor/assets/js/notes.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/notes.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UtZ{m5', 'q*:MլuEVRQU?h3 (a,', '', 0, '?'),
('\rUjzh2/9fM', 'wp-admin/js/application-passwords.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/application-passwords.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=]!EVYS=', '$p9#o,:@|Z\0ۻ۵GU{%', '', 0, '?'),
('\rU痍F1oN]{', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ewPx8', '''f5q2mWQ4Bp.Fl\Z$', '', 0, '?'),
('\rkdAX', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/CacheInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/CacheInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ջJ	v', 'z-.{^gǇQF8K5', '', 0, '?'),
('\rxݍ^\Z<;', 'wp-admin/my-sites.php', '/home/binawebp/omsrislb.my/wp-admin/my-sites.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/tf:is', '6K\\6qXF$PB C', '', 0, '?'),
('\rzDD', 'wp-content/plugins/wordfence/views/options/option-toggled-sub.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-sub.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm_', 'RȆF\nD~H08),:llWn\rc', '', 0, '?'),
('\r|S"|n<''\\\r"', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/request-parameter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/request-parameter.php', 0, 'J̱s83"G[oIm', 'J̱s83"G[oIm', 'ݗ@7!F<T,Ug5Bqٗ}', '', 0, '?'),
('\rX+-Ta', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' O>A+=\Z,', 'UsDMÙd(\0ā~', '', 0, '?'),
('\r)򻐩eA', 'wp-content/plugins/elementor-pro/modules/mega-menu/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/mega-menu/module.php', 0, ']\\D''6?A/B', ']\\D''6?A/B', 'Mʚ"d5&B8\rPx=', '', 0, '?'),
('\rvN[B&SL', 'wp-admin/css/common.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/common.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')0c^`fN', 'DsAޙ;M>	"3L', '', 0, '?'),
('\rCif.l', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yq؅g3A', 'o!u@"L_C2"3r1IOz', '', 0, '?'),
('\rܳcTBn', 'wp-includes/blocks/loginout/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nm%HLzd7', 'Xra!Q{Q<N{"۷WtSg,', '', 0, '?'),
('\rW	\nZf2ze', 'wp-includes/js/dist/script-modules/block-library/image/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/image/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4ǹ|?ad', '7\nejbu.bG_LOO', '', 0, '?'),
('\r<: -{̖H', 'wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q9\rͳ[', 'qNCd?#\rg復ie-[b', '', 0, '?'),
('\rB>5=!', 'wp-content/plugins/elementor/assets/js/container-converter.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container-converter.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qgGC~\Zkg^	', 'tS\\BBk\\[QJGC:ejs', '', 0, '?'),
('\rҧxOzzh', 'wp-includes/class-wp-customize-panel.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-panel.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0eDů7}LB', '0zh ۅxtP)oq6%a>%]l', '', 0, '?'),
('\r::HH:d', 'wp-admin/css/edit.css', '/home/binawebp/omsrislb.my/wp-admin/css/edit.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=TsUv,3', 'T:y6mRv\n~Yd.Ϥz''', '', 0, '?'),
('\r|,IL$', 'wp-includes/blocks/post-comments-link/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v`=F@', '5wJ:{XҵE4Ɔ', '', 0, '?'),
('\r9_FxՋD', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/test.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/test.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ԇ9n<pc', '<3\\3`Qo\05&Zb', '', 0, '?'),
('\r.}T(K\\n', 'wp-content/plugins/elementor/modules/library/traits/library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/traits/library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v{)ܼh}1', '%FI\\_w0;R$=', '', 0, '?'),
('\r%%yS`', 'wp-includes/js/crop/cropper.js', '/home/binawebp/omsrislb.my/wp-includes/js/crop/cropper.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H.so', 'py,BG-t=s', '', 0, '?'),
('\r("{pq_sp', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vbscript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vbscript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Yxv]ddݦ', '\\œ([y)ir^\r4sZ', '', 0, '?'),
('\rѪ1s1=`(y', 'wp-admin/options-head.php', '/home/binawebp/omsrislb.my/wp-admin/options-head.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cmsNͺN;5', '1fk(*\rx~', '', 0, '?'),
('\rҗr׾ \n\Z', 'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$@ޯ]&', '7aP\\T"SzJ&bٸ®D', '', 0, '?'),
('\r	qcY]g', 'wp-content/plugins/elementor/modules/site-navigation/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r˄J`2T', '@_\rgD wȭT1L', '', 0, '?'),
('&k9?r ', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Directive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Directive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''N[_h\n', 'T40*މ)\rq c\\U_', '', 0, '?'),
('''obM%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/styles.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/styles.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n]-wTY^p!', '<''4ipJ65Jԧ,uF=', '', 0, '?'),
('\Zo_1\r/', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zMف+Zg}wj', 'Kw/(zZ9ٲa\\5! 3M-琋\ZR', '', 0, '?'),
('\Z^$>dPZw', 'wp-content/plugins/elementor/app/modules/kit-library/data/repository.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/repository.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q:75\\x`', '\nuʭrbH;#_Ws3bN*', '', 0, '?'),
('[)G\nyvJI', 'wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-related-query.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-related-query.php', 0, 'iyF} 9:.', 'iyF} 9:.', 'n9 x\0fxgohuRr55aZ	K', '', 0, '?'),
(':*+i*i2}Q', 'wp-includes/style-engine.php', '/home/binawebp/omsrislb.my/wp-includes/style-engine.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=S=w=:', 'vI^Y\\kSw:喅=heRs', '', 0, '?'),
('ͻٶ02u', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/templates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʀ7\nl[wĤ', 'I^c\ZPKF_5p՚2"8ȁ8B', '', 0, '?'),
('8)8k l', 'wp-content/plugins/elementor/assets/css/widget-image.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gu"\\4B؈{f2>', 'lm#pIT`{.8Wj\0ksA', '', 0, '?'),
('9j&pX', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-jf6ߺW', 'Tm8Mʃ)olSBttѷm1Z_/=', '', 0, '?'),
('?y''f8tƃ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ح.놲VF', 'v6ƾ^^)r!MLN|4w1=4', '', 0, '?'),
('COw8ºV', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/WithNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/WithNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TbS,'':D', '])qa]f@3O#sc~kI', '', 0, '?'),
('W7{(;:P?', 'wp-admin/includes/class-bulk-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-bulk-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>CnoZO', '<yJJ!jA''8te>', '', 0, '?'),
('XH奥(:Z', 'wp-admin/admin-ajax.php', '/home/binawebp/omsrislb.my/wp-admin/admin-ajax.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Mf ZxhiQ4R', '$G]4jnvEhh2\r.\n*>Y', '', 0, '?'),
('a5ͅB_s', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ytP>RaS@-', 'u{4sJ3H6owr', '', 0, '?'),
('c7f:y-\0''#l*', 'wp-includes/js/swfobject.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/swfobject.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ń7jR', 'Er)ckQ[yCχ=!', '', 0, '?'),
('fY	QOKCIU', 'wp-includes/css/dist/patterns/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n(<]wA\nN\r', '1hѸ]}Hr=|~!MtfA\r', '', 0, '?'),
('gosV;\n$', 'wp-includes/js/tinymce/plugins/compat3x/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/compat3x/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+n1oVb', 'CT(N+,TNC`ީ', '', 0, '?'),
('sn	$\\Α3#3r', 'wp-content/plugins/elementor/assets/js/packages/http/http.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ivߌxn', '`Ĥڡi	VUHP1쏖', '', 0, '?'),
('v''LixZ6', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ProcOpen.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ProcOpen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~xM	Ȥ:WI', 'HmGv)	=ú.i]59', '', 0, '?'),
('wKd#IqF!', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/section.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/section.php', 0, 'y7ؽr', 'y7ؽr', 'hycClr3?qW+K&ֲcj', '', 0, '?'),
('f4(ɣ', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"P\n:g', 'uq3ꛭAc 孵U', '', 0, '?'),
('%s\0pxsD{', 'wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xq<q\0	Jt', 'Y-OeM\\3S*#so*o3', '', 0, '?'),
('XQ-Sr]', 'wp-content/plugins/elementor/includes/widgets/alert.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/alert.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rxr}k', 'ḶѸE4(F[H+4G', '', 0, '?'),
('f-''4	L', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/barba/barba.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/barba/barba.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r衔Dl7G', '2AXi]tա ;μAyc8X1Rւt', '', 0, '?'),
('g#@:b', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-commands.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-commands.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&<˫;t),', ';K#f?4CG]\n5KZ~=2', '', 0, '?'),
('hr\Z;%e-x', 'wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GJu;QZ6', '\\MUKhQwCiVJ''', '', 0, '?'),
('(ݠ`Ax', 'wp-includes/blocks/post-author-name/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q׊TblG', '7."𜒸\\;j-h|_%', '', 0, '?'),
('\Zt0Nԡ1/', 'wp-includes/js/dist/patterns.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/patterns.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rUntok', '9sٗ1e0JF_\0|Jp+', '', 0, '?'),
('鶏T"B', 'wp-content/plugins/elementor/data/v2/base/endpoint/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X4D)^-[', 'WmHYs~c0!yWk$~\\V', '', 0, '?'),
('o+F0Hn3hJ', 'wp-includes/blocks/gallery.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u eᬧ>', '}{?$J5?(4Z{{F؈w$Rs\Z3', '', 0, '?'),
('ZrxS\Z7b8*=S!P', 'wp-content/plugins/code-snippets/css/edit/_tooltips.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_tooltips.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UB\r6-Mt', '	C,	de9XÞZF-52x;;', '', 0, '?'),
('SQkIt""(H', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lˬ2SoP+)', 'c[[w4k#\0\Zt}\\]\r', '', 0, '?'),
('("/󝜈fa', 'wp-content/plugins/elementor/includes/widgets/common.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/common.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G/^Gހ$*C4', 'H̭s=2deaA\\', '', 0, '?'),
(' CY', 'wp-includes/pomo/entry.php', '/home/binawebp/omsrislb.my/wp-includes/pomo/entry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%Pg''O$', '<d+w*M$?5CvԌ', '', 0, '?'),
('>M8 ٵ|', 'wp-includes/images/crystal/archive.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/archive.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SI0An', 'L%XO+Aa!S\\܉&', '', 0, '?'),
('HdoCZ', 'wp-includes/sitemaps/class-wp-sitemaps-index.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{Zɬ>MhʢhO', '"lEUd(\ZZ#TO \r>gW', '', 0, '?'),
('A{}', 'wp-content/plugins/elementor-pro/core/app/app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/app.php', 0, 'ơ''jP/\0', 'ơ''jP/\0', '	uwf:heIx#hLAd(MRN+n''I', '', 0, '?'),
('"\rJ\04''i', 'wp-admin/js/password-strength-meter.js', '/home/binawebp/omsrislb.my/wp-admin/js/password-strength-meter.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʃD)an', '`)CELdX\\&F-V7+1SA', '', 0, '?'),
('Pvχ{ݍNQt%', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AI¥\rb/X', '8mת	''+es	Qw`.U|h', '', 0, '?'),
('pY*', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gruvbox.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gruvbox.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZY\r``*!''', '?\\ǒ6DYvZ-<SL(\0', '', 0, '?'),
('\r~+l2', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicyInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicyInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u:| ', 'AJ>txyVez@', '', 0, '?'),
('6=CTc24.)', 'wp-includes/abilities-api/class-wp-ability.php', '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-ability.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^$1<=sI><y', 'X\nS&:[j z*tq', '', 0, '?'),
('\0ߴ:HP', 'wp-includes/css/classic-themes.css', '/home/binawebp/omsrislb.my/wp-includes/css/classic-themes.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{5gj\rp	', 'p8e@eS\0,}Chw\ra8\073k/', '', 0, '?'),
('*(lmJ	V', 'wp-content/plugins/wp-optimize/images/notices/sale_newyear_24.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_newyear_24.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I\r"n9٦##\0', 'OrF6,Ng}`ƻ|lz', '', 0, '?'),
('	L9ᐛ7fy', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '35&eg\0Y', '?JOSȹ7vf*wɅx', '', 0, '?'),
('\Zd-', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B7&]NDd', '@HM;ﺾ5 i''o5V', '', 0, '?'),
('''haU\Zq`ug', 'wp-includes/blocks/navigation-link/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IٞML=g', ';XjwO]^+{', '', 0, '?'),
('*V4o', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/step-2-shape.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/step-2-shape.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I1A\0~', '\0jQʯV&A_0;kq[.D', '', 0, '?'),
('3O`uwEsT', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/SameasTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/SameasTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N@cC6;M+o', 'ErI/ wہs߉O9fB', '', 0, '?'),
('6f7wcA\0', 'wp-includes/assets/script-loader-react-refresh-entry.min.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-entry.min.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '¡K)ayV', 'B"Oo	z)I@I"cIʞ3u', '', 0, '?'),
('61UځyO', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1~-i+\Z', 'T3ױ,l40ooy]', '', 0, '?'),
(':J:a2\nC$D', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2\0\nuZr', '$kln!|$\nU`Lw9Xqee', '', 0, '?'),
('<dɘ''?', 'wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a `zgV~Y', '4\r\nܸ\reUBT]o`+', '', 0, '?'),
('CǜcI3V', 'wp-includes/blocks/post-time-to-read/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	oauk4"', ' 1!\0x$aӑNJGݖu', '', 0, '?'),
('JE&a9J߬?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hqAi', '	q68xօ\\s\rN~.Zخ["', '', 0, '?'),
('N/ܗ ', 'wp-content/plugins/elementor-pro/modules/video-playlist/widgets/video-playlist.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/video-playlist/widgets/video-playlist.php', 0, 'Vxes&`y:0̒', 'Vxes&`y:0̒', '\n2D#}g"1zŒ?Pb2', '', 0, '?'),
('Q*Ӂt(WA', 'wp-content/plugins/elementor/core/utils/isolation-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/isolation-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pxXw `j]-A', 'L1_t5"R`x"%.\ZR+\rH\r', '', 0, '?'),
('\\AV*籿', 'wp-includes/js/jquery/ui/slider.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/slider.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''w4]*k\\', 'Qr0moY_N5TvAs9\r)', '', 0, '?'),
(']˔r̵''?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/checkbox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/checkbox.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*-RUd"cfLlXA', 'X(FrkpX`0Ej\\O;܅C', '', 0, '?'),
(']\r1\0q ', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ER3X95wR@*$8', '\\~HiwzIZ)۰0GDBY', '', 0, '?'),
('fH^u*', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-terminal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-terminal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x-j_,;ôvg%', 'ntڰd%yhq/i?ѫ', '', 0, '?'),
('pClpl3', 'wp-includes/blocks/post-comments-count/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\0cnLge!', 'c{mAY''nvW!eA', '', 0, '?'),
('.,"NUz.E\Z', 'wp-includes/blocks/term-count/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W2bP1\r;3', 'ۅyzݫ\ZYMCJ', '', 0, '?'),
('5;{˄9s', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/featured-image-data.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/featured-image-data.php', 0, '8T%\rN6', '8T%\rN6', 'W[=D>sŮ8 ', '', 0, '?'),
('cnxԺ|', 'wp-includes/class-walker-category.php', '/home/binawebp/omsrislb.my/wp-includes/class-walker-category.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U?Dԝ>"6m', 'Ko_ƖRjDܩzVL5\nzV', '', 0, '?'),
(':_j*Pi', 'wp-content/plugins/elementor/assets/js/editor-loader-v2.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v2.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!H"2si', '.?CKvvSsFH(\n', '', 0, '?'),
('(`gjms', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AndBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AndBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3k|', '*IfYr:qV}', '', 0, '?'),
('nNd', 'wp-includes/js/hoverintent-js.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/hoverintent-js.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' p.`u76?', 'Y!:\nAː	ګZg,=|', '', 0, '?'),
(']*.>`Ef', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kFh瀁1-', '6!omݎ^.^@˨v7	I}', '', 0, '?'),
('ç` \nB', 'wp-includes/blocks/post-date/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=aV', 'C`bH&2*6Թ(]3\\nڶ}', '', 0, '?'),
('TPEN85Kjx', 'wp-content/plugins/elementor-pro/modules/wp-cli/license-command.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/license-command.php', 0, '9Bq7E4', '9Bq7E4', 'vr%I/S3\n*N)t''C<_Xj', '', 0, '?'),
('?I&uQQ', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z-ZOz\ZH', 'aetΎY/K!\ru>', '', 0, '?'),
('ݡ=NxK`*', 'wp-content/plugins/wordfence/lib/wordfenceClass.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceClass.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N{6kjN;I', '1y&98]^;m>''N', '', 0, '?'),
(';w#,r}', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/no-image.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/no-image.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''K_l''nPd', '/gn\rGl,*u?eD:3', '', 0, '?'),
('i})]M', 'wp-includes/blocks/term-description/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>DS1*', 's+=ǃttGwD[4	)', '', 0, '?'),
('ϊ-o1\Z	חl', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',{*cHX(kw4', 'IB!Jd~s\nI*uy3?=9G', '', 0, '?'),
('ѬpF軹䝛爝	', 'wp-content/plugins/elementor-pro/modules/custom-css/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-css/module.php', 0, 'Ag٤\\', 'Ag٤\\', '9]dx8Myl&8TTۗ2]ްhI8', '', 0, '?'),
('vOxk5', 'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-related.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-related.php', 0, 'XiϩpA3~Y', 'XiϩpA3~Y', ',BUiL}Lz9WTWP', '', 0, '?'),
('^Gu+', 'wp-includes/class-wp-scripts.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-scripts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?\\S''CTD', ']4iuf}Q6.7ND!:', '', 0, '?'),
('rJ<p>Z', 'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o\\2b,R', 'ʦw;2g/	o(@\Zﵫ>ؽs;', '', 0, '?'),
('&/dbdq2/', 'wp-admin/includes/class-wp-community-events.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-community-events.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ތGj+y', 'XԅF{GDezCDR\r{q', '', 0, '?'),
('%w45X泞', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't^I'']!', 'Ǧbt5fckdm', '', 0, '?'),
('T:rG3nh', 'wp-content/plugins/code-snippets/dist/editor-themes/material-darker.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material-darker.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TتVmk(7', '5|+Y&lfF_ǶeC0Sn	D', '', 0, '?'),
('vjk-', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/users.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/^Vuݫ', 'j~&MnbOGb;ڟo', '', 0, '?'),
('\0]avCY', 'wp-includes/class-wp-walker.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-walker.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+d\\-$5', 'jWQOWrSU *xd؀Kj', '', 0, '?'),
('?HhD0	', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(j[}B yVyKR', ',4AX$ssyEmPY<', '', 0, '?'),
('NVԱzZ', 'wp-includes/js/jquery/ui/effect-shake.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-shake.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1P=O', 'w5 4nWe4;K!XX', '', 0, '?'),
('	gbϗ ', 'wp-content/plugins/elementor/core/files/css/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\n=)CE', '?ew+''a''6K)	f0', '', 0, '?'),
('\n\0h;ptc', 'wp-content/plugins/code-snippets/css/edit/_types.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_types.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1\r#\n%vL', 'kh{U5iDlR2me&g', '', 0, '?'),
('z\03hd*', 'wp-includes/blocks/post-template/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@2Mzf\ZAVc\01', '[Mz=M1p`KvUB''{U/L=', '', 0, '?'),
('#l:\0"4QN', 'wp-content/plugins/elementor/assets/lib/animations/styles/swing.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/swing.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3%pE5', 'B#aV*^a\\;^$g3-Y', '', 0, '?'),
(')_J', 'wp-includes/js/media-models.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-models.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f\0f=>', '+mZ Ֆ4D5>\noCm', '', 0, '?'),
('8J]nT', 'wp-content/uploads/elementor/screenshots/index.html', '/home/binawebp/omsrislb.my/wp-content/uploads/elementor/screenshots/index.html', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('8$\ZcA"v', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-database.php', 0, 'y@eN/k`', 'y@eN/k`', 'M(ن5WT_YU+e7P{Ẍ^', '', 0, '?'),
('=[:\r&FE', 'wp-includes/blocks/video/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y.}i/', '3ހZgͨ9ԮZhIo', '', 0, '?'),
('?϶^7:y', 'wp-includes/blocks/paragraph/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ll@;''v@U:', '۩P(}U-\0\0rAFkSA,%', '', 0, '?'),
('B8dYFH=%', 'wp-content/plugins/wp-optimize/js/wposmush.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wposmush.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vr2쇻ގrd', 'auCȊvEmӠ,Frf{', '', 0, '?'),
('G<7et/W', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[f0Lş\r{VW', '''&ܔ[m`ϊc2E%WGW䉷', '', 0, '?'),
('L}b&۵b', 'wp-includes/blocks/separator/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G:.MLTJ', '}!o;eƧ(]', '', 0, '?'),
('X"uE`(\r', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('ZΈtQYJm', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-move.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-move.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_&~"4#', '\r\rf0\n>9n6g!xW5R', '', 0, '?'),
('`&锥~K3/d', 'wp-admin/css/login.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/login.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Kg&', 'άUr:ul;.^hs1z;`٩ӱ', '', 0, '?'),
('mȥ~', 'wp-content/plugins/wordfence/lib/wfBinaryList.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBinaryList.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-=e;v4iڑ[R', 'Iv_1ZO)Li\Zl$߉', '', 0, '?'),
('nĮ7kA', 'wp-includes/css/dist/edit-site/posts-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nV@4ȼ4B', 'Fܕ)6DKФ3~\\', '', 0, '?'),
('yz`4Xd|', 'wp-content/plugins/elementskit-lite/libs/template/loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template/loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KT\\P\0ѷ', 'L&Υ/>֊u,wgph$', '', 0, '?'),
('n]wsNF*>', 'wp-content/plugins/elementor-pro/assets/js/editor.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/editor.min.js', 0, '.b%$^<,<yp', '.b%$^<,<yp', 'aR.9Q{޴MbM8K', '', 0, '?'),
('ґ-\r{,', 'wp-content/plugins/wordfence/lib/wfCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'نaAg5ZS"', 'Dg]<M*"LEjN8/d\na', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('~L*,<:', 'wp-admin/includes/theme-install.php', '/home/binawebp/omsrislb.my/wp-admin/includes/theme-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R#luA', '''P֔\n3tǜV[<', '', 0, '?'),
('M{B[F1', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/src/ImageMimeTypeSniffer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/src/ImageMimeTypeSniffer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '݋RA˙"', '2!@*>y38c)\n', '', 0, '?'),
('Sx4@owN', 'wp-admin/js/widgets.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}Ah%Z2v', 'O嶖3HD@R\\*.RP', '', 0, '?'),
('l*lIO', 'wp-content/plugins/wp-optimize/templates/images/lazyload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/lazyload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X41-', 'G!1Oi3# ;<zCkɛ8s', '', 0, '?'),
('6,q', 'wp-content/plugins/elementor/assets/js/admin-notifications.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-notifications.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4[[8]Lڱ)7', '[&>}8	,a8¿dح>.Rb', '', 0, '?'),
('ڤ& MKQo?', 'wp-admin/images/freedom-2.svg', '/home/binawebp/omsrislb.my/wp-admin/images/freedom-2.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '" 0gH>D', '"@YD]\\qw?\09B*7', '', 0, '?'),
(':m[ݢ:#', 'wp-includes/l10n.php', '/home/binawebp/omsrislb.my/wp-includes/l10n.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' u=}I-', '#A58AƲF''薯i\Zz/+', '', 0, '?'),
('I\\jxg', 'wp-admin/images/date-button-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/date-button-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?a09JQ\Z', '*Q_(G:*ηd.', '', 0, '?'),
('УH5Jxf1y\0u-', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\01CBSY|', 'sGw{\0m\0)5i$`\07', '', 0, '?'),
('fת+\\f', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^s_垵{', '\ngl疝ףJ0ERV', '', 0, '?'),
(';i0J~', 'wp-includes/blocks/columns/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z.\n=Z؟y', '|_0Gn5f_Nx9EL\n6T', '', 0, '?'),
('zIʳT=sa', 'wp-includes/blocks/comments-pagination.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#IcA|=', ':B`yf P (D{z', '', 0, '?'),
('j7r[,Z', 'wp-admin/upgrade.php', '/home/binawebp/omsrislb.my/wp-admin/upgrade.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hT\rlLzx|', ')3g@_&8U`Yi\\y', '', 0, '?'),
('\r)1Fqt[', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__toString.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__toString.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2CnT', 'wi$Zk\\v&<	V<w', '', 0, '?'),
('4B\07qoBo6', 'wp-includes/blocks/rss.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ve,/]', 'Z:$\ZԷnE394`\\`j!', '', 0, '?'),
('\Zlm@', 'wp-includes/customize/class-wp-customize-date-time-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-date-time-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U̯DkuETp', '@Km0EI5P$Jő!', '', 0, '?'),
('-''gP\\', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9V#ҹ4', 'GpfHv\Zx81C[4A', '', 0, '?'),
('&V9ҕM', 'wp-content/plugins/wordfence/css/wf-global.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-global.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '練t॥', 'Ex^z1''R IqO9b-ȹ', '', 0, '?'),
(',d,+m', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/elementor-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/elementor-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~uhtȽ', 'me߾''e\\67\0Sr疃', '', 0, '?'),
('0& \ZW', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/import.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/import.js', 0, '$t5''u', '$t5''u', '}UXAގ1~ޙ7((8', '', 0, '?'),
('2tu6OG)%', 'wp-admin/contribute.php', '/home/binawebp/omsrislb.my/wp-admin/contribute.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g[AC_z', '2CֆIq͙6j$', '', 0, '?'),
('3W5Efj', 'wp-content/plugins/code-snippets/php/admin-menus/class-welcome-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-welcome-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D"mD0z*`', 'PD!-~%A*7b', '', 0, '?'),
('@\npw/&', 'wp-content/backuply/backups-0uelYu/tmp/index.html', '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/tmp/index.html', 0, 'f~\n', 'f~\n', '#xx=\r"Y*7', '', 0, '?'),
('D8hFޛBViR', 'wp-admin/css/colors/blue/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T+Y0N~,dx', 'ZҸȻJ1m0܀H>\Zh', '', 0, '?'),
('F#N&&v', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cLVf', '--A\\λzde1?\00R', '', 0, '?'),
('L,\Z"\0Cʡ8y', 'wp-includes/js/dist/primitives.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/primitives.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q?M=ۅ-rw', 'E0c=Ɠ"9x!$#,T', '', 0, '?'),
('[FT|S', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/r.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/r.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KU/nR^%z', '9R+jQю߰!2ݳ*DAQ', '', 0, '?'),
('ejy9;', 'wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X}>Le`Ghg''', '˛)μG3.yfHy3_vHF', '', 0, '?'),
('iWwٴ\0', 'wp-content/plugins/elementor-pro/modules/nested-carousel/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nested-carousel/module.php', 0, '''I+V-k$	', '''I+V-k$	', 'ퟰhЭ=y@d|>', '', 0, '?'),
('j׻q.*;2', 'wp-admin/css/colors/sunrise/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']\\P_SP', 'Q\Zkf#J4f&޶#<O', '', 0, '?'),
('wesi<OJ%', 'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(^F;bi', 'U]Y\nAܩ5h\re1I*_p^', '', 0, '?'),
('jG0%LS\rt', 'wp-content/plugins/elementor/includes/widgets/testimonial.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/testimonial.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*A*PfSY''', 'y\rKƨGےHQܲ;jso', '', 0, '?'),
('>`P@߹', 'wp-includes/theme-i18n.json', '/home/binawebp/omsrislb.my/wp-includes/theme-i18n.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1+yEeI', 'ڲ&DoCUdTOjI', '', 0, '?'),
('i?Gd#5', 'wp-content/plugins/elementskit-lite/modules/layout-manager/layout-list-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/layout-list-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n~cy', 't2ߩ''r,kHiX.:mv_n:AW`', '', 0, '?'),
('aov_]6X}h''', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php', 0, 'u<Ӗ2`8}!', 'u<Ӗ2`8}!', '^K%I/ױ/DĬ/h', '', 0, '?'),
('X(0FnI', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/uninstall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/uninstall.php', 0, '\ZtwXBB', '\ZtwXBB', 'lY"Լ)DBZ夫-z7K', '', 0, '?'),
('Zd*Yژ', 'wp-content/plugins/wordfence/views/options/block-all-options-controls.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/block-all-options-controls.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iwٻIA{[', '/oѶωOmy\ZwnJɋ', '', 0, '?'),
(')-hWҎ=/h\r', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c_cpp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c_cpp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']2JG', 'ں1jgs|UѾM&', '', 0, '?'),
('rW3᥾V', 'wp-admin/css/color-picker-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/color-picker-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!ժudǵL_', '=؍;@SFXEwtEyBmg6ㄼ', '', 0, '?'),
('g@\r9bΪW', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7FH\r', '3{a\rICWfqW\\@^=', '', 0, '?'),
('UyN]M$\Z', 'wp-content/plugins/elementskit-lite/modules/controls/widget-area.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/widget-area.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fJւm|-l', 'll\nqlkP\\Lc{''', '', 0, '?'),
('	DO*$;', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd}Vtrvt', '\\&EBP5##ٷ ֺTI', '', 0, '?'),
('zL=/ݺ/\n[', 'wp-content/plugins/elementor-pro/modules/theme-builder/admin-menu-items/theme-builder-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/admin-menu-items/theme-builder-menu-item.php', 0, '՗9n	vl[', '՗9n	vl[', 'M#OBB؉\ZVrt4', '', 0, '?'),
('qg?X ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sponsor-needed.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sponsor-needed.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'noir ', 'p{[5+S)8T+PKDUL@', '', 0, '?'),
(' -W>1 i\Zr', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php', 0, '\n\reaLE', '\n\reaLE', 'z~Uf4zm\\R+r', '', 0, '?'),
('7*i&/O', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-textmate.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-textmate.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B&֓9҄0;', 'TM"̼\rnh9GYsW if«', '', 0, '?'),
(': aN_\rv5_', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/single-elements.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/single-elements.php', 0, 'e$Gd"N', 'e$Gd"N', '>Zf_Cu+WLրumw5D', '', 0, '?'),
(':X2M~', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '24vLhN!2|', '3iA(pGDڔ', '', 0, '?'),
('<e"', 'wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Oڏ36\r"5', 'ab@/xV&2b{x_G\0K', '', 0, '?'),
('Cy8''a', 'wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q~f"', 'p,-gWԎW.cEM', '', 0, '?'),
('L8\\ݼ+', 'wp-admin/images/imgedit-icons-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/imgedit-icons-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',''6Ut', '?؎).l%<(_ 6`^c7', '', 0, '?'),
('R''2D.', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/PhpIniSizes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/PhpIniSizes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TƗ݇{	:^Y', 'N(^(z1_omRbNᛌ', '', 0, '?'),
('mñ~R?', 'wp-content/plugins/wordfence/views/tools/options-group-2fa.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tools/options-group-2fa.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o\n20\0', 'aGִ\nOk&1`3*ҿf_W', '', 0, '?'),
('p۞2N<:Z7r', 'wp-includes/js/tw-sack.js', '/home/binawebp/omsrislb.my/wp-includes/js/tw-sack.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jYHW1', '\rh(7QZi;OKk;#DwEo<H`', '', 0, '?'),
('tўZ C2', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')O"\n\r7g~', 'wU|c0q5vYI9g', '', 0, '?'),
('u)8FG9C(', 'wp-includes/js/wp-ajax-response.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-ajax-response.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dfW)iMv]', 'ÚAGy8/OǫY>\ruz1', '', 0, '?'),
('uJ+)ܮv@', 'wp-includes/blocks/post-comments-link/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J-Ж\r', 'z5;~Ԑ7uXM5\\o=|\n', '', 0, '?'),
('{\r~7_i=', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B	6B', 'q''G	[+`bAwԱK', '', 0, '?'),
('_,gc/', 'wp-content/plugins/elementor/includes/managers/widgets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E4٨Ό', 'tMĤ^uмׅEwHTx+', '', 0, '?'),
('&OZ=Ds.', 'wp-includes/blocks/search/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0<IT]\0Z', '&sva&m\Z~<ݕ~UV', '', 0, '?'),
('cO@/lM', 'wp-includes/blocks/separator/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E`fʐE', '\n~ڹ`7|pP*6p.', '', 0, '?'),
('.:0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gcode.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gcode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a\\ݷOuc', '0Jji˪Fx=Td}PfpE\rh($', '', 0, '?'),
('9~\0{@', 'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '®uM', 'JEzٙ6)P)\0', '', 0, '?'),
('c4(9ҥw', 'wp-content/plugins/code-snippets/dist/editor-themes/abcdef.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/abcdef.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ri eP|8͹Y ', 'Bh;4Ia-nk.r', '', 0, '?'),
('Clo', 'wp-admin/nav-menus.php', '/home/binawebp/omsrislb.my/wp-admin/nav-menus.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2	"59qjIo', '.0US*;9!u[1L8XT\rv', '', 0, '?'),
(',;i', 'wp-content/plugins/elementor/modules/notifications/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notifications/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<"s.Jk|e${h', 'Z\n_0\\i@PهDo2cQe', '', 0, '?'),
('[s&iu)n', 'wp-includes/blocks/video/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2\0k!GH', 'j36rj l2@u5k+D', '', 0, '?'),
(',6\nT)D,]hKK', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N8:q*', '$qG!ǛQ	ؙ$HE)K7y', '', 0, '?'),
('usz,', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĖrK!(', 'אBm'',98,1gszV', '', 0, '?'),
('&	Ytz(\Z', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{3"\\Enj', '"{x󈸮qc*ׂNoh9m', '', 0, '?'),
('`1ܸQ%', 'wp-content/themes/twentytwentythree/templates/archive.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/archive.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dbh', 'Oi!GM_QQ<}}E[W_^>', '', 0, '?'),
('a3>\n+|4G^', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ChainCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ChainCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a	8\nC.*', 'NKR0EwFR3neu', '', 0, '?'),
('I<UCMdZ', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xq=o-ɆJ', '\0N64gAܮH!^Dۙ*', '', 0, '?'),
('5{hȚ`H(:O&', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ѯjoNb\\Ka<R', '@2)7\n\0<\nBc]\0z4', '', 0, '?'),
('-i>bs1', 'wp-includes/js/jquery/ui/resizable.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/resizable.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<\ZJg>[ ', 'P-sBIJ1ށWC', '', 0, '?'),
('\ns7a\n[w-', 'wp-content/plugins/elementor-pro/license/updater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/updater.php', 0, 'bwj\ngܱ', 'bwj\ngܱ', '[ƕrY:9w^RZ?eܖ', '', 0, '?'),
('"@/Ax9WU\0', 'wp-content/plugins/code-snippets/dist/editor-themes/night.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/night.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y,Z"?͵|^h', 'P!Igp)t?ȅ1~''@', '', 0, '?'),
('+A.ɍI@', 'wp-content/plugins/elementskit-lite/modules/dynamic-content/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/dynamic-content/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@Hvi', 'ɘ`j|E"z+IذܸCy\\#l', '', 0, '?'),
('KTzNh[3\n', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Packer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Packer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wi+|ܭ', 'y0mk݈>Z\0"ޱ٦f!Wzi5', '', 0, '?'),
('XʑL[X\rM', 'wp-content/plugins/elementor-pro/license/assets/js/admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/assets/js/admin.js', 0, '[K>rZM`', '[K>rZM`', 'UWA=5,`Ǿᆬ]', '', 0, '?'),
('c ȵE9jz[', 'wp-includes/blocks/code/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\r D-\ZBq', '9dXׂlǅ昖e', '', 0, '?'),
('hoV!%,M2', 'wp-content/plugins/elementor/modules/floating-buttons/control/hover-animation-floating-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/control/hover-animation-floating-buttons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@k;vZ', '2=9ƍZ+-$HKR`2', '', 0, '?'),
('sd^gne]o', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=Ebca;;Ʉ', 'WdpƟ\npJ''Rj%\\3', '', 0, '?'),
('w7v+q1\Z', 'wp-includes/blocks/list/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wl(>߻Z', ' /Zw=uiKwr$VϞ', '', 0, '?'),
('RK(F^dC', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/url.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/url.svg', 0, '6tzv''ҕH', '6tzv''ҕH', '.rV]Xp"Bfd&_', '', 0, '?'),
('ȶ\n={h3i&', 'wp-content/plugins/elementor/vendor/composer/installed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/installed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>)BE2ն', 'Ήiԏ\rs^V#6y#Fs)W[@', '', 0, '?'),
('KS+e׎A@', 'wp-admin/css/colors/light/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1`:%d', '''GZX*Q#	]{CD', '', 0, '?'),
('Y7y6+Fr', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/pages.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/pages.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_6*궎LF	?ٯ', '[7(j?IbՓew|emjZ	\r', '', 0, '?'),
('SCHA>tTt', 'wp-content/plugins/code-snippets/js/manage.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/manage.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',6b\n{V1', 'Üw<2_\n>;*nHeq', '', 0, '?'),
('Fe	57[', 'wp-content/plugins/wordfence/lib/email_newIssues.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_newIssues.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FzQ} 0', ']ǛcIT)ͣxn%}ImFb', '', 0, '?'),
('3W]	BmpN0', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event-log.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event-log.php', 0, ',ߛfp', ',ߛfp', 'v߷_pHQhDpaw56N', '', 0, '?'),
('(-|_4', 'wp-content/plugins/elementor/assets/js/e5d6feb1b1d6cf52126f.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e5d6feb1b1d6cf52126f.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vCqӆUbL', 'oP/z;FY&坴1ϷJ`', '', 0, '?'),
('UNEAgt', 'wp-includes/js/customize-selective-refresh.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-selective-refresh.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CqMs}ؾ', 'yʏ0`Zݹz''ա~px~Q1I', '', 0, '?'),
('N LIG.8', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scheme.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scheme.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~e魩"{O7kI', 'fg2Z~E7\0ߍ\ZbayBL', '', 0, '?'),
('ĩ*g;bpn5`(/[', 'wp-content/plugins/elementskit-lite/modules/megamenu/views/options-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/views/options-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zӛCe?', '3) whBܞ.V', '', 0, '?'),
('ǙG4|@Z/A', 'wp-content/plugins/elementor/assets/shapes/clouds.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/clouds.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J4^uR5g', 'u\ZnDAcl̢V', '', 0, '?'),
('Ao!Vų`v', 'wp-content/wflogs/ips.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/ips.php', 0, 'lCdb.˴v', 'lCdb.˴v', 'Z][WP},7*q\nƑ', '', 0, '?'),
('ם4@}Qnۤ&W', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-uploader.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-uploader.min.js', 0, '鑠^ߍ', '鑠^ߍ', '4HLFrpcyXe4\\yv', '', 0, '?'),
('vu=t{@VTN', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/hjson.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/hjson.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8''YIѺd\\Ċ', '	]Jp1HrʵBqr.	0', '', 0, '?'),
('p\\6y', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<mLRwƀ', 'Cw?du\0r5''[6eNc#|*', '', 0, '?'),
('yK<Ӻ\r2', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F{bcS6ޥ}ux/', '!YAw}̕(j-gb,', '', 0, '?'),
('tYSQ/[RC', 'wp-includes/blocks/gallery/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x>', '`Zd.yuسvyn<ޑuN', '', 0, '?'),
('3kv2''N', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&* ;mQ', 'jFO.-{LH2_ʋT]', '', 0, '?'),
('*Rv>&p', 'wp-content/plugins/wp-optimize/templates/pages-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/pages-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HP|/|˓\r', '\\=!1reAM&X''a<)', '', 0, '?'),
('2ܨ\0\0 ѡ', 'wp-content/plugins/wp-optimize/vendor/composer/InstalledVersions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/InstalledVersions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gnWjq̘', '|=\r..[Q8K"JF@5', '', 0, '?'),
('\ZOÊ ==+I4', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gKe!\0\0XEv', 'F73}o"[>9nfOM}', '', 0, '?'),
(' GZ3ApkY"', 'wp-content/plugins/elementor/core/debug/loading-inspection-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/loading-inspection-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i[jJ9&A', 'mFt;/t	j{', '', 0, '?'),
(' oƕt_\0.', 'wp-content/plugins/wordfence/views/options/option-switch.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-switch.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iiY>A٠', 'n8:$ר+"z2񽂤-H', '', 0, '?'),
(';Da?Od', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/preview.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/preview.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=Ud0A-', '&SvUS*IoSƣ[>7³@?S7', '', 0, '?'),
('>J˧dz', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7FH\r', '3{a\rICWfqW\\@^=', '', 0, '?'),
('?''OlmG6', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lYZiਆ3\02[', '(A#F~+FghS.b', '', 0, '?'),
('NH4Tt', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W[\nL͊DV', 'Kxe&hLupHnb/', '', 0, '?'),
('\\\Ze	)Up', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȑH\Zb>VDR2', 'rћJԑI/\nOY}xņU ', '', 0, '?'),
('^p\0j#"Ĉ', 'wp-includes/css/dist/block-library/elements-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sHH㑡 ', '/hLLʭShHJԺ4  "?A@', '', 0, '?'),
('bq&D', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jssm.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jssm.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd,XѥAѮGy6', 'Eѐ]^@zǼuABaIhM', '', 0, '?'),
('w+\02R', 'wp-includes/sodium_compat/src/Core32/SecretStream/State.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/SecretStream/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zjo\0y,*}c', '2p"Wjslf&S@[\\"W', '', 0, '?'),
('{#(Z0<', 'wp-content/plugins/elementor/core/admin/canary-deployment.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/canary-deployment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h-\nOO!', '^fHV_R֡up', '', 0, '?'),
('5Cdj', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ImportTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ImportTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&L뼯BE&{|:', 'NmTFYPm9]TG7?b9>', '', 0, '?'),
('"VL', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/escaper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/escaper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$*Pi', '44\ZD<\0kƝj%3]o?[.', '', 0, '?'),
('-B|tS^', 'wp-includes/customize/class-wp-customize-nav-menu-section.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԡP\n}$', 'vG~?t7\0hR,|]9p.Jw', '', 0, '?'),
('3kO;{d', 'wp-content/plugins/elementskit-lite/modules/layout-manager/layout-import-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/layout-import-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!XUJ*fDA', 'DT.Y&SOQ?<@ʿ[', '', 0, '?'),
('-92g', 'wp-includes/SimplePie/src/HTTP/FileClient.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/FileClient.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '練Q!Z', '#c\\ImM׀PJ0\0*(g J;\0', '', 0, '?'),
('v4,f3', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O+ /l(', ';̏.$ ''.*K$ؽy-bh', '', 0, '?'),
('˥+̚', 'wp-content/plugins/elementor/includes/settings/settings-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/settings-page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i*VHɟf]', 'h1\njz3,49F)', '', 0, '?'),
('΢S˪\nBV"', 'wp-includes/fonts/dashicons.svg', '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_3$_n5X', ';ʐ''84aOoY8-U62Kqq$Bx', '', 0, '?'),
('Mֻ\ZV`ͭ\\6', 'wp-content/plugins/elementor/includes/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a_{N\rD4MB', 'o=c\0SRޜvb߿M\\ƿ[', '', 0, '?'),
('w\Z#f4', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-eclipse.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-eclipse.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4L\\O', '}7\nC9Ņ`INDU\nQ3K', '', 0, '?'),
('\\h\Z)Ġ', 'wp-includes/blocks/paragraph/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IZZZe\\t', '͖xI@:p4Qw쮌=]Z', '', 0, '?'),
('\n5zPE4Z', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php', 0, 'Kq;M&,Dt', 'Kq;M&,Dt', 'кp\n6	Lc\0lTN􏧩h|', '', 0, '?'),
('*Q.	-c%D', 'wp-content/plugins/wordfence/lib/flags.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/flags.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ic磭c-', '8YCO0j{\ZxDĖxO', '', 0, '?'),
('[s[f#|$u', 'wp-includes/PHPMailer/OAuthTokenProvider.php', '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/OAuthTokenProvider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!EfT5йs-\\', 'SRuW?,tꔄW$', '', 0, '?'),
('`,+?4E:', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/IOException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/IOException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd^ҪlՁ[\\$', 'z>ZL7܃nۻC4k2&', '', 0, '?'),
('\n	MI~YEO]', 'wp-includes/blocks/post-featured-image/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YIQצr2N(', 'TxHNJY<!?vOBzZ', '', 0, '?'),
('Ns''j3L=', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(C9?d_', '+kRLIZ,gDLjS%sh', '', 0, '?'),
('(a+n)%8[]', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '->.~npR	', 'rͲI+G7\0{J#SYXa', '', 0, '?'),
('ܡ9u_\\\n9''', 'wp-admin/css/color-picker.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/color-picker.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&v8r\r:', 'գmcl/''op\rV,>{y', '', 0, '?'),
('''yo)_', 'wp-content/plugins/wordfence/lib/wfAuditLog.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAuditLog.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f(~M]%', 'gt7dpfj0Rn9;', '', 0, '?'),
('KUg0MU/ʇ', 'wp-admin/admin-functions.php', '/home/binawebp/omsrislb.my/wp-admin/admin-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e,%`ʉuE,\0', 'w:\\ bCUӿXSb#ߛ4', '', 0, '?'),
('3uyvӟ)W7', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/prepare.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/prepare.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zw;\r׎', '(ȬF5FmNM9ö|:', '', 0, '?'),
('$\rt@mO', 'wp-content/plugins/elementor/assets/css/theme-light.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-light.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*WNd:&', 'uʼF\\Lp0<:Vb^x56', '', 0, '?'),
('"CIrJ0', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':Hb~r', '%TrPdž^cɅyԹQ/k', '', 0, '?'),
('4;V''/f', 'wp-includes/js/jquery/ui/effect-scale.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-scale.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_Q\nVWs', 'QںcXڿl	bɯ{{^Xoʚ', '', 0, '?'),
('7OW\n@a', 'wp-admin/css/colors/modern/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8''Q?tn', 'kenj=N`N|BxšÂ', '', 0, '?'),
('8Jz]Lv', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/crown-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/crown-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=sT|{jD', '܌c~F}P2n`0[r^LTD', '', 0, '?'),
(':f?bj.', 'wp-content/plugins/wordfence/views/blocking/block-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/block-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't2&s Ԩ', 'ՏI#er`-uWQQ', '', 0, '?'),
('Wa<}t\rsj', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AutoEscapeTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AutoEscapeTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=QSdd', 'C1+Y@]=BhX6򟨝tp', '', 0, '?'),
('Zڱ5<|7/', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/ace-loader.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/ace-loader.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{KlNbX', 'p*&ط8$P''CABU', '', 0, '?'),
('iz\r*K', 'wp-includes/Requests/src/Transport/Fsockopen.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Transport/Fsockopen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '95h^&9U', '}|IWA\r~H\ZH!Z', '', 0, '?'),
('kZ-G\0C', 'wp-content/plugins/elementor/assets/css/widget-image-gallery.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-gallery.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '21\\L!cUb', 'k2`?ot@v }nD', '', 0, '?'),
('w}<@YtMs', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{J!u?}s', 'Aũ`97}b>MHJHh|Fj', '', 0, '?'),
(';*F''u', 'wp-includes/blocks/code/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+v{df$9^', 'K鏬/ sCS-\0Ujhs5 ', '', 0, '?'),
('C\nU', 'wp-admin/js/custom-header.js', '/home/binawebp/omsrislb.my/wp-admin/js/custom-header.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݎ\Z\Zڸ', 'vN;dV5dt,', '', 0, '?'),
('%''jk>QL8', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mixal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mixal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''z;H`^5', 'f*p(}P\0MMr_\r=)', '', 0, '?'),
('9TCnf', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/README.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'quVYhh', ';Ttxİ*Y3,x-5fx', '', 0, '?'),
(',r)(h?', 'wp-content/plugins/elementor-pro/modules/motion-fx/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/motion-fx/module.php', 0, 'ǵn$\rC ', 'ǵn$\rC ', '(P]yr)RJ%qm/', '', 0, '?'),
('+bqhXrE\Z', 'wp-includes/blocks/comment-author-name/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x9\rp\r8K', '|ާBOCoi77=_!]Б', '', 0, '?'),
(')GyfҤ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ᗳSP4bQ', '\ZG)!>tqCm_=j*et', '', 0, '?'),
('gkRLʲzo', 'wp-content/plugins/elementor-pro/modules/nested-carousel/widgets/nested-carousel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nested-carousel/widgets/nested-carousel.php', 0, '-_BZ~<"!', '-_BZ~<"!', '[8DM&O @ĸ	=S8', '', 0, '?'),
('\0L,޳', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-themes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-themes.php', 0, 'M&Pwܦ', 'M&Pwܦ', 'b=)e<w~\Z*psL1''I0', '', 0, '?'),
('ǵTCdTqsT5', 'wp-content/plugins/elementor/assets/js/ai-layout.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-layout.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Fl/U󢦿', '*:L,[œe=SҶ+/Q%^}>', '', 0, '?'),
('V+S8wDm\\', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.js', 0, '>\\~zC', '>\\~zC', '\0엞\Z"d]\nz-{CF[ZݶUְ&E9', '', 0, '?'),
('甾ɘTu77;', 'wp-content/plugins/elementor/core/base/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*\rrGtə', 'A$#R]Fwtg|6\n	ou', '', 0, '?'),
(']YK9{bH4<', 'wp-includes/SimplePie/src/Cache/Memcached.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Memcached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6OSA!k[2܋G0', 'kռN`n,sjJ%nTЩG}', '', 0, '?'),
('\rLN/M', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0VzVc@A!Y', 'B|?ӓXLOf`K', '', 0, '?'),
('[\Zg^iB', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/fine-uploader-new.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/fine-uploader-new.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&>CTa\Zx', '3cWsKJJaQC%6ڍ;/v', '', 0, '?'),
('窒u\rZJW+', 'wp-content/plugins/wordfence/images/help.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/help.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$N;''M Y', '\Z7\0r/iz;ki,=LZg', '', 0, '?'),
(')t\r,Jڼ', 'wp-admin/options-permalink.php', '/home/binawebp/omsrislb.my/wp-admin/options-permalink.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2nN\Z/ԈtE', '҈F^#0l	OėYwѤZ', '', 0, '?'),
('vL:J', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@Zɳ|3', '_icB7H%K ', '', 0, '?'),
('˔itȖq', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-sub-term.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-sub-term.php', 0, 'Pv{_%\nP', 'Pv{_%\nP', '!`uz%|94%NgPyV8RLv', '', 0, '?'),
(' ''.>.9', 'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.js', 0, 'a࡭zu', 'a࡭zu', ' 5!m&g-#⸭eoHB', '', 0, '?'),
('?Ǆ:\nX', 'wp-includes/customize/class-wp-customize-theme-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-theme-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z1ᗊ4i#', 'dt1(qڜ(A^', '', 0, '?'),
('\Z) %iyδ', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}+#z,erEJ-', 'sfq@8!yW&ڔA+/uY44G', '', 0, '?'),
('\Z(K6tQ', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/wp-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/wp-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&HSb-;(Ȯ;', 'd2SwM<;N.GA\0Fי,P', '', 0, '?'),
('3dyjV', 'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_blocking.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@O<.<)$ޓ', '\Zޛp	>B*''^T', '', 0, '?'),
('7 72PFxCw', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/models/condition.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/models/condition.js', 0, '(]v;x\0>', '(]v;x\0>', 'A9wQ(ki#:t?-BGz_', '', 0, '?'),
('A0B''\Z	̼', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/videos.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/videos.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fk	A''> 1', '9+uV$L	0^/9f', '', 0, '?'),
('By$Cci8+g!', 'wp-includes/blocks/details/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z$Up=', 'hD0DcErCQ6&0VLf|љ\r', '', 0, '?'),
('EtlG=E', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BodyNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BodyNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MÙ@,Y\n', '\0	d&w˔GGΪ֗@', '', 0, '?'),
('H7%T~_\0%D', 'wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S\ZL0Ľ7', 'X0*UbJW[\\"Kr)ss{', '', 0, '?'),
('Rrr(ȟP', 'wp-includes/blocks/media-text/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P01\r4\r=1O%', 'ba<!3ڞQ]3s#QM4pE', '', 0, '?'),
('Wly:\0Vn`d\0', 'wp-includes/js/tinymce/plugins/wpview/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpview/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6-Aī[', 'lOogL.dCߏֲn=;~!', '', 0, '?'),
('YVY_Jx', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hnda*ٰ𤇕', '''*^`Tlsju@04!G!y', '', 0, '?'),
('[Y[jǈG', 'wp-includes/blocks/search/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z嘻S', '-Nk",[[j_t -XO', '', 0, '?'),
('h8ʯn-	*', 'wp-includes/blocks/buttons/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&/&&ݣ4h', 'K}?,GQYCA\\ I$1', '', 0, '?'),
('m4''^$Q)RIX', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlDocument.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlDocument.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CGV`1+\Z', '4ҀYöDjۣ(ytA', '', 0, '?'),
('9>7', 'wp-includes/blocks/site-logo/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĸQ; \rg3', 'q7lc\ZhD<bC9q\n2367', '', 0, '?'),
('z#[.oIdj', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(~\rr\0.', 'ڄgcu4:oW_C	4:1', '', 0, '?'),
(',4#(#', 'wp-signup.php', '/home/binawebp/omsrislb.my/wp-signup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UQqm}', 'W3 RzqumСOю[O>,', '', 0, '?'),
('-_.6', 'wp-content/plugins/elementor/assets/css/div-block.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/div-block.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nPO$0H', '`0ӺD+Frbu4Z<Vy95A', '', 0, '?'),
('k\0E~^', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-widget-stalker.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-widget-stalker.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'toM_Ahf', 'w\0}x?vڊ檥6-%kigIxl#', '', 0, '?'),
(')PeD s', 'wp-includes/blocks/group/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}]x^E-', 'y [qj\Z\ZO2;JatEmB', '', 0, '?'),
('#n۹yw', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 4Ù~F4X', 'Ԧscbv\\[=cG}Ig-', '', 0, '?'),
('\\#LK', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/smarty.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/smarty.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AQCѨX', 'iԢ_a\ZHʑKL/', '', 0, '?'),
('v+[.I$]T', 'wp-includes/style-engine/class-wp-style-engine-processor.php', '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-processor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ꏬVuGݯe˟:', 'C_b%]D:!]bеt', '', 0, '?'),
('j/qD"z', 'wp-content/plugins/elementor/assets/js/progress.5d8492a023e85c6cc0e0.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/progress.5d8492a023e85c6cc0e0.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǝ?wtk', 'EχW8²ƳIsF.', '', 0, '?'),
('wΤXzGUY', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B#[9]}!kE\\', '@Yj훩-1vѰLdA', '', 0, '?'),
('69)54', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpDocReader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpDocReader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c(lnT_', 'm~K__j)\0T%Pgqπ', '', 0, '?'),
('ǖd!s<XЯ', 'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*1{,˾ʂ', '<G$U+kL>\0hahBS-', '', 0, '?'),
('E\\e1qp', 'wp-content/plugins/elementor/includes/interfaces/group-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/interfaces/group-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~iSB!VZ', 'Z;+ùfyh', '', 0, '?'),
('ѵ8]tw$܌g', 'wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oV?i\Z],', 'n\\MS&!	,C͹GyT', '', 0, '?'),
('ۑ݀m9l^H', 'wp-content/plugins/wordfence/images/logos/shield-premium.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-premium.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r-ȭ\nQV', '?mUL-lZOI,XSM׭ޝ-', '', 0, '?'),
('*沫QN', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n\0]''];6', 'P[M\\pH&̣\\^pJȏ', '', 0, '?'),
('Dd"8PYb', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sjs.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sjs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bȆn', '#bb\\?4k]6Y%m/\nI\nJ', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('Ã_]s\Zr', 'wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^dۼ;_:AS', '͵.{y1A>1IϹ1U\0', '', 0, '?'),
('\\{ԙUV', 'wp-includes/blocks/navigation-link/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aec{:~D3', 'Y:$tr&=	Jg#B	>Kg2', '', 0, '?'),
('y7MA@', 'wp-includes/widgets/class-wp-widget-rss.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-rss.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9s''钾T \nJ2', 'ABmqAziZu\\', '', 0, '?'),
('_)0d|6_;n', 'wp-includes/js/dist/rich-text.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/rich-text.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z֓n', '|!s''o&!~$E', '', 0, '?'),
('*9b/DkYutL', 'wp-content/plugins/wp-optimize/vendor/bin/minifyjs', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/minifyjs', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	L%(L;', '0\Z>8M_ksс~]tcAxA7', '', 0, '?'),
('+H*@@w2', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-color.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-color.php', 0, '`&浜of_7', '`&浜of_7', '䳥''z.oNYWub6Q#', '', 0, '?'),
('4$H8_%', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ErrorHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ErrorHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.͙3\0+y@sn', 'J/t,)lZ/L95	U', '', 0, '?'),
('=	\\vVx', 'wp-includes/blocks/rss/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@wNLQ\r1Y', '\\\\5Alo(4j,rLTs;h', '', 0, '?'),
('>D7"6R񹧨', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scala.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scala.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x7.lGX', 'b\n1''5g	~"eyɸI', '', 0, '?'),
('Ot\\@VaI/', 'wp-content/plugins/wp-optimize/templates/take-a-backup.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/take-a-backup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=TSSUjKkoF', 'li~''RUN3(A', '', 0, '?'),
('RjvM]/6D.', 'wp-content/plugins/elementor/assets/lib/animations/styles/headShake.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/headShake.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(zB[Rm^', 'ScãuX\Z)u|G7g<|F"', '', 0, '?'),
('S+h\n %J', 'wp-content/plugins/code-snippets/dist/editor-themes/monokai.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/monokai.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӽr/҅:B''n', '%WF[X2}H`X&֒?oyr', '', 0, '?'),
('[d(<Tޮ', 'wp-content/plugins/code-snippets/uninstall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/uninstall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_%|plI', '?犦pˎvoB', '', 0, '?'),
('_֩,''e~)''', 'wp-content/maintenance/assets/images/twitter.svg', '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/images/twitter.svg', 0, '^drra1,', '^drra1,', 'P8''x$;ޥvЎ<s', '', 0, '?'),
('~4ʑ6<[', 'wp-includes/blocks/site-tagline/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ndc/.', 'g\ZfȄa	xTD&?<', '', 0, '?'),
('<iQ\0', 'wp-includes/js/dist/reusable-blocks.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/reusable-blocks.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ml9U0', 'u''8d{	U*Oc\r>\0XTs5', '', 0, '?'),
('`&%eFgd', 'wp-content/plugins/wordfence/models/block/wfBlock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/block/wfBlock.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n'';)aD԰', '1*8%jn\Z6Q͐F6_', '', 0, '?'),
('ӝ(	Cgya&ӊ&', 'wp-content/plugins/elementskit-lite/compatibility/data-migration/translate-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/data-migration/translate-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԋ\rĘr?', 'w7YI/>puU}92)D', '', 0, '?'),
('iPd˗9t2k', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' `߯}	i', '5u|$o-3=t/2[F	', '', 0, '?'),
('۵āO>`*', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/text-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/text-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X=>^8', '''hD*?%\rΰe]x7c6dU[', '', 0, '?'),
('E%N/_b', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlWeb.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlWeb.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\}*l\\zMJ[', 'T%Z)#HcEҢ*?V', '', 0, '?'),
('MġwwKN', 'wp-includes/js/dist/development/react-refresh-entry.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-entry.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	`OmWeI{_', 'ǒK4i''R!Dim0mu/', '', 0, '?'),
('"sybNl-', 'wp-includes/blocks/preformatted/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SG{Ĉ]51', '_pc)k3YHLIWOP]9tS', '', 0, '?'),
(':8Iaølm', 'wp-admin/includes/class-ftp-pure.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-ftp-pure.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T&}\\3J \0', '\nS{UCdz$ya|8[', '', 0, '?'),
('m&c=Z', 'wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('KqM{', 'wp-admin/css/dashboard.css', '/home/binawebp/omsrislb.my/wp-admin/css/dashboard.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iHH~՗*', 'G\Z6,rĨӝ\r3*', '', 0, '?'),
('sݜÞ3', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7&eJ¡W', '%p䯘88`A@IW"j!U ', '', 0, '?'),
('{xZc"hb?', 'wp-includes/js/dist/dom.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FrB\ng	D1', '|8B%qQ@JTcnu4', '', 0, '?'),
('Ȓ"N=L.U', 'wp-includes/blocks/more/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?㈫	rpE.', '}&ڈnJIXYɮyMd8f)', '', 0, '?'),
('39.\r2', 'wp-content/plugins/elementor-pro/core/notifications/traits/notifiable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/notifications/traits/notifiable.php', 0, 'z8HCӺ(ƕ', 'z8HCӺ(ƕ', 'uQH#ϫYfgNS(|H', '', 0, '?'),
('ϝ6=̍', 'wp-includes/blocks/post-excerpt/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'եL`L(ҩ', 'BO!7R?0yď5', '', 0, '?'),
('r9', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '87[mg֏E', '\nCM]gQai\r%A1#"S', '', 0, '?'),
('WMF`3$', 'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2CECZ6e', '\\W.£;\\	K[zHEI8A', '', 0, '?'),
('2Ac٣7', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/initial.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/initial.php', 0, '\nh,GI5', '\nh,GI5', 'rTM0>+$жwn', '', 0, '?'),
('9$pŚ', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlay-underlay.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlay-underlay.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0\\~ҦH{!', 'qĤhMܲ:%X#*Ҋ:', '', 0, '?'),
('*7\r?', 'wp-includes/class-requests.php', '/home/binawebp/omsrislb.my/wp-includes/class-requests.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0\ZNzj3', '1W~fW;\0W5U8<', '', 0, '?'),
('ԥd6g]QO#>', 'wp-content/plugins/wordfence/lib/menu_install.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tLYN', 'V۽%#Ǉos"M\\>6', '', 0, '?'),
('\nlbJgz9', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-base-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-base-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '־"FW''', 'gFUOMk0932\Z!m 5+4\rW', '', 0, '?'),
('E`''QBw|', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.min.js', 0, 'V8U,GPEU1f', 'V8U,GPEU1f', 'j1BN0*w_j\r }5', '', 0, '?'),
('$H?.0h', 'wp-content/plugins/wordfence/lib/wfScanEntrypoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanEntrypoint.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+#F%IA', '1M|Pk@m_WvA?vz', '', 0, '?'),
('ɢEGNj', 'wp-content/plugins/elementor/assets/js/elementor-admin-bar.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/elementor-admin-bar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't^6/@x~W', '(2Ppڦat:&\0.j&', '', 0, '?'),
('"އh\n\r~M', 'wp-content/plugins/elementor/assets/images/app/ai/product-image-unification-example.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/ai/product-image-unification-example.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6޽QXpc.', '˂}q[1PpgGq@[-%w', '', 0, '?'),
('sy%#r=', 'wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' E@UBN*ŢS', '`P.A0 G3F=', '', 0, '?'),
('of?3P1"', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g"̤/OY''', '8eTet\r jP/J<^rӥz', '', 0, '?'),
('1a?l', 'wp-includes/blocks/comments-pagination-previous.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-previous.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0G=@\nK', '3__\\;_	+윂ο#YkD', '', 0, '?'),
('BWw\0', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-gallery.php', 0, '^=\Zp`rrE', '^=\Zp`rrE', 'zq$ff;?[I-;&', '', 0, '?'),
('Fe}(', 'wp-includes/js/jquery/ui/dialog.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/dialog.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vk%\05X\ryI', '5%J)AΧ&=x<Gu', '', 0, '?'),
('HQe$tgVX;', 'wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Canvas.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Canvas.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XJeQwy;0', 'UL}Sى	G3b6bO', '', 0, '?'),
('OV\0^Y\riQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']MAXBO\\va', ':WU%Q;\0U;H(N', '', 0, '?'),
('\\wJ]Բ)', 'wp-content/themes/twentytwentythree/templates/search.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/search.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<Y', '~U煴K9Ue¨+8', '', 0, '?'),
('s♼{DR[k1I', 'wp-content/plugins/wordfence/images/logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zFހW\rl~6', 'V{Q9V	J	Xqڀc', '', 0, '?'),
('8m\nd74t', 'wp-includes/class-avif-info.php', '/home/binawebp/omsrislb.my/wp-includes/class-avif-info.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}n3Cv80', '[fTL9xߎT9S\0:Ty', '', 0, '?'),
('X/\0	', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iJB!<\0', 'V4^CD\Z;Uz', '', 0, '?'),
('}/pS', 'wp-includes/blocks/page-list/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xt?%Y{', 'ׁ}p:B HJW_T2^-P', '', 0, '?'),
('N3M\nS0j', 'wp-includes/js/dist/block-library.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-library.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	|ee(	', 'TtQ͔c=N֤K=', '', 0, '?'),
('\\|biWpJGf', 'wp-content/plugins/elementor/assets/css/templates/widget-image-box-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-box-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{u>n\ro95y1', '14j)3bIum+cߑwVT', '', 0, '?'),
('@\Z䱒=lH', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')?6eFaO6', 'yl:qE''-տc\\)''&rfog', '', 0, '?'),
('p*xNջ@GV', 'wp-content/plugins/elementor-pro/assets/js/progress-tracker.e19e2547639d7d9dac17.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/progress-tracker.e19e2547639d7d9dac17.bundle.min.js', 0, 'X<\\:5s', 'X<\\:5s', 'VP\\ż2h	,]6R- &', '', 0, '?'),
('g*4 %&', 'wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jx֓*x}0zث', ';4ˏKE<?WrPvVe', '', 0, '?'),
('VQ;''~\n', 'wp-content/plugins/elementor/includes/autoloader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/autoloader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N EhdyF\n\\', '2I<y<P/gyS\rXO\Z', '', 0, '?'),
('|6	e1', 'wp-content/plugins/elementor-pro/modules/usage/integrations-reporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/usage/integrations-reporter.php', 0, '\\\0US6D\0', '\\\0US6D\0', 'bϭL8}d6o\r\ZfJJ5ԙ', '', 0, '?'),
('li&&[p', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/objectivec.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/objectivec.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cp[xd/', 'd؝[=\\ bP1׮7eA', '', 0, '?'),
('x(ťܺ.Շ', 'wp-includes/class-wp-session-tokens.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-session-tokens.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tcӫ\\^k', 'Ƞ})zW=NbdDP', '', 0, '?'),
('z	ݖ ਿ', 'wp-content/plugins/elementor/assets/js/alert.42cc1d522ef5c60bf874.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/alert.42cc1d522ef5c60bf874.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O4&V) ]>', '!1h\\Ey*Jk', '', 0, '?'),
('ԒAr^', 'wp-includes/js/wp-custom-header.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-custom-header.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C@$ҷSE#', '"y䓧}^Hz%Zу', '', 0, '?'),
('֗9!C?29o1+T', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/JS.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/JS.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.JPn>)ߥis%', 'eDҷWǶqvΖf\n{=}', '', 0, '?'),
('za>`<!Ct', 'wp-includes/css/dist/block-library/reset.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oG\\\n''\0$a7', '*ӊ;H0Tŕ`_fe*z3ϻ', '', 0, '?'),
('^0pkM', 'wp-includes/css/dist/nux/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_]02?BIí!ʢ', 'mDnj8B3_[5^', '', 0, '?'),
('${m	zKt:', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions-conflicts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions-conflicts.php', 0, 'ba@o#d', 'ba@o#d', '<)qָNe/Yr)Ӣ:\Z', '', 0, '?'),
('S	g	Nd', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W/+q$/@', 'f	4Уv9=?!~''cc{ޜ;', '', 0, '?'),
('h]CA*', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"δL.o', 'eoَ3uϨy38\nؑ:', '', 0, '?'),
('깐eW/8', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/bootstrap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/bootstrap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5KDVR', '8?Xu''Ii()4', '', 0, '?'),
('0ܚZI丱N', 'wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^p,N.<Z\0Y', 'K\0#IVs؞<''jY', '', 0, '?'),
('3ƹܕjbiΥ', 'wp-includes/customize/class-wp-customize-nav-menu-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>3׆ꕰC"', 'ato9	 _}Bt5QfR5', '', 0, '?'),
('mC.	z{5', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-ambiance.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-ambiance.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؔr#;l]E]ĉ', '!_"&0//ٗD', '', 0, '?'),
('\0 ͙YY', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style5.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style5.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mϋΏW;{', 'sN$1\Z!\rnѺټ!y', '', 0, '?'),
('=(i\01ެPpn', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-admin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hɫ[+dV.W', 'Sr	c\Zכ[pw	$:Dr', '', 0, '?'),
('#9mzj6PT', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kuroir.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kuroir.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ioZ7=', 'N+9$iV\\+Gg	fLS', '', 0, '?'),
('\Z6B8ceg', 'wp-includes/blocks/shortcode/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O*ctBHV', 'tpFWCp>2[}hvp6j', '', 0, '?'),
('\ZB/2WM!\\', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-06.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-06.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sX=$7''', '\0+7\0aʉ˰', '', 0, '?'),
('in\rr', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/textarea.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/textarea.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9V\\ʛ*P^', '\rN=~eP|]د$Kb|8', '', 0, '?'),
('*W̱\n,͸', 'wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'էZE', 'CD\Z"s~.ETlݍB|', '', 0, '?'),
('-N~wYoU', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-url.php', 0, '0y*g''', '0y*g''', 'q-Oztd>pF]~S\\B~^oگ9', '', 0, '?'),
('-çI#', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Definition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Definition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4\n=Y~x', '1\Z6T}B1P>$|БXK', '', 0, '?'),
('@)ȯ޹ߩYcN', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('@(''GnYM', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߺQ\Zԯ)', 'Ug؄~[{g2dPp5^ߪ', '', 0, '?'),
('G+y"{L9', 'wp-includes/SimplePie/library/SimplePie/Credit.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Credit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}5-j', 'D݄cm퇍(>;@[Zf', '', 0, '?'),
('X,GnU&^p@g', 'wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js', 0, '>1ݱg-"C[', '>1ݱg-"C[', '{:,=fF2xgl', '', 0, '?'),
('Y^,=e߳', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jB[oyj', 'z_w>Ern!TNOiA	u', '', 0, '?'),
('Z{#[1s+r', 'wp-includes/css/wp-empty-template-alert.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-empty-template-alert.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e~51', 'B'' زAՙ	@=^V', '', 0, '?'),
(']k,\Z/c', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ke5|', '&~\nxkKh$;\n-Q\n=b', '', 0, '?'),
('bE4t=', 'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-alert.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̻owG>p', 'I`I^{PנhQe:sG^8sĚ', '', 0, '?'),
('va:SM	oiV/', 'wp-content/plugins/elementor-pro/modules/forms/fields/field-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/field-base.php', 0, 'ʼRv 1_1Y', 'ʼRv 1_1Y', '06 [4)`cLh,E', '', 0, '?'),
('ٲd&\nMGK', 'wp-includes/l10n/class-wp-translation-file-mo.php', '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-file-mo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y#U wu91', 'jpQ(u\rסpZ[x1.:Ï', '', 0, '?'),
('''\Z "ط', 'wp-content/plugins/elementskit-lite/widgets/pricing/pricing-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/pricing/pricing-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C^', 'P.	<ƈH&>W+Ld', '', 0, '?'),
(',=9h6K', 'wp-includes/js/jquery/ui/draggable.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/draggable.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O}WBH1Q?^Yq''', 'LPC7\rY@ؒE_)', '', 0, '?'),
('d4Ϡ%?', 'wp-includes/blocks/term-template/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zL', 'pg''FMXcLMmL-b[y', '', 0, '?'),
('\\˞nJ(', 'wp-includes/blocks/accordion-item/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.)쬯%)x', '$Z˃8^/YHPџ1h', '', 0, '?'),
('pJ҅GRṕP', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/post-comments-skin-classic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/post-comments-skin-classic.php', 0, ');\0N;gV', ');\0N;gV', '﫟cSkr]#.*g-6=k', '', 0, '?'),
('Ȋ\rzgܸRv', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_utf8.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_utf8.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#Ʈ	^yhA~', 't*Ddc\0=X<PφD(%	{Bt', '', 0, '?'),
('%x!J?2', 'wp-content/plugins/elementor/includes/widgets/social-icons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/social-icons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\xLxq &.', '>;F-\0}#e:', '', 0, '?'),
('1D_^*S', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/custom-fonts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/custom-fonts.php', 0, '<0d|X', '<0d|X', '*h!wmDGz`ST!', '', 0, '?'),
('xEIq\\v', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IFa͝25e', '$<2Cоq\0wꬅ:Q4B>', '', 0, '?'),
('{:Y@=ӓ', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-01.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-01.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9{!~C1', 'YX8*eYB"fVio[', '', 0, '?'),
('ͱ`:oNQ$y<', 'wp-includes/SimplePie/library/SimplePie/Cache/Memcache.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Memcache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*/xu;u!G', ',:׿F[69Wwv6iick:', '', 0, '?'),
('>/ᡇ_', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l([qאD#', '\\sٶhb2.;m`Fr^&H-w	yV~', '', 0, '?'),
('&UX\rL4{', 'wp-includes/js/utils.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/utils.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˺XH_[ϓ', 'jtSdJ]DާQ', '', 0, '?'),
('\Z9I$‰', 'wp-content/plugins/elementor/modules/global-classes/global-classes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V]=KB*?1TB', '+mEЅJ԰ЎNpw', '', 0, '?'),
('\Z֧\\\Zhi', 'wp-includes/js/dist/blocks.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/blocks.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U>z1@A6$mLA', 'geSQЉg', '', 0, '?'),
('\Z#=|uJ[_', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']"N\rd?NV', 'jb\ZAxJ跅f LB', '', 0, '?'),
('\Zfh', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n9\\˹~wax6y', '=sS]z \\x#ӂcE', '', 0, '?'),
('\Z@Z!gyTa-', 'wp-content/plugins/all-in-one-wp-migration/exceptions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/exceptions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E*@0gJł', 'z*g.k*\Z >J''', '', 0, '?'),
('\Zk]Wv&&\r', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasChildNodes.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasChildNodes.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U<Tg0(E_', 'p,TH졣2D7_', '', 0, '?'),
('\ZO3F5K;@ ', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@q\\}[', '[TnEjd($:!hΝ\0s><', '', 0, '?'),
('\Z#=\\!\0SrRt', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ClosureCompiler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ClosureCompiler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gl(RZNE,;N', '<4rwC1sq', '', 0, '?'),
('\Z&cR< FiC', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p7971i''', 'Z\nA78{KpA#M|i\r', '', 0, '?'),
('\Z4mLNO', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/factory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/factory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LxGQrClM', '}SKRȵpwE0;KYf٢', '', 0, '?'),
('\Z4˿i0<ׯn', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-fundraising-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-fundraising-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '% vF7L', 'mh9r7[_T4|Ht', '', 0, '?'),
('\Z6sw*䞋', 'wp-content/advanced-cache.php', '/home/binawebp/omsrislb.my/wp-content/advanced-cache.php', 0, 'klefMr', 'klefMr', '<fvRNQN)7WjIm?K', '', 0, '?'),
('\Z6u\r}ߘi', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/restore.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/restore.php', 0, 'y\0Q!82M', 'y\0Q!82M', '߲aj:+s	ZM		#+YA', '', 0, '?'),
('\Z]\rbWxY', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r"TfbjrƮ', 'J>5IySi>kJ?xφP=V', '', 0, '?'),
('\Za''M;ȭUl', 'wp-includes/blocks/post-comments-form/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dae', 'juto)i5 j;\\vڦ(*o', '', 0, '?'),
('\ZdBwKFPΠ/', 'wp-includes/css/wp-empty-template-alert.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-empty-template-alert.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '銿r\nL', '*M=a?la4Kr9A\\#', '', 0, '?'),
('\ZjK5c삒i=', 'wp-content/plugins/elementor-pro/assets/js/editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/editor.js', 0, 'rQ<-ήg', 'rQ<-ήg', ']rߌVCrl`+W-&_rQQ', '', 0, '?'),
('\ZvNh)BX~;\n', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_files.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_files.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K/IKc2~*', 'DHdIoGͳZz)U\0of', '', 0, '?'),
('\ZGa*.$qW<D\\', 'wp-content/plugins/code-snippets/dist/welcome.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/welcome.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T3֡іFǏs', '*Zյ4C1ͧ636yܖq', '', 0, '?'),
('\Z9i68{n^(', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/SelfReference.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/SelfReference.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~acWɅZ;]s1', '*]݌Z`|\\1xd09?Үh', '', 0, '?'),
('\Z܏L#%=xoS', 'wp-includes/blocks/post-comments-link/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J-Ж\r', 'z5;~Ԑ7uXM5\\o=|\n', '', 0, '?'),
('\ZL6N1;8', 'wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g]>p', 'u3}(%&Tf_"dKi6Fxphl', '', 0, '?'),
('\Zc١:SI,T@O', 'wp-content/plugins/elementor/includes/preview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/preview.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zbr%Gl2', '$CwO&6Ԗ2zRauc߰\\<Ff', '', 0, '?'),
('\Z^cv1Fs߼', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveStringOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveStringOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1]]gGLx', 'vp3:8(~ :U', '', 0, '?'),
('\Z<L*ϗ0%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scala.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scala.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}3ݳ]^[', 'LN	\rpicѴYYGܦcߢ<AJKJ', '', 0, '?'),
('\Z;5(OOR', 'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǛlmD!', '''9\r9\0o|\Z|0K', '', 0, '?'),
('\Z	Ӈ;X', 'wp-content/plugins/elementor/assets/js/app.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`,K	ah"+&', '07RbRnݢȾa!VPo=ʗ', '', 0, '?'),
('\Z9iG7Z[hHw4', 'wp-content/plugins/elementor-pro/assets/js/notes/vendors-node_modules_radix-ui_react-alert-dialog_dist_index_module_js-node_modules_radix-ui_r-c71607.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/vendors-node_modules_radix-ui_react-alert-dialog_dist_index_module_js-node_modules_radix-ui_r-c71607.js', 0, '40xWdyrC<', '40xWdyrC<', ':C!5+aCuZF"jl\Zs_Eh', '', 0, '?'),
('\ZZ` z/Pu', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-svg.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-svg.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c."amR', '@^b`(\r''dIMH6.CT\\', '', 0, '?'),
('\ZtnWe8', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȶڑP\n^6W', ')ܲq2ÍXhZ;', '', 0, '?'),
('\Z7sв', 'wp-content/plugins/elementor/assets/css/widget-heading-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-heading-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sg(9c7=r<', 'ZS4Gٳظ\ZlkKo/~t848L]|', '', 0, '?'),
('\ZȌiQ|6', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`^\0''gQ/', 'W_˕ي8pPz3O', '', 0, '?'),
('\ZHcr5L', 'wp-content/plugins/elementor/includes/managers/icons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/icons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZA=MPM', '?;HANFx\rV\0\nF\n', '', 0, '?'),
('\Z$]Ci\n?b', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-puppet.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-puppet.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0mA};0h', '<F	쵀''B!7/f\ZW:V5', '', 0, '?'),
('\Z;Jv', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__debugInfo.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__debugInfo.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VN{nd(c', 'KuSo\Z ~\nd)nQ', '', 0, '?'),
('\Z߇^xAVeJt', 'wp-content/plugins/code-snippets/css/manage/_cloud.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/manage/_cloud.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#j̥\0m>', 'a.7~#$kF.Z', '', 0, '?'),
('\Z^WT~:l', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AbstractTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AbstractTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|LO]f,>', 'bfâ09λF5J', '', 0, '?'),
('\Z(ʬ?3a!o_', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i\Z+Em5V^2', '7׍Uu\n33a<&F殺?', '', 0, '?'),
('\Z2\n)ULE', 'wp-content/plugins/elementor/includes/widgets/shortcode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/shortcode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hr߯I', 'N\r,o%ђIe^\Z2xy)܃%', '', 0, '?'),
('\Z)qtsCI9', 'wp-includes/functions.php', '/home/binawebp/omsrislb.my/wp-includes/functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':_V̗1', 'F,f,n5CO4=y', '', 0, '?'),
('\Z8@`f:0\n', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_orchestra.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_orchestra.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pZ*\riL3DQ', '-1DG8d/.~,5C', '', 0, '?'),
('\Zy8R#Oy', 'wp-admin/css/nav-menus-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	]i+\Z}', 'U^	>Cum,RV8p}@3N', '', 0, '?'),
('\Zl\n.)\n@U', 'wp-content/plugins/elementor-pro/modules/woocommerce/settings/settings-woocommerce.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/settings/settings-woocommerce.php', 0, 't̉aOW_', 't̉aOW_', '/dʥf=>O4y*"NMF', '', 0, '?'),
('\Z''*ْPDƜ', 'wp-content/plugins/code-snippets/php/editor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '| 6M8{w', 'CT%RQ\\FCl``', '', 0, '?'),
('\ZOb\07i%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c9search.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c9search.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R&BӉ=H', 'װi.w(S$>H~ Aq|\rO', '', 0, '?'),
('\Zj(L\0_q\0Z', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementById.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementById.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4Hum', '0f>͞8x{`CN[/', '', 0, '?'),
('\Z\Z:\\RfP~3', 'wp-includes/class-wp-metadata-lazyloader.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-metadata-lazyloader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֋Rq6}dl)ل', 'KJ`RLG%2uu)+f%', '', 0, '?'),
('\ZUEs(#Ep', 'wp-includes/images/smilies/icon_mrgreen.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_mrgreen.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$_uX|I%~$', '!BI1mV-|јX5D8h', '', 0, '?'),
('\Zs[W-', 'wp-content/plugins/elementor/core/editor/loader/v1/editor-v1-loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v1/editor-v1-loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*CW.', '^Nw|ql\n:g$L^q''', '', 0, '?'),
('\Z/̓T%g4', 'wp-includes/js/jquery/ui/effect-drop.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-drop.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p1m:*', 'jճ:2l϶GB%[~:v7', '', 0, '?'),
('|rXz h', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-slim.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-slim.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aYDj/\\E', 'MC+i4}pMyp,2', '', 0, '?'),
('ƒ0LfK`6', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xEY:', ')&r .׃<n%2f"jt', '', 0, '?'),
(' 8a	j~\0', 'wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GI$gjz', '58@#x鈒!}\\A\nPZ^C\Z=', '', 0, '?'),
('$P`\0gX', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yF\\2', '2ks\\>RI:nHȿDm!zz', '', 0, '?'),
('&͂|d8', 'wp-includes/blocks/pattern.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/pattern.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&=@D)', 'bH''z󅨈<,bUMbe@Ә', '', 0, '?'),
('-c<@VsZ', 'wp-includes/js/api-request.js', '/home/binawebp/omsrislb.my/wp-includes/js/api-request.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9߿G7p6{g', 'd6Q\\f:G`j1V', '', 0, '?'),
('/DoW0b^', 'wp-content/plugins/elementor-pro/modules/screenshots/render-mode-screenshot.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/screenshots/render-mode-screenshot.php', 0, 'x􀰅+.}\nDx0', 'x􀰅+.}\nDx0', '9&3lU\r%2S0', '', 0, '?'),
('2np7;)', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ws!9o0', '܅#|ǘѱVaK?J\0%KI_Vt', '', 0, '?'),
('6>Z\reS', 'wp-content/plugins/elementor/core/isolation/plugin-status-adapter-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/plugin-status-adapter-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3âpOavi:', 'CdaŬث=Su7m:o', '', 0, '?'),
('9kruk\r8w', 'wp-includes/js/dist/latex-to-mathml.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/latex-to-mathml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ic.Fߤ_', 'kԵ6`ycc|̾S&Sb0m1', '', 0, '?'),
(':-v\\}8', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/9.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/9.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`~7"㲔2', '|Bַ0@zo=z)G', '', 0, '?'),
('AR/>@bD˰U', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/PropertyInjection.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/PropertyInjection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}aMe 8d', 'phP99i#(4\ZzP1|$[Tv8o43', '', 0, '?'),
('HXx%', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/3.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/3.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r_*=oO6', 'yp[K{N@]ސûS4~)', '', 0, '?'),
('K/jUV@<', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.40bd4441fdc065587324.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.40bd4441fdc065587324.bundle.js', 0, 'ccyٝ\Z5GQ', 'ccyٝ\Z5GQ', ',lU.\\[ǣ:l]', '', 0, '?'),
('YOb&_|JS', 'wp-content/plugins/wp-optimize/images/notices/sale_blackfriday_24.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_blackfriday_24.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\riN&ɣH', '&։3?["[\nӖ?', '', 0, '?'),
('_z9݀D:', 'wp-includes/blocks/media-text/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j҅J$,ծ', '$@=M6(e-lv^/W', '', 0, '?'),
('`Cvj}+V7', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-base-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-base-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9+Jӹ', 'g\Zf	{i)E', '', 0, '?'),
('av^P.GQ^', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-heartbeat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-heartbeat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=k%yV', '}d6}(=R,BPy''v', '', 0, '?'),
('ae1AY\Z;c', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4EY,Ct', '\n\rDI>lЍ~\rAo', '', 0, '?'),
('f=e勇Xy', 'wp-content/plugins/wordfence/waf/wfWAFBlockI18n.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFBlockI18n.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n\\vu1', 'Fz,rgdflՏ;x''', '', 0, '?'),
('i(cqZ5', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/ArrayOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/ArrayOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')b''x6ّ', 'FSul?r"Q|E5aG', '', 0, '?'),
('jzϞ)Ab셀', 'wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P߬Д', '}(0FfK:L* #s6bomv', '', 0, '?'),
('mMp?i', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-add-to-cart.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-add-to-cart.php', 0, 'yU7\ZYDJ6', 'yU7\ZYDJ6', '~yjýV,2࿤]5})x+', '', 0, '?'),
('t]W2`,Z', 'wp-includes/blocks/term-description/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>DS1*', 's+=ǃttGwD[4	)', '', 0, '?'),
('=Ap', 'wp-content/plugins/elementor-pro/modules/notes/data/endpoints/users-endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/endpoints/users-endpoint.php', 0, 'Li~)\ne,(w__', 'Li~)\ne,(w__', 'mK.<QȾmθ#4?,V4o', '', 0, '?'),
('G j#_I', 'wp-content/plugins/elementor/includes/controls/structure.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/structure.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')	 Ibk/', 'zbqp0Nr.lد|?hyfN;', '', 0, '?'),
('y!\0pZ[A', 'wp-includes/js/mediaelement/mediaelement-and-player.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-and-player.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>5V', 'yG#\n7ڌ6(Chy', '', 0, '?'),
('S]*|n|', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/AnnotationException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/AnnotationException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĥeJ-PM!9', '\0MePtj#uS|hOة@_', '', 0, '?'),
('#3rך', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/site-settings-news.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/site-settings-news.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '͏iG-DZuG', 'c\n?''AF3qSzW7', '', 0, '?'),
('M\ZQ', 'wp-content/plugins/elementor/includes/widgets/progress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/progress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8x|q$#N', '=BjQmXS7', '', 0, '?'),
('EȖqȊ?2H', 'wp-includes/js/dist/api-fetch.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/api-fetch.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p&~', '?3A/1WAz', '', 0, '?'),
('5pުm\Z', 'wp-includes/blocks/separator/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ٞ\no''', 'j7W\06$e~RIp%zP', '', 0, '?'),
('ֻE\n<B[,', 'wp-includes/class-wp-ajax-response.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-ajax-response.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QnK\nθfޞX	', 'T#tEȴ|TPUJ\0\rUO', '', 0, '?'),
('Tys''7', 'wp-content/plugins/elementor-pro/assets/js/slides.0a31b946f157107ba4a2.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/slides.0a31b946f157107ba4a2.bundle.js', 0, 'aܴIP|Y"N', 'aܴIP|Y"N', ' h>2)^ĕ\n,', '', 0, '?'),
('HÍjKI', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/luapage.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/luapage.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zr$NG', '짬'';o\Zoρ`,9_d{', '', 0, '?'),
('̺X(j)Gw7', 'wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R f8_ô', '''p"2e"\Z8_.F3D0{9', '', 0, '?'),
('R+_(', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/MimeType.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/MimeType.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʐ{`', 'SЗ/NXUѧVEi$', '', 0, '?'),
('[\0Y[cM{', 'wp-includes/css/dist/block-library/classic.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>dc5?', '?"4AHCǓ_/', '', 0, '?'),
('mn9F6', 'wp-admin/css/admin-menu-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UP"{.K$г', ')`D(/F<bOZ`n', '', 0, '?'),
('$T\nv%U', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cwk''i{', 'QYJB/EEDˬ=Phwd', '', 0, '?'),
(')M^ûoz', 'wp-admin/images/loading.gif', '/home/binawebp/omsrislb.my/wp-admin/images/loading.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K\Z0b:ד;u', 'Vk~Բab!fylm&v3Įm', '', 0, '?'),
('/"CEÚ7kH', 'wp-includes/blocks/comments-title/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ]C!|AJH\0', 'f )CھKG\ZCť Lp', '', 0, '?'),
('4%IHOʰL', 'wp-includes/css/media-views.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/media-views.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zj|\09D', '@5;+l>N<2mu''Z(_', '', 0, '?'),
('6$7\\Xa)', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-07.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-07.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̑vWԸBx', '-0v7*fK>lmwy;}\rkM8', '', 0, '?'),
(':Ά)n', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedTagError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedTagError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\PFo,', 'z0v,/b0KLR7:L', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('C/;)ّo', 'wp-admin/js/comment.js', '/home/binawebp/omsrislb.my/wp-admin/js/comment.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ҫ]ʇQZh=1', '烶	xѲ\\O\\nԝnh^E', '', 0, '?'),
('H~\nx|', 'wp-includes/js/dist/token-list.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/token-list.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fw*^p\n', 'Vǫ@Nֲr7f-', '', 0, '?'),
('TgslFʞLy', 'wp-admin/js/set-post-thumbnail.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/set-post-thumbnail.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1PNH9e@I', 'e}#nqJrJQ<dZK4', '', 0, '?'),
('a@WrQwZ\n.', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܑzg<N\n?o6f', 'REgX3JAc!a_S{', '', 0, '?'),
('z|*6S\\53', 'wp-content/plugins/wordfence/lib/wordfenceScanner.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceScanner.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SB\\t', '9zr?lj"lSDp', '', 0, '?'),
('f7^YГlwM', 'wp-includes/Requests/src/Exception/Http/Status502.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status502.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hGdQt$%', 'ap 84}bj/A=c^P'' WwAl1', '', 0, '?'),
('Y2tV>', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/inactivity.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/inactivity.svg', 0, '3-5f\0-+ɑ', '3-5f\0-+ɑ', 'fG(;P\\rꄷ-,JmAh&', '', 0, '?'),
('\n$zX`1Bw', 'wp-includes/js/tinymce/plugins/charmap/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/charmap/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\5^', '[B\Z,;jfeMUj|)rv>UF', '', 0, '?'),
('=b6hst', 'wp-admin/ms-themes.php', '/home/binawebp/omsrislb.my/wp-admin/ms-themes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':1R]	lI!#_J', '7EHPuZbG', '', 0, '?'),
('''FEAvQMv', 'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>\r5]xVI''i', 'G݅''!YE3P5adM', '', 0, '?'),
('IUzYWg!g', 'wp-includes/blocks/latest-comments/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''À]0', 'z]HKaa)2$M', '', 0, '?'),
('zRWEAUb', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.355b00c58fb73e92a0bb.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.355b00c58fb73e92a0bb.bundle.js', 0, 'ȳ^2\n\Z5T', 'ȳ^2\n\Z5T', '6[Q(ւ\\)5M0Ńisq.{', '', 0, '?'),
('_<C3', 'wp-content/plugins/elementor/assets/css/app-base.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' [+vz y40', '`IEqn}rT˧?ַ@-x', '', 0, '?'),
('^u[p}`BW1', 'wp-includes/blocks/table/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5]:r', 'eÇ̻%9IBuoHן*W<', '', 0, '?'),
('Z#HT(2', 'wp-includes/block-bindings/term-data.php', '/home/binawebp/omsrislb.my/wp-includes/block-bindings/term-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(u2޲,*', 'w/''Geɂ#nd|JY', '', 0, '?'),
('趝Fey{!', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y<j}t-owG', '(J.m{kf݉E>T"Fm[z+', '', 0, '?'),
('`MajjCE', 'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve-asymmetrical.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}rH-p''uM', '*"(''wX3\Zl^\0:4q<;', '', 0, '?'),
('U	]E', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c[*mH	', '"mG*0kNCWˍrVL', '', 0, '?'),
('k.UƗ,', 'wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oNo|\\ ', '&[8΅jOtP8kP~fTt', '', 0, '?'),
('ƍp=Z\0S_$', 'wp-includes/blocks/cover/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yۜk0K\0t', 'e\\\ZÂtxgS<=', '', 0, '?'),
('k0Ba`', 'wp-includes/customize/class-wp-customize-nav-menu-setting.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǜ\05+&̺WV', 'owҏ]e|K$9rsc&/', '', 0, '?'),
(')<gMTAjsx', 'wp-includes/blocks/accordion-panel/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&-PSag', 'O,G*rzj1]A%', '', 0, '?'),
('ܟҿB∶', 'wp-includes/js/dist/media-utils.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/media-utils.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ioErp>#', 'h(Nܥxǣ#XŻ:', '', 0, '?'),
('-=QCwtnL#', 'wp-content/plugins/wordfence/lib/wfBrowscap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBrowscap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C"+5ŸH', ',ovU(wdϨOH', '', 0, '?'),
('jr~O:w\Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sjs.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sjs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'II!\0ӡF', '=\Z":$<@wG$\n1j`ÓS', '', 0, '?'),
('\0h^i^wm+\Z', 'wp-content/plugins/elementskit-lite/libs/pro-label/admin-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-label/admin-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ƽy4WY+', 'cte܃ή0Oh\0}\n', '', 0, '?'),
('_\r', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BufferLogger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BufferLogger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rPԙrNNT', 'L%ZkjQ9/WYY', '', 0, '?'),
('F?;Le', 'wp-content/plugins/elementor/includes/stylesheet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/stylesheet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':\Z\0kG{n', 'P6˗l(Z]wT/!߰DP', '', 0, '?'),
('R^~', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc_disabled.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc_disabled.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J%{OZ"/o', '^*n^\0m+!NkɌ/ԯ^k', '', 0, '?'),
('͑}P	07', 'wp-includes/blocks/code/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\JNPT-7]', '</lU0*ߥW$VvC]4', '', 0, '?'),
('\nO_;]/^', 'wp-includes/images/down_arrow.gif', '/home/binawebp/omsrislb.my/wp-includes/images/down_arrow.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V~oYnG~_u', 'h8ɧpu{9J', '', 0, '?'),
('''S*|T', 'wp-content/plugins/wp-optimize/templates/minify/preload-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/preload-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԹG[U:^>', '</5[zU+*k}', '', 0, '?'),
('ν}V+tB', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '꤀x٠%cl', 'N8,caeΟi<5p$', '', 0, '?'),
('G_bc.,]&', 'wp-admin/js/image-edit.js', '/home/binawebp/omsrislb.my/wp-admin/js/image-edit.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N75ȤC', 'FŲELBXOtԺXެ', '', 0, '?'),
('Kv$TMR=', 'wp-includes/css/dist/edit-post/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qVCj1', '''''\Z!qt%-ь[~', '', 0, '?'),
('9%$@vu[', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-01.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-01.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hK);n]', '%p`@%#(ye7ڗ+}22', '', 0, '?'),
('M^{', 'wp-includes/blocks/term-template/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fYk2h0 Xn', 'j.:O((>I-@Gt', '', 0, '?'),
('O%Ө.r(', 'wp-content/plugins/code-snippets/dist/editor-themes/erlang-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/erlang-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dE*<Ѻ"', 'KLo0a(\\L͓<8[', '', 0, '?'),
('XBHԱdJk', 'wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '鲟\0\re?<', ',%k\Z.AgcNe', '', 0, '?'),
('\\eUdQ`iBP\nX', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/NameInput.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/NameInput.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-X\r}3+', '<=..O%R[-f\r"gS', '', 0, '?'),
('a58=!', 'wp-content/plugins/code-snippets/dist/editor-themes/dracula.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/dracula.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w!~Q,deU', 'OK,D\rwkbuqo,@,@q', '', 0, '?'),
('c0z-Wom4\n', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A9Vl-(', '!o)\nۍvR\n	ik<P]YnַN9L', '', 0, '?'),
('fMx	+9U', 'wp-admin/js/customize-widgets.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/customize-widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܤPAKe4NB;A', 'n<HIg\r!dcڙ(Я''', '', 0, '?'),
('g<\rX##ץ', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm4@k.1f(', 'KD[uO3/?Oc', '', 0, '?'),
('hp0W;Ax', 'wp-content/plugins/code-snippets/css/common/_type-badges.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/common/_type-badges.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gwe', '8-u]	!"pT8;~\n1/''', '', 0, '?'),
('jDc', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NotUnary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NotUnary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'htVb_h׾,', 'PWHJ/P]bŜ0c^', '', 0, '?'),
('m"rì:Bw', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֫Pud~7I', '\0uS?sXuW', '', 0, '?'),
('}m^E)Z', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!;NXғAs', '~i/v\Z-PV]w*\ZU4', '', 0, '?'),
('&𐯧o]3+g', 'wp-includes/blocks/post-terms/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4"h', '@\Z''_:e$)nF', '', 0, '?'),
('%\\MA', 'wp-admin/images/wordpress-logo-white.svg', '/home/binawebp/omsrislb.my/wp-admin/images/wordpress-logo-white.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qPC-SPD', 'e4E?&DsAʬ;)@Xɒ', '', 0, '?'),
('MF', 'wp-content/plugins/elementor/assets/css/templates/widget-alert.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-alert.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƺzʔn-r(ok', '4X\Zlя\r+3a̜un', '', 0, '?'),
('J}FE\09', 'wp-content/themes/index.php', '/home/binawebp/omsrislb.my/wp-content/themes/index.php', 0, 'gD,V=\\bP', 'gD,V=\\bP', 'k~	UH\ZxPĀ<;X', '', 0, '?'),
('c!P=Pv$', 'wp-content/plugins/elementor/data/v2/base/processor/before.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/processor/before.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#)]Tѱ;{', 'xY\r$3v)=V[=k', '', 0, '?'),
('e}ި;*', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƴ?0i_}', 't%6ղ: }ڞEr', '', 0, '?'),
('=}CiHT', 'wp-admin/network/profile.php', '/home/binawebp/omsrislb.my/wp-admin/network/profile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E3@%c ', '\\H.77QtUwݰAK,$A!Lz', '', 0, '?'),
('g+,c', 'wp-includes/block-supports/colors.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/colors.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g5+p', 'p8-6Nrϖzfl', '', 0, '?'),
('gI!٭_', 'wp-includes/ms-blogs.php', '/home/binawebp/omsrislb.my/wp-includes/ms-blogs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',<:W4OzK', '7VtsA4,e畡=xWsoZ', '', 0, '?'),
('ce8j', 'wp-content/backuply/index.php', '/home/binawebp/omsrislb.my/wp-content/backuply/index.php', 0, 'ySY', 'ySY', 'ݧ\\\n.nbeNY''p*tk', '', 0, '?'),
('tDXm\0#(', 'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+;^8v={KR', 'gxN@`jrm~v', '', 0, '?'),
(']/~qXŎE', 'wp-includes/js/jquery/ui/button.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/button.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@ |虖 Oa	^?', '9ϗM"u*y{2^mT,\r', '', 0, '?'),
('{;9ɛ6bob겕', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tW5', '	}0/Ѥ^?j&ʪ?	A', '', 0, '?'),
('kNe\n"3\Zh', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/puppet.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/puppet.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yi# ''}?B', '8vuGYNв!TGu7_yM;', '', 0, '?'),
('ɜKvtB|]Z', 'wp-content/plugins/code-snippets/js/utils/restAPI.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/restAPI.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''ڞEQFP', 'gkpod7e"Tַ|dj=Ivaӷx~R', '', 0, '?'),
('̩wnHͨf', 'wp-includes/sodium_compat/src/Core/AES.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ne񈞌Oq&A', '+xȶ w4EJ@7j흤', '', 0, '?'),
('%I#3<gZ', 'wp-content/plugins/elementor/core/editor/data/globals/endpoints/colors.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/endpoints/colors.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '52aE0GCee~', ')ۢQ(R~WʪLwX', '', 0, '?'),
('(ӥ`:lO,', 'wp-content/plugins/code-snippets/js/components/TagEditor/index.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/index.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ցƃD\0~', 'e\n4bbO\neRŞ)i;!nQ>', '', 0, '?'),
('B@R*GxF4N}', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''_?Sş\Z]y', '6[-,9YRr\rY"-an6$', '', 0, '?'),
('R\\&T	|`', 'wp-includes/class-wp-user.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-user.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T؎2ԁ7E!l', '+U+@iiE"$:[ưe~P', '', 0, '?'),
('Vl?', 'wp-content/plugins/elementor/core/settings/base/css-model.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/css-model.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0޺"q`A', 's=jA\nƂic{TsQ ', '', 0, '?'),
('Z14`+`<', 'wp-content/plugins/wordfence/lib/wfScanFileListItem.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFileListItem.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HaJMq3"ѭ', 'Cz>}/e~~lnˀVY,f', '', 0, '?'),
('tt̸T.*óU', 'wp-content/plugins/wordfence/modules/login-security/views/page/role.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/role.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/e\0$հ', 'rR>zDtWo՟٨E', '', 0, '?'),
('uV''j\ZV', 'wp-includes/blocks/comment-template/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߡiP͌', '7#KF\rϸJxP5gƆS}n', '', 0, '?'),
('ynm;/UsK	', 'wp-includes/css/wp-embed-template-ie.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template-ie.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ń7jR', 'Er)ckQ[yCχ=!', '', 0, '?'),
('|&;rLs5', 'wp-admin/includes/comment.php', '/home/binawebp/omsrislb.my/wp-admin/includes/comment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&[~ieF ', '$PC.egJ\rgdrmP', '', 0, '?'),
('}C,ɮeC}q', 'wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kh`Nͳc', 'fewv(:xoU\ZtK%E x:', '', 0, '?'),
('?~', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-redshift.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-redshift.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zo^^t3J5', 'Oǹ`v]\ru(hz4.©J', '', 0, '?'),
('{C@(msMWfg', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/AUTHORS', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/AUTHORS', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0s\0qZ\\', 'kc05gw#T)\ZHA(H', '', 0, '?'),
('Ye.0s', 'wp-admin/includes/class-wp-comments-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-comments-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-fd|m', 'r?V)gi $憒}AlbN', '', 0, '?'),
(',d$\\Zޟ^Wu', 'wp-includes/blocks/buttons/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6VOr"\n\n', 'Ԡ"S\\gZSl+?[\r62f', '', 0, '?'),
('k*lb3}', 'wp-includes/js/dist/script-modules/block-library/form/view.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/form/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8%AdoM)', 'Y54AYKߺ', '', 0, '?'),
('%*j:-', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeChild.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeChild.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S"20m''`%P*', 'F}m!HI81=s/\0R\n2NP', '', 0, '?'),
('Ao\rZԔ_t', 'wp-content/plugins/wordfence/views/waf/waf-uninstall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-uninstall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k?Dym\\', 'Slt`,{*0qN]z_]:=\Z', '', 0, '?'),
('4\ZZ9̴E[', 'wp-content/plugins/elementor/app/modules/import-export/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u"V/LmI ', '^ҺiU4=rX\\o''=_:ȓ', '', 0, '?'),
('ir?y/', 'wp-content/plugins/elementor/vendor/composer/InstalledVersions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/InstalledVersions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gnWjq̘', '|=\r..[Q8K"JF@5', '', 0, '?'),
('''-p-f', 'wp-admin/css/l10n-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/l10n-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UF{/?', 'H̭-{ȃr6@@5>', '', 0, '?'),
('jֹJ0Y', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p0W"F)8O', '5)&BoK]ػrm`%hO', '', 0, '?'),
('(JؿQ\rOj1', 'wp-content/plugins/code-snippets/php/front-end/mce-strings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/front-end/mce-strings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֠V3<', '\ri\\Uov%|cG2Gb', '', 0, '?'),
('"<	it&', 'wp-admin/css/colors/modern/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&D`a1', '\\ss/wZ])\Z	`@ͧgݫ)', '', 0, '?'),
('?Lie9lt', 'wp-includes/blocks/post-author-biography/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʂnX''''XU', '\nL]ZU3	&7=Zk^', '', 0, '?'),
('Ra~j,rVO', 'wp-includes/style-engine/class-wp-style-engine-css-declarations.php', '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-css-declarations.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8LKd(', '3#AjEr5]Stuf)sǱ', '', 0, '?'),
('r`sHI<', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-typescript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-typescript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"o0.<>#', '@V]''Ņe@hGF[ȩfI', '', 0, '?'),
('0wc`78M', 'wp-includes/blocks/gallery/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3JDFĭ~2?', 'kRELMX]lf,*hOI{', '', 0, '?'),
('߭WO&]m', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{QPwo[nF{', '/n0\\@Z~p{6=|ݶЦU=', '', 0, '?'),
('}&{L|!/', 'wp-content/plugins/elementskit-lite/widgets/social/social-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social/social-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nu#!b1ʫqf9', '\0˔|@\r՞''\0a)B9z6lL', '', 0, '?'),
('	fN[ 1hew.', 'wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm@!zହC', 'J1x#2ˈܧ8*''', '', 0, '?'),
(')A=? ', 'wp-includes/blocks/query-total/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r<X\nx_(l"I', 'f.dLJ fcU}d.q3t2㤦', '', 0, '?'),
('γ}<\\', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-13.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-13.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a-]UGM;Id', 'V''	]6 \ZԘ{=5\n', '', 0, '?'),
('5LYoh:O', 'wp-content/plugins/wordfence/modules/login-security/css/embedded.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/embedded.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eP:}:^', '''}-q8iβ!1TFWʆ\n', '', 0, '?'),
('8y%Df', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sass.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sass.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0ٻ?; %', 'W]z,,]˕8ӮJCo&}', '', 0, '?'),
('9hlDMXr', 'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';|FR;', 'rZe9(U򎴀qiI@', '', 0, '?'),
('=Q hYyt|', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q1G5\Z{/', '.3KfyQ!p|u44]', '', 0, '?'),
('A񟧶f*k', 'wp-includes/blocks/navigation/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԓL2(J~', '\rmbJa֡ Z^r?U-IMV', '', 0, '?'),
('Czg&P,7', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mel.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mel.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K\Z<᣶%', '!Lg\\U\\/PzRe#Ѵѯ00-E', '', 0, '?'),
('LbP-I׭1f', 'wp-includes/theme-compat/header.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G{\r(7ND:W', 'q2յϢ>r7Nj	D^A5\r', '', 0, '?'),
('Nd#R+r\0s[', 'wp-content/plugins/wordfence/views/reports/activity-report.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/reports/activity-report.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?uewD:E', 'ζ\Z)vvG,h/ӈ', '', 0, '?'),
('OwDB''sHo@', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/appveyor.yml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/appveyor.yml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GLc"H4j', 'UrT	p)MS3Jh:?', '', 0, '?'),
('hH޳3', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/rewriteTest.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/rewriteTest.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B8#\rPou', 'ks4kNZ?WG/IRݷ[K', '', 0, '?'),
('s:i1^I(', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gd.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gd.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u+I\n` I', 'J=9@MudQD}"Fg:#c', '', 0, '?'),
('t!\Z%\n', 'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5,}vĨ3G)', 'Er4@\0ԡ$z3$l\Z`iexl', '', 0, '?'),
('t(<u!b', 'wp-content/plugins/elementor/assets/js/ai-layout.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-layout.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WǬ''2d)', 'ԧ?J}o6\\^T!''T7', '', 0, '?'),
('q2<Mn\r', 'wp-content/plugins/elementor-pro/assets/js/custom-code.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/custom-code.js', 0, 'H_]1u6k', 'H_]1u6k', '1SEb^>g{1[\\Ǝa', '', 0, '?'),
('\\\Z]', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv-SE.po', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv-SE.po', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>?=iMC&Ot(', 'ٮw#Jc@/F3-^cVnܖ', '', 0, '?'),
('ӢXaB', 'wp-content/plugins/wp-optimize/templates/images/smush.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/smush.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b_0CԠ,V', 'f(F+Pٮ7uHos>', '', 0, '?'),
('6Jl 2', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z,*-"', 'Sh@y~^g>sT/zl,7', '', 0, '?'),
('{Y\\z錿}c', 'wp-includes/images/smilies/rolleyes.png', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/rolleyes.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' O2Ofݣi', 'fK)\nd!]\r)\\}זl^', '', 0, '?'),
('ԅaїye', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-less.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-less.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '];"%Վ', 'σ)MOJ661\\ia\rP\0r\rK֞', '', 0, '?'),
('\rf*', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/admin-style.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/admin-style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_ա<~@(RK=', '!7NQoJwzHTwLvwsP', '', 0, '?'),
('\\=\\\r?6\\t', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/font-awesome-pro.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/font-awesome-pro.php', 0, '&/0p\Z-H@9k', '&/0p\Z-H@9k', 'W3''1쎠9~낋i	1Rrr', '', 0, '?'),
('0#Gu$YDNϩ', 'wp-content/plugins/elementor-pro/assets/js/notes/173.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/173.min.js', 0, '''&޵4l,[', '''&޵4l,[', '''qp	*k\0`/(S', '', 0, '?'),
('(J,(\r\ZPwY', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-grow.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-grow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1Fr7', 's;	nS7ۇۼe1{X+', '', 0, '?'),
('4m*൹}', 'wp-includes/SimplePie/src/Restriction.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Restriction.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';{?]*~', '>;Ѐ\rJ*3!2CQ', '', 0, '?'),
('KŪ❻>', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/MutableDefinitionSource.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/MutableDefinitionSource.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȕ<fMdiv', 'a>ͿxlU/,O.N 72''h', '', 0, '?'),
('~tq.L"t-p', 'wp-content/plugins/wordfence/modules/login-security/css/ionicons.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/ionicons.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*ƣٿc;z', 'NJs@3	:h)7K<\\N+', '', 0, '?'),
('@k82upx*', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chrome.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chrome.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k{]esKi:3', '| C?8;62gJ403\0si', '', 0, '?'),
('?\0l.', 'wp-includes/class-wp-application-passwords.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-application-passwords.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۭ]r" ', 'z6P۬QrGPYi0k͝', '', 0, '?'),
(';Dt+Yqec', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialogs-and-buttons.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialogs-and-buttons.js', 0, '@KiY0', '@KiY0', ' Lș^o''&.#W614~', '', 0, '?'),
('2p)tI', 'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uJl#w*q', '&5aA{\\輾տUMpGO^,', '', 0, '?'),
('oRb', 'wp-includes/js/dist/url.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/url.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '轳T٣', 'g؆usb\\F*hSb', '', 0, '?'),
('{Œb', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/CN}2', ':mHbH6c5W˽Wd@', '', 0, '?'),
(' d<u<uW', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/batchfile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/batchfile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yPɗ', '`*Y,5RxP	%vR', '', 0, '?'),
(' !E8ܬR', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/livescript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/livescript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TT*խ}#qag', 'Jpg&ekveD˪ې', '', 0, '?'),
(' \r-Uz\raK', 'wp-includes/blocks/pullquote/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kȋ6]|EQ/', '0_\Z.%IxShl?:S', '', 0, '?'),
(' ɉ:s{1<', 'wp-includes/blocks/embed/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\0t됇', 'z%^`8\\oRhp˼&', '', 0, '?'),
(' ''_U;0/<', 'wp-admin/includes/class-bulk-theme-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-bulk-theme-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '²"Ax!k', 'g`DrEbA', '', 0, '?'),
(' *@ADғ=puE', 'wp-admin/user-new.php', '/home/binawebp/omsrislb.my/wp-admin/user-new.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dz:oi', ')ޏDvSl`+8k{\\', '', 0, '?'),
(' 1HޞxHb', 'wp-content/plugins/elementor/core/common/modules/finder/categories/create.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/create.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(DEO'']C', 'wǉjz/F;ԗNO/|3', '', 0, '?'),
(' 5rDg籃', 'wp-content/plugins/wordfence/views/dashboard/options-group-license.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-license.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.ڒ,XaXB', 'Fcm`$R,i3}r)1', '', 0, '?'),
(' >ym\nmH;', 'wp-content/plugins/elementor-pro/modules/notes/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/utils.php', 0, '\0_j\0^֒y', '\0_j\0^֒y', 'ySn"W/ҝ', '', 0, '?'),
(' ? h\nbXu', 'wp-content/plugins/elementor-pro/assets/js/search-form.6eb419c467197ca411a7.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/search-form.6eb419c467197ca411a7.bundle.min.js', 0, 'ܤEz1{#', 'ܤEz1{#', 'EGm,>xKr{-Pv\Z4', '', 0, '?'),
(' M u{<ݵ\Z', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet3.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet3.php', 0, 'Nca|FA', 'Nca|FA', 'ZҧW~F+\0', '', 0, '?'),
(' _VeqϽ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-file.php', 0, 'i{꠾\\', 'i{꠾\\', ' T4%XgPI\\B\ZxL', '', 0, '?'),
(' eCOyZi', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/TypeHintResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/TypeHintResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؼS觕i''#w', 'Kriq,i^A~8X', '', 0, '?'),
(' p}>U>J', 'wp-content/plugins/elementor/assets/js/ai-media-library.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-media-library.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۼ\Z2-ٷ;', '|?\nM+''`&''x', '', 0, '?'),
(' tҸSVr3C', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/classes-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/classes-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uqlm5-GB1', 'AAr0&$4)]\Zh?', '', 0, '?'),
(' u\ZZ&FUHڝto', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AHl\\', 'ږڮpV0KD\0~=^', '', 0, '?'),
(' {m\nܣeR)', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing-tab.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing-tab.svg', 0, '\\.@\rB', '\\.@\rB', '9''L_TYT,&IT^\0_', '', 0, '?'),
(' }ib$	f<;\0^_', 'wp-content/plugins/wp-optimize/optimizations/inactive-tags.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/inactive-tags.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';i3FD(ܐ', '2}k-y~gnhhs=t', '', 0, '?'),
(' ~y~I_2^', 'wp-content/plugins/elementor/data/v2/base/base-route.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/base-route.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cf*^b+', 'ny_>;ݹ`E<7WD', '', 0, '?'),
(' =i;[', 'wp-includes/blocks/require-static-blocks.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/require-static-blocks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K+MnM^I', 'JڏUT:NACg', '', 0, '?'),
(' Eryhtt', 'wp-content/plugins/wp-optimize/js/send-command-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/send-command-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2_rsB~9[T', '\\A\Z)VĊ=G2^', '', 0, '?'),
(' W,@{?9', 'wp-includes/blocks/post-author-name/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/i<_pZ\\', 'f>k%#|R%	w\\\n)uH', '', 0, '?'),
(' .@)ȩј ', 'wp-content/plugins/elementskit-lite/wpml-config.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/wpml-config.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!T^<X-:', 'dJ\Zxg:Nvrj;hX3', '', 0, '?'),
(' y>4lgR', 'wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gZ 8Z', 'y qkj|gY{', '', 0, '?'),
(' GʴGtؑ', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8NÝ\ZȖv듪', '+uRAefY)%;*\ZyU', '', 0, '?'),
(' zz{LH', 'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's/\00W', '1@y\Z{{,|VF=`', '', 0, '?'),
(' CvR2', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/documentation-thumb.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/documentation-thumb.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zۙvw{j', 'VxpzE\nY@|', '', 0, '?'),
(' 9lfymC5L', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}H%3', '!A^c})Tb{d&E', '', 0, '?'),
(' gUe٨', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-media.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-media.php', 0, '[viΐ!{', '[viΐ!{', 'ݖ\ZE-[JGsa8ӳ,A=', '', 0, '?'),
(' sձjAuN&', 'wp-content/plugins/wordfence/lib/geoip.mmdb', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/geoip.mmdb', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r]/k', 'D`;%vG/ڥ-1ß;}wIdq', '', 0, '?'),
(' ''nI>sD', 'wp-content/plugins/elementskit-lite/libs/emailkit/assets/notification.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/emailkit/assets/notification.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '75xV;-q/', 'GD]ac@7o=P1_', '', 0, '?'),
(' c̫)I\np,͑', 'wp-includes/css/jquery-ui-dialog-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dxy݌pLQ', '-##bCR*8H#YW(/', '', 0, '?'),
(' S\n#twQ:V', 'wp-content/plugins/wordfence/css/wf-ionicons.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-ionicons.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Alsj⯃', 'ג4ˮvM`VZ', '', 0, '?'),
(' +\n', 'wp-includes/js/dist/commands.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/commands.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\\\}Ckz	', 'Z8o~0RT8ްoNעy', '', 0, '?'),
(' t4${SE', 'wp-includes/blocks/categories/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&fE4:\\x]}/qK9 ', 'fbW0R^5c"KڊْBzrs', '', 0, '?'),
(' &LoԜ3', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>XoՂ盺ĺ]', 'nTq3]U=b2OAFxF]', '', 0, '?'),
('!o\rAv7e', 'wp-admin/update.php', '/home/binawebp/omsrislb.my/wp-admin/update.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+of$[D', ' vw 5aĉ5߃Xo( m5bv', '', 0, '?'),
('!HufɁD7>=g', 'wp-content/plugins/wordfence/lib/wfLicense.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfLicense.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N,NVz]', '@pvQ9֭Po4#G2Ý', '', 0, '?'),
('!1b݅9*\\', 'wp-admin/admin-footer.php', '/home/binawebp/omsrislb.my/wp-admin/admin-footer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"dƚ$6	U\r', 'u\nz9l\0I,#\n?YUV', '', 0, '?'),
('!C^-7kD\\', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-3.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-3.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<~DL', '\nٯ39k"B$HM:', '', 0, '?'),
('!Id]5$[~', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oL k''k1', '1\\Qt*J%s&', '', 0, '?'),
('!Li!<[`X#', 'wp-content/plugins/elementor/assets/css/widget-spacer-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-spacer-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '38mY"4Þ_', '!^3HMm[[z^FXUnYl', '', 0, '?'),
('!NrY}0l:^', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%J/-uCp[N', 'p!J8Tեcδ!S##77', '', 0, '?'),
('!Plu6CZ', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pe1', 'T*+z]ʜ;>\n3]?x', '', 0, '?'),
('!Sz/ѩ?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.interdependencies.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.interdependencies.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M4(A	o!30', '{G`89iR6-<`8', '', 0, '?'),
('!Uj_@Tb7.', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/multistep-form.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/multistep-form.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ۮx*.=', '{)HonZv_,O]d', '', 0, '?'),
('!_輵p3pnL', 'wp-includes/images/smilies/icon_eek.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_eek.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/I x)("', '8K҇4!:ʰ', '', 0, '?'),
('!r$imIa!DX&', 'wp-content/plugins/elementor/assets/js/image-carousel.6167d20b95b33386757b.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/image-carousel.6167d20b95b33386757b.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QHT{b*7n', '7-RͅfG	O^yR&qtR]', '', 0, '?'),
('!znBbL-jl', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڔ[~t3YR"', 'F"=&1ٍB1#v`ӻN}a/', '', 0, '?'),
('!|(yW*1Oo2Cu', 'wp-includes/js/wp-api.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-api.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`7\rJG	ϭOt>', ';_*B5喙GIC6x ', '', 0, '?'),
('!xx+![(', 'wp-includes/js/dist/list-reusable-blocks.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/list-reusable-blocks.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`]ح^yrɕ', '!ӓiL;]OAZ.'';N', '', 0, '?'),
('!,T`Q1', 'wp-content/plugins/wp-optimize/images/our-other-plugins/wpgetapi-sm.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/wpgetapi-sm.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Eýfu', 'lƄ?;KAv]', '', 0, '?'),
('!w<A\n@O', 'wp-includes/js/dist/hooks.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/hooks.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2bX?Ĕ', 'Y\\5&69''&.', '', 0, '?'),
('!\\Mu0	?+V', 'wp-content/plugins/code-snippets/js/types/wp/PostType.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/PostType.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Ge"\n Vw', 'd7ҳ#/ZryWT:O\n/;؂\r', '', 0, '?'),
('!^ɭ%|', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0o~@z', '+S9ŝyܑMa!y{T', '', 0, '?'),
('!_5O"~\nzIW', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>vcv', 'gJ{G\n>&qIdѫQe,;y', '', 0, '?'),
('!y''Ub#}', 'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zY衆:Lk', '3`R<!0)BWgHZ', '', 0, '?'),
('!>NNٌ', 'wp-includes/blocks/file/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eMiO/1	', 'T71g#Vsђ/dL?0l', '', 0, '?'),
('!#Z/y읨s', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/base-widget.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/base-widget.php', 0, '\r޸Rj@gl', '\r޸Rj@gl', '}\\\ZnМV''mvQ ', '', 0, '?'),
('!##sw:\rH*$q', 'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v0\ZOL=]6?C', 'xoB{NgmYK^_fI\n"', '', 0, '?'),
('!D+6Av8', 'wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H4h2-NRi', '>z%"TTնJa5a%''l', '', 0, '?'),
('!sV}-J', 'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve-asymmetrical-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƫid', '߯3/ Mq35ƌo\\=S', '', 0, '?'),
('!'')qM*Xc', 'wp-includes/blocks/embed/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_ZyǍ͞??m', '׈g`JC9yGȌj)A', '', 0, '?'),
('!RpnLwm7', 'wp-includes/js/tinymce/plugins/lists/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/lists/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')r?NぼIq''', '%=rdv\nizxu)3p', '', 0, '?'),
('!ہIǵ`8t', 'wp-includes/js/dist/keyboard-shortcuts.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/keyboard-shortcuts.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' m@Q\rSy%	-0', 'Z_ 3rn_6`\rfm\n', '', 0, '?'),
('!?s4{Khh', 'wp-content/plugins/elementor/assets/shapes/waves-pattern.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/waves-pattern.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l41Ky)d', '''''$r''+M?InCchݲ\\A', '', 0, '?'),
('!p3Xbid', 'wp-content/plugins/elementor/assets/css/admin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[3.\\"8\Z[', '4\Z&OVN$d15=xo!', '', 0, '?'),
('!9G~qn1r', 'wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\/ćg', '''Zr	mj[2"OՂ]YB5', '', 0, '?'),
('!Tۦ	lI\n', 'wp-content/plugins/wordfence/lib/menu_tools_importExport.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_importExport.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɳxm46c)', 'en*~aيc]ZbiXCq', '', 0, '?'),
('!>лӊ^[U}', 'wp-includes/js/dist/data-controls.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/data-controls.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5t*h+J..W', '1ܴyG4\\"MQ,\n.3{tHN', '', 0, '?'),
('!O4bCRRfO', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd\nrCO߶a', '2tӑ @fjxm>*4', '', 0, '?'),
('!Y0-z1dm>', 'wp-admin/js/plugin-install.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/plugin-install.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q܂y|RCgX/', '?UաNkhkGQTҗ[0N-', '', 0, '?'),
('!	휺8K.', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!A\rBh;', 'ߡ2>ÍgHr!*E}9Ϗք', '', 0, '?'),
('"\n4jSË', 'wp-includes/blocks/spacer/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'skk3zU)', 'u2Tz"-g&]Vj$O>', '', 0, '?'),
('"t\Z''̦ep', 'wp-content/plugins/elementskit-lite/libs/framework/classes/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pn:VQ', ';ޤF]_7e|}_kDfy}', '', 0, '?'),
('"Etys\Z|g', 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E	-No', 'LIYow)4!:;?', '', 0, '?'),
('"βVHvVϲ', 'wp-content/plugins/elementor/assets/js/nested-elements.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-elements.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F,bv', 'kn}*(WG|zu)bQ{{', '', 0, '?'),
('"\r↻7l~˝A', 'wp-includes/blocks/text-columns/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sM_$<f', 'D\\+(a8\rqv''9>R', '', 0, '?'),
('"c自=2', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U:l KQ3', '@J\0,ZN`''>b-V݉', '', 0, '?'),
('",=K1x', 'wp-content/plugins/elementor/data/base/endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/endpoint.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hPoz\nl', 'DN]	ˡG3viA@e6uBm\\o(_', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('"(}Gr	0V(', 'wp-admin/ms-options.php', '/home/binawebp/omsrislb.my/wp-admin/ms-options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǆf$Ȓ,i42', '9Z{Orj42xRpV_', '', 0, '?'),
('".IvcTiSc', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rst.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rst.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kzeaר', '.%F|nLJCof,n֘{', '', 0, '?'),
('"0rN1M#', 'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ytP>RaS@-', 'u{4sJ3H6owr', '', 0, '?'),
('"2)_OH#!', 'wp-content/plugins/elementor/assets/css/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qZ|J\r', 'y[E_ נ˟9L2{', '', 0, '?'),
('"83q-p}*^', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/svg-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/svg-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',xq;', '׊e$(jHǦL{]&84', '', 0, '?'),
('"8A\n=ᇼfp5', 'wp-includes/theme-compat/embed-404.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/embed-404.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';CQ5z', '47:V]L,BR$2pz񁇹', '', 0, '?'),
('"@\nsyc', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallbackNoMercy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallbackNoMercy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	N.n', 'N;H!c(Y܋}', '', 0, '?'),
('"IFn@a}9', 'wp-admin/includes/class-wp-themes-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-themes-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&ڶ]od!', 'P;[:ǯuɌ5nӺnVF', '', 0, '?'),
('"NMkVO', 'wp-includes/js/dist/data.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/data.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.PQG', 'w!]Jt?ܯ\rNp)E\nn+g', '', 0, '?'),
('"^''`!8h5횎', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G\rp*"=', '0E͈uՈz6yL''r', '', 0, '?'),
('"c\\DRc \0', 'wp-content/plugins/elementor/assets/js/dev-tools.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/dev-tools.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g\\S8\n{H/', 'L:O\0,#PRI\0{Vɦ', '', 0, '?'),
('"jg3OtzfXm', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.B<$yÑ', 'ldOJB>gS(X!', '', 0, '?'),
('"l 0WUt', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-batchfile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-batchfile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XjeGt8', '58Fk"!:m7kpr', '', 0, '?'),
('"q	K6A!', 'wp-includes/css/dist/reusable-blocks/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pEG.7Qm#', '14)\rEujV܏kv}z', '', 0, '?'),
('"}VcuQi', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1"G\nR8})fE', 'bkcBc[Yz&䶼S', '', 0, '?'),
('"=C^Ev\\', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/ServiceIteratorTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/ServiceIteratorTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5yQ>C+7~?', 'tqD$C\0kưU^+	+1)', '', 0, '?'),
('"K6^4V}', 'wp-includes/blocks/spacer/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2~Pa\Zjmެb', 'ghU:~M\ZLB3JM{\rW', '', 0, '?'),
('"LL2e^<3', 'wp-includes/blocks/post-comments-count/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g)Lxbc', 'H+^5wRfj	b4YnD', '', 0, '?'),
('"j1-<ԔQ2', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenStream.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenStream.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3}\ZTg}$', '=ru@!b7''u$', '', 0, '?'),
('"jʼw\\\\', 'wp-content/plugins/code-snippets/vendor/composer/autoload_real.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_real.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԈnӘ(TP', 'o]3-{뫖I1Z`', '', 0, '?'),
('"b9e|_', 'wp-includes/feed-atom-comments.php', '/home/binawebp/omsrislb.my/wp-includes/feed-atom-comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_mYD	[s\n8!2', 'ك+q8o_T_/zM<R=9', '', 0, '?'),
('"D*uoM>^0g', 'wp-includes/blocks/site-tagline/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WA;䊹', 'Н<+[D\n4Hvֳ-;', '', 0, '?'),
('"ۯ67?', 'wp-includes/blocks/site-title/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\ZgDokxl', 'OQ?vEo\0\ZҖ%\\H3', '', 0, '?'),
('"$׀C\\>M5Z@', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/video-icon.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/video-icon.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`bjhpR', '؋xBݙfy`K*jIPÏ', '', 0, '?'),
('"u>17', 'wp-includes/class-pop3.php', '/home/binawebp/omsrislb.my/wp-includes/class-pop3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ST'')Y''"l', 'ǔVr3HCCp+qբg0$˗\r^Z', '', 0, '?'),
('"Ћ୯''1=Ia', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/array-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/array-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n\n)⚮', '2ђ;:>tC2t<.|QZ>', '', 0, '?'),
('"6\r+K{\Z!a', 'wp-admin/comment.php', '/home/binawebp/omsrislb.my/wp-admin/comment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?9[d', '"	fuE9i`4''j', '', 0, '?'),
('"u@rX42&[E', 'wp-includes/blocks/comment-date/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[nB}\Z9>?', '#$Et''UA3Pss*3\\?V\r', '', 0, '?'),
('"wh', 'wp-admin/includes/class-automatic-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-automatic-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7$,X,Xo~N', '}3ƨ]8U7׉c:', '', 0, '?'),
('"ڬ<ř6Թs', 'wp-content/themes/twentytwentythree/patterns/hidden-no-results.php', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-no-results.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C!;C0lzMOe', '[BKtH/,_K,N', '', 0, '?'),
('"_,yO\\', 'wp-content/themes/twentytwentythree/styles/marigold.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/marigold.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '92Z@Aa', 'H1~2p^z`ڶ>`PF!NR', '', 0, '?'),
('"}`ΐ', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/page-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/page-title.php', 0, 'VmfvÏSzz', 'VmfvÏSzz', 's!Z,dY֦DiYu9\Z+Dnk', '', 0, '?'),
('"0\0L''M', 'wp-includes/sodium_compat/src/Core32/HChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/HChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '95ef#ϝ', 'i\rC"Գ\r48cS', '', 0, '?'),
('"܁bD[8', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeCaptureInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeCaptureInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>	$w', 'S	C\\^|ؐp?', '', 0, '?'),
('"9"iI', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^R@ٯ;zzE', 'a}J:Z18cM\n[+', '', 0, '?'),
('"DZ~\0|3', 'wp-includes/blocks/query/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MGG:(^\r', '`M;\0¼[t\n˳	jl	', '', 0, '?'),
('"J2\rߤ-H&', 'wp-includes/js/dist/date.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/date.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&\nPB=', 'Cl~jb&\r8ܕr1˥	f\\', '', 0, '?'),
('#\n/PZ~h', 'wp-content/plugins/wordfence/lib/email_genericAlert.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_genericAlert.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+I*kCe;PS', '_''\\qF0{ТF\r.OK', '', 0, '?'),
('#\r-ng', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/search.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/search.php', 0, ';R+2va\nC', ';R+2va\nC', 'nEΏwLG;DMVB-uU{E', '', 0, '?'),
('#"	.o&v!', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/lastChild.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/lastChild.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G:Й\03dsEL=', 'W''xz1%=|2C\rF:n_', '', 0, '?'),
('##F~Њc%%.', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j8 3gc', 'n$ƚdT034', '', 0, '?'),
('#6U;~\0c', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_!f', ',PVBJ6e#d׸', '', 0, '?'),
('#<~jx7', 'wp-content/plugins/elementskit-lite/widgets/team/team-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/team/team-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nr~iH', 'ύ**0P,Ӱ?ArN>', '', 0, '?'),
('#>3N4ÏI<kD', 'wp-content/plugins/elementor-pro/modules/forms/submissions/export/csv-export.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/export/csv-export.php', 0, '!U M8}', '!U M8}', '\Z\n&4PzGEeO', '', 0, '?'),
('#Dń5%', 'wp-includes/class-wp-hook.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-hook.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ZV,', 'ofX2QA(*m', '', 0, '?'),
('#bǦS~8Ǹ', 'wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̂P[7>n6v', '/H''w''''iEAt@*{ʷ\0d4C', '', 0, '?'),
('#f{+(MLO', 'wp-content/plugins/wp-optimize/images/features/optimization-preview.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/optimization-preview.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GSgvl', '.\r\ZgՍ"s}Q!(ĉ=9Q%', '', 0, '?'),
('#\\M@0T', 'wp-includes/blocks/post-excerpt/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	<\r''w9zR', 'OFsoKL*(\nb`fNXsSԚ\\S]', '', 0, '?'),
('#=-0Dm|+', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/WebPConvert.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/WebPConvert.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zm:+7q5p4', 'uQnjyGlg7Ȭ&\\j	', '', 0, '?'),
('#-g\\L%3S݋B#\r', 'wp-content/plugins/wordfence/images/wf-horizontal.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wf-horizontal.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E%Zlo9͒', '0	6ӭIvhJ`', '', 0, '?'),
('#\Z\r&~X', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/latex.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/latex.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'enLꉰѴ', 'Fqt8f3azX1Az', '', 0, '?'),
('#n	6"8ʏTz', 'wp-content/plugins/elementor/assets/js/packages/session/session.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('#f5Tni', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-color.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-color.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ё0\\@m9z', '@(z#v8z5SDyyZ̔', '', 0, '?'),
('#o}J$2!ys', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o|ub*#', 'Z_>C/xevV@z^', '', 0, '?'),
('#кvba', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Memcache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Memcache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q)P	^I,D', ']a8u4rii_FCH^A>', '', 0, '?'),
('#FǎEr:', 'wp-content/plugins/elementor/assets/css/widget-video-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-video-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'طC.P0Ax', 'U\rU\reKJX<NSEBԑ', '', 0, '?'),
('#iUfzhJF', 'wp-includes/sodium_compat/autoload-php7.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/autoload-php7.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n4', '-r*H^O<a{X@g +', '', 0, '?'),
('$\Z=''w@u', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/e-icons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/e-icons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G4	9S&v', '=0PeOⴤqkny', '', 0, '?'),
('$6DoȬ', 'wp-content/plugins/elementor/assets/lib/animations/styles/headShake.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/headShake.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sYVcF}', 'HoV%CZ~aKOU3nZDHx', '', 0, '?'),
('$7y]N', 'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ͩpm<j@''', 'Ċ8,QwGn a{G9D', '', 0, '?'),
('$WMHL5h5', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k8W9М/\0"', 'L~	?Dfg-H`Cm%\rjoѪ', '', 0, '?'),
('$[R.B@', 'wp-content/plugins/elementor-pro/modules/slides/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/slides/module.php', 0, '&?''2:IQko', '&?''2:IQko', 'O<ѱwX6\r&ZBO0>', '', 0, '?'),
('$tExO#7j{ ', 'wp-content/plugins/elementor/modules/admin-top-bar/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/admin-top-bar/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZY`AqXz\n', 'Sø,?z80\n1F7R0)r"', '', 0, '?'),
('$tNqu', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scad.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scad.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']82Ó<!s', '̰yg\rv)NϷaഃ', '', 0, '?'),
('$ZtztWm', 'wp-content/plugins/elementor/includes/widgets/button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fp,ߟ*џ', 'a	mPԕ>r/\ZF>', '', 0, '?'),
('$%g讇e|', 'wp-includes/js/dist/base-styles.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/base-styles.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lJF*D', '4bN×lU eg"xsjc', '', 0, '?'),
('$\n2U', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Key.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Key.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p3{G9偝', '|`W ʿ:w', '', 0, '?'),
('$0S\rr', 'wp-includes/images/smilies/icon_redface.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_redface.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*M0je[Y*', ']4\0 }S/Ah)', '', 0, '?'),
('$SCkdW', 'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-timelimit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!"V%		|', 'X>[6_\\a3sV', '', 0, '?'),
('$XL#gl', 'wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KrM氪o\\', '-if>\n2Ԯ_P~SAhˉV5', '', 0, '?'),
('$,<]8_', 'wp-content/plugins/code-snippets/dist/editor-themes/the-matrix.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/the-matrix.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NyRȯ"', 'c|cg3w\0NP0~ESe\rb7', '', 0, '?'),
('$%\ZdϽ', 'wp-content/plugins/elementor/core/upgrade/custom-tasks-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/custom-tasks-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FV99ޭYZ', 'C$^&5L4o=TzCghb\0', '', 0, '?'),
('$C/9', 'wp-includes/class-wp.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zy\rp!'',', '8\Z	CtX59j\0o', '', 0, '?'),
('$Ŏ+fo\rF', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Plugin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IK05Ɖn', 'H	>`omWL', '', 0, '?'),
('$ϸZ]J<.', 'wp-content/plugins/code-snippets/js/types/WordPressEditor.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/WordPressEditor.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A9.<%~劎', 'T;w\\m;d^*+I>ᩀ$V', '', 0, '?'),
('$G¯gS\\;3', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/CHANGELOG.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/CHANGELOG.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`ˉ{>S', '}kF0M&{agr3MM', '', 0, '?'),
('$-#q`l$Wۉ', 'wp-content/plugins/wordfence/lib/live_activity.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/live_activity.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iks', '^&Vb,sB^R4ѸV', '', 0, '?'),
('$|c \\~', 'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\^>5paW>', 'DCXG4WFP#NS\Z', '', 0, '?'),
('$CW#znL.', 'wp-content/plugins/elementor/assets/js/common.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('$\0c׭U&&', 'wp-content/plugins/elementor-pro/assets/js/preview.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preview.js', 0, 'SP̪ЖƁ', 'SP̪ЖƁ', 'OOkw8~U	VAh+', '', 0, '?'),
('$^6bH^*', 'wp-admin/options-privacy.php', '/home/binawebp/omsrislb.my/wp-admin/options-privacy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yT?\\yya', 'H%t~qgw`-D', '', 0, '?'),
('$ϫ/!C', 'wp-includes/IXR/class-IXR-introspectionserver.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-introspectionserver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SS<y3''', 'Q]!6{ߘ:nl}H{?m&R''', '', 0, '?'),
('$ul]+6', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/JL`$T7', ';oK.)\ZU]zni"', '', 0, '?'),
('$=_cr', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+e;)f@9l7Ƚ>', 'z[Ers]p0*6Vι[R)*z', '', 0, '?'),
('%\0Y!8z*Bnc4', 'wp-includes/blocks/post-time-to-read/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5gY揺', '܇Um)FԹ Ra!~!0*', '', 0, '?'),
('%r|݈Eq', 'wp-includes/SimplePie/src/HTTP/Client.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Client.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@A1jI=', '\nOZ8-z5"άtCH', '', 0, '?'),
('%	&	u	z7b', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%\\^q.4uToH', '	y5xRmXUzcژ\0x5((M', '', 0, '?'),
('%	ſkuXb', 'wp-includes/blocks/read-more.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p]Z"yҐ', '=''1]!</vBS`ƛ!', '', 0, '?'),
('%]M3T1T/', 'wp-includes/blocks/preformatted/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u\r{;"', '8B4[[m[Ns\0R,D"', '', 0, '?'),
('%7娳', 'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cڔ]|$~', 'i\rF@43BSpSoK\\', '', 0, '?'),
('%fNvn9,\rW', 'wp-includes/blocks/post-template/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qU)\\4{wzJ', 'pUK}Ja::B\Zv', '', 0, '?'),
('%$MqT<', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CUO\ZߠxtH', 'G\n"_/Agh	U?SsHבYٳ', '', 0, '?'),
('%..Ct=\\`', 'wp-includes/sodium_compat/src/Core/SipHash.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/SipHash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cJ>|Eqv0|bv ', 'ܟjpeMN?aXi+!S2', '', 0, '?'),
('%0jW:@7fM', 'wp-content/plugins/wp-optimize/js/delay-js.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/delay-js.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fǒ$PX', 'NimeXMu;ڷB^U<n!', '', 0, '?'),
('%=ƍI̮RZVQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dot.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dot.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o7Y> #', '5}^FɶAMDeXQ', '', 0, '?'),
('%^Xo', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-search.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-search.php', 0, '9)sd. p', '9)sd. p', '	c-"^5tm"(>1e³''P2', '', 0, '?'),
('%igcaW!q', 'wp-includes/blocks/cover/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%A j?݉', '3]MmPe$0&[nk-%', '', 0, '?'),
('%m|F!zS8', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/LICENSE.md', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/LICENSE.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UZ)''a5@', 'Di"Ǟt۱R@8uvu', '', 0, '?'),
('%p$zidq0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-fine-uploader.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-fine-uploader.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G=ȇ,>B', ',f"/^-T!/pI[', '', 0, '?'),
('%sqm!W4', 'wp-content/plugins/elementor-pro/modules/custom-code/document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/document.php', 0, '`c^=D', '`c^=D', 'nޓx\nЏ\ZD=rPKXo', '', 0, '?'),
('%w8`$}[', 'wp-content/plugins/wordfence/css/license/free.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/free.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aT.u!', 'Yh\nY	R[JTzO1C', '', 0, '?'),
('%{O_R', 'wp-includes/SimplePie/src/Source.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Source.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8O~5ſ[%7\0', 'bH4aC$!F;7z', '', 0, '?'),
('%:^Pδr', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̟G;ZO!Y;n', '_x~WZrѵHC	%#5d|o)/|u', '', 0, '?'),
('%B[|ï1So ', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/NullLogger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/NullLogger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',$jB', 'ʃ>7KO}"HsWÜx', '', 0, '?'),
('%\Z3;w', 'wp-content/plugins/elementor/vendor/composer/autoload_psr4.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_psr4.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v(	-#', '8p/m{B}l"IhHrL', '', 0, '?'),
('%9\\ދ', 'wp-admin/includes/class-wp-site-health-auto-updates.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-site-health-auto-updates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0߸%ٹԢ', 'I~ۑCl&*H"^[(?', '', 0, '?'),
('%m2q=K4ڷ', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N\ZT~/|g:];', 't`>wFA!]6(', '', 0, '?'),
('%Kz\ZeǱ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rY[t', 'm즟|\rv\nA?E{2', '', 0, '?'),
('%|-X2`JV', 'wp-admin/images/about-texture.png', '/home/binawebp/omsrislb.my/wp-admin/images/about-texture.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0m{oQKU', 'J>\\ˌk~2r!!ti+\0', '', 0, '?'),
('%BqIDJz', 'wp-includes/html-api/class-wp-html-tag-processor.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-tag-processor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̺tXRs', 'Z;pmڌa*]p؆@''_չ', '', 0, '?'),
('%8^V<t', 'wp-admin/edit-tag-form.php', '/home/binawebp/omsrislb.my/wp-admin/edit-tag-form.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '밇/.W#\n ', '\rRdu奿˫#dJL:', '', 0, '?'),
('%/([}|}g1', 'wp-content/plugins/elementor-pro/modules/forms/classes/integration-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/integration-base.php', 0, '\r\nؿԫd%b)', '\r\nؿԫd%b)', 'rVkO>CBm9h^x8o`?oQTha', '', 0, '?'),
('%1B3sL', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Invoker.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Invoker.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''<H񣅑^', '0k]-h3*0?`5"_Qvj', '', 0, '?'),
('%fW	P0}+', 'wp-content/plugins/wordfence/modules/login-security/img/menu.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/menu.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p]j-', '8#̄(8O"	+h"Fb', '', 0, '?'),
('%Pb.8Gdt', 'wp-admin/css/media.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/media.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɣ8>,:/', 'ʆ\r	:	#HgWL#', '', 0, '?'),
('%TՑt\n$3@n', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xe1`w', '\\^a@XGV\\IvC=(xsRG', '', 0, '?'),
('%vAaM', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpstan.neon', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpstan.neon', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=A''Wl8R', ';H~\nfi]ki''<]Q\nJ+', '', 0, '?'),
('%H#H''$M', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\2/1/'':', '}\\ONf÷ݖDgȾV܀hl-', '', 0, '?'),
('%a!+', 'wp-includes/js/dist/base-styles.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/base-styles.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ką7gZwm', 'a$V3\rd"m^G?/dmFiٯ~#', '', 0, '?'),
('%pCu@Q', 'wp-content/plugins/elementor/core/logger/loggers/logger-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/loggers/logger-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')WH6j8fCZ', 'FS,%W[ZmvmTvn{U', '', 0, '?'),
('%bmq\r+6', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5ٲE6̔G', 'PFQBC]߅5i"FgB\0', '', 0, '?'),
('%i2z[ˢs', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/config-test.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/config-test.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VrBc)7', 'h]V+_AbFe~QH', '', 0, '?'),
('&kKh~<q', 'wp-content/plugins/wp-optimize/templates/settings/may-also-like.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/may-also-like.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hDh"C', 'hMYѴ\\(\r2>o}88fmpk', '', 0, '?'),
('&;n|4G\rGv', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/firstChild.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/firstChild.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FNk,D0', '0Ԥә9jk4y\0', '', 0, '?'),
('&4''ܭL	{', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bz}>z@', 'yNmԑl1/.zA%\\ZFW', '', 0, '?'),
('&''`wƚ', 'wp-includes/js/dist/patterns.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/patterns.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V18=', '>r39MeEG-z"K', '', 0, '?'),
('&39Q&mOcQ', 'wp-includes/blocks/post-template.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UYEy=', 'FjTdXr\\?tRq', '', 0, '?'),
('&PDt?5u1Ym', 'wp-content/plugins/wordfence/crypto/vendor/composer/installed.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/installed.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xy~XC', 'B:zʉ̂DPڒl\Z-|', '', 0, '?'),
('&|0ԦZ', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~	sL%b', 'oE`2@\0DA+	c)!^', '', 0, '?'),
('&*dĆָ	H5', 'wp-admin/images/align-center.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-center.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	\Zݶ4ydY1e', '놽N3X!ljh`hA]J', '', 0, '?'),
('&=\Z+t"/k''\n', 'wp-includes/js/jquery/jquery.form.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.form.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@f4-|9Y', '2M?kUby${PbV!', '', 0, '?'),
('&A5%e~.knn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cirru.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cirru.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''7v诹BP', 'XU7ʡBvۓeqjba', '', 0, '?'),
('&X\nƗҍ®', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm+V%b}P#', 'hEP~gߪQR=[նk ֫=a!;', '', 0, '?'),
('&\\a^ǋ՚퀎', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haxe.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haxe.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=WLfބ', 'W&9EweMXN', '', 0, '?'),
('&]Q"ޖ\ZMHC', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&WSu=B', '\nӦ%}ői>(D/4', '', 0, '?'),
('&ee\n3KvZ', 'wp-admin/ms-delete-site.php', '/home/binawebp/omsrislb.my/wp-admin/ms-delete-site.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'goj14R ', '4_p	z\0XG+q!', '', 0, '?'),
('&g5Y錗xjOh', 'wp-content/plugins/elementskit-lite/widgets/heading/heading.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/heading.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n#I\rL1l', 'jGFH% Awhg~V_;xfz', '', 0, '?'),
('&h`l7ڜh', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/posts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tʑ!ev\0=', 'Ql۹\ZKn24үEj=0B&', '', 0, '?'),
('&k\0v_fcbv', 'wp-includes/js/dist/format-library.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/format-library.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VY9Kv)}@	', '&_Y\Zo;o=Bc_0(}Sq2n', '', 0, '?'),
('&sRX<', 'wp-includes/blocks/separator/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EOcm{', '/`i-^3җ;BT;#\0r}:j', '', 0, '?'),
('&t!0^gbJc,>3', 'wp-admin/upload.php', '/home/binawebp/omsrislb.my/wp-admin/upload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C˒Dy-3$Y', '{\\s)\rd[P$xSaPCgQ\\', '', 0, '?'),
('&xmf{$!]', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/site-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/site-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OaEnB	ښ/', '?C\ZhV\04n~EI+9丶lo', '', 0, '?'),
('&~*mE+nX%;[O', 'wp-includes/css/dist/block-library/common-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm؟1lPJ', 'rar6<^#/=z<Ojž4', '', 0, '?'),
('&DQRw]', 'wp-includes/sodium_compat/src/Core/ChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/ChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EޏVG\0', '3bwF\r5*6l7دDqM', '', 0, '?'),
('&굟\Z<Q&', 'wp-content/plugins/elementor-pro/assets/js/media-carousel.aca2224ef13e6f999011.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/media-carousel.aca2224ef13e6f999011.bundle.min.js', 0, '?xǧRN', '?xǧRN', 'kFo5ۢEjF''8sS)Xf', '', 0, '?'),
('&WFϩ{5g\nX', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P^1|*Q5U^O', '~@ۃP$tI7()WHn?U', '', 0, '?'),
('&ORL\nr"', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/url-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/url-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''!K!d9G|xw', 'jVFц~e3@"xV9<2@', '', 0, '?'),
('&\ZrY\r!', 'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kXZb5', '[\0NEggdq\r*''I', '', 0, '?'),
('&Rw?~jhJD', 'wp-includes/Text/Diff/Renderer/inline.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Renderer/inline.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2z;/Ï$m', 'x	2EZμ', '', 0, '?'),
('&+!!|/', 'wp-content/plugins/wp-optimize/css/admin-4-1-1.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/admin-4-1-1.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nhh]zyUq', 't%Y&^ڙ\\ZK2y+IcՓ', '', 0, '?'),
('&N2йA', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/subscribed-thumb.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/subscribed-thumb.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`׉=j^0;', 'nGV_޿?XE*\Z.\Zd`G', '', 0, '?'),
('&]0W\n)=', 'wp-includes/js/tinymce/plugins/directionality/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/directionality/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ErHDD3@', '<o@:-Eg)6^Ѽ''', '', 0, '?'),
('&ġD\ZF', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-plain_text.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-plain_text.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-H{89\n', 'lyaL½ѡf| .xn&"', '', 0, '?'),
('&$$', 'wp-content/plugins/wp-optimize/cache/class-wp-optimize-page-cache-preloader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wp-optimize-page-cache-preloader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CɅ(', 'UjwĚa;7fN|e/c', '', 0, '?'),
('&jwޡxvG6', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-attachment-id-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-attachment-id-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wr3', 'Mìph"4>.D|V\0ֆY', '', 0, '?'),
('&`OQ5Q43', 'wp-admin/theme-editor.php', '/home/binawebp/omsrislb.my/wp-admin/theme-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DٻhI`\r', '*qzAއl#.[hCM', '', 0, '?'),
('&	PshcusS', 'wp-content/wflogs/attack-data.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/attack-data.php', 0, '#ح\nyIb\r\r', '#ح\nyIb\r\r', 'l4Eq{''wg31cw:', '', 0, '?'),
('&/乫n\Z', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-note-position.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-note-position.php', 0, 'G7" tkVf', 'G7" tkVf', '\ZA1ID	:6xvc1BS''6', '', 0, '?'),
('&tQ\\j`qY', 'wp-includes/blocks/categories/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%!''g', '''Ύs+n[F<0@^T@k', '', 0, '?'),
('&vAQcqw8,', 'wp-includes/theme-compat/header-embed.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/header-embed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Omz8F', '})d!q	,@,jv	E', '', 0, '?'),
('&o\n~\raZ`Ni:', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__construct.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__construct.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DM14"&[OX`WL', 'u]@+`j\\Zٻh&e.0', '', 0, '?'),
('&✨a5\\', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rœnR͍y3', 'T2%S\0%ʜO''ŲIn', '', 0, '?'),
('&饱W؀|', 'wp-includes/widgets/class-wp-widget-links.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-links.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#F>Xnl', '쇉,x-DO,7шQ', '', 0, '?'),
('&/Qݥ(F', 'wp-content/plugins/elementor/assets/images/placeholder.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/placeholder.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2j\\y?1%bA', '!KKZ''9&K.p!x+S|6N~R', '', 0, '?'),
('&RdوK)', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/typescript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/typescript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E}sǚ0@JLFn', ';}ݓEWDzNZueѥ<', '', 0, '?'),
('''\rrr''2Du', 'wp-includes/js/dist/commands.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/commands.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u~櫔RK2V/X', 'ҥo\ZllW	\0bS3		`h8', '', 0, '?'),
('''j$ehpr', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-base.php', 0, 'G\n55h', 'G\n55h', 'S؝		\n''KB)gIqԱO', '', 0, '?'),
('''**JWe''pu/A@', 'wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&;@2a', 'iʅa!\\\nJbFR=', '', 0, '?'),
('''(զ,z 4AH', 'wp-content/plugins/elementor-pro/modules/scroll-snap/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/scroll-snap/module.php', 0, '5F->', '5F->', 'mAZZnX;3<"vY', '', 0, '?'),
(''')\ZQ-p8qv', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/constants.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/constants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a\Z";ð,', 'U2>P؁%{᪯B9k̽i', '', 0, '?'),
('''6}f$N^^', 'wp-content/plugins/elementor/includes/template-library/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/data/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's\0O-q', 'w\0C2S_L]u\0`Q\rbA.', '', 0, '?'),
('''=!ZaajUQ', 'wp-admin/css/site-icon.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-icon.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')%ҍa$-x', '#FgAa౯O+XzsVF', '', 0, '?'),
('''Ac,	~6ܦ', 'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/tour-overlay.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':% );\0', '\Z''ġ맪.s''sd4^I', '', 0, '?'),
('''D*()h', 'wp-content/plugins/elementor-pro/assets/js/lottie.565b778d23c04461c4ea.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/lottie.565b778d23c04461c4ea.bundle.min.js', 0, 'q"ܢaCDUac	', 'q"ܢaCDUac	', '4(K:c?ƽS=|^縤', '', 0, '?'),
('''Mw񑍷\rKj', 'wp-admin/includes/class-wp-site-icon.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-site-icon.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C	.kЛGcY0', '"j9VOjڬFdF}EPjl', '', 0, '?'),
(''']\\$m$6,y6', 'wp-content/plugins/elementor/core/common/modules/connect/admin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{kMC`#X', '?+''<*_Ym~ha&Gj;}m', '', 0, '?'),
('''_$۸+5\ng', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/InstanceDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/InstanceDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ƹpeؐ*#o', 'hzۨ8\\(p#tE݋i21', '', 0, '?'),
('''`>TT%WLG\Z', 'wp-content/plugins/wp-optimize/templates/images/smush-details.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/smush-details.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yyGr', '#+q%pZcI&t`wo\n#4bu\n', '', 0, '?'),
('''nqtR -p)nz', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sqlserver.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sqlserver.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oRPhő*:1', 'T{DS;{C> ݢ9!', '', 0, '?'),
('''n>tUMӶxNG''', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/UseStatementParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/UseStatementParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qHU"', 'Kkkux"\\ ', '', 0, '?'),
('''pKr X_.', 'wp-includes/class-wp-theme-json-data.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fu\0=õv', 'GPjQ6Ӯִmu', '', 0, '?'),
('''z|PRg`j', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-actionscript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-actionscript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n̉BqUʤ7\ZP', '+Z`0I<*An8ᕋb', '', 0, '?'),
('''})ѢyI=@-筤', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/usersettings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/usersettings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q\rҹ3ޮ\\u&=7', '>IPF\ZDqUm]m%YϗZZ*', '', 0, '?'),
('''	qU۾Ze', 'wp-includes/Requests/src/Exception/Http/Status505.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status505.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '."ڱʹ_', 'U4>Lt*C)S\0~;AR', '', 0, '?'),
(''' oS', 'wp-content/plugins/wordfence/images/icons/ajax3.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajax3.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mwߴtꍓ''\ns', 'dz\nyKƮ''#]x	VJR.=:', '', 0, '?'),
('''SK-', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/tabbr2.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/tabbr2.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	e8ӷM$6X|B', '$(<ΣmơG}׀ަ_QJ4x', '', 0, '?'),
('''iQl8Ny', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fE$$', '!(^|Y!!@>A5N', '', 0, '?'),
('''<S@w\Z.b', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?զ)X?N', 'bEԚB#:(#=_(\Z|U#', '', 0, '?'),
('''g|͹"jݹ2', 'wp-includes/js/jquery/ui/effect-transfer.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-transfer.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P _X"*', 'g\0m_E97OM9O(wO''}_3', '', 0, '?'),
('''_iYm1R', 'wp-content/plugins/wordfence/views/scanner/scan-results.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-results.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qxM!\nB+=L', ';Oҥv̉	\n', '', 0, '?'),
('''ʻ	1[z', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z>灂ҠOp5R', '''`''3	ݍHZu$}ˇD`\ZI', '', 0, '?'),
('''fgzcuqr|r', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-latex.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-latex.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݢvcO#/0', '/csr,0*#\\F0''C''U(q', '', 0, '?'),
('''\rq	ȂWL\nh', 'wp-content/plugins/elementor/assets/js/packages/session/session.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rO	trj慃', 'jWAkTt)%R>qN9', '', 0, '?'),
('(	d#<H', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/images/placeholder.9201fa54.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/images/placeholder.9201fa54.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qwa<A', 'D%V^9_ƎF1~ ~9S', '', 0, '?'),
('(|AsT', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/Jfdjޙ', '0>f!8iw<(5BLįmaP', '', 0, '?'),
('(g%\04l>', 'wp-includes/js/jquery/jquery.schedule.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.schedule.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Tkf؞', '?vEʔwjCP՝_', '', 0, '?'),
('(%.j}', 'wp-content/plugins/elementor/modules/performance-lab/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/performance-lab/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y\rO%"Xm', '߶g}<(iCNkʰz9Nxc''', '', 0, '?'),
('(''}V=,J?8q', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>{DB7f', 'Hm)sΧa}5VZVϠ[0Е', '', 0, '?'),
('()"L製`xc', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\#a7TW', '0i>|9lO{G"{D#e?', '', 0, '?'),
('(*SjFpY', 'wp-includes/SimplePie/library/SimplePie/Cache/Redis.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Redis.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`µ*t{', '@\ri-!ZMQ', '', 0, '?'),
('(00k9YA\Z', 'wp-includes/blocks/preformatted/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OoJ}[׻W', 'mA-`8	P ay<(', '', 0, '?'),
('(:q"9|`W-', 'wp-includes/SimplePie/src/XML/Declaration/Parser.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/XML/Declaration/Parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xW̯	^', '"W4R''ܛXinF''\r', '', 0, '?'),
('(?>SN揚&', 'wp-includes/images/media/default.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/default.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-IBh@b', ':oLJDj$->i''6n֠Ui', '', 0, '?'),
('(GLl#BQ', 'wp-content/plugins/elementor/modules/library/user-favorites.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/user-favorites.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U+<a厎aH]', 'O3+"5r.m9c麈$XҘ=Ca', '', 0, '?'),
('(Jxm&SV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-javascript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-javascript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fRXZ]', 'A4\r8`|.0?cRUCsZ', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('(WQ=3yb6', 'wp-includes/cache-compat.php', '/home/binawebp/omsrislb.my/wp-includes/cache-compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P֛צ#ڊ57', 'fOT҉=0''"6V<AB', '', 0, '?'),
('([dBQ', 'wp-admin/js/updates.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/updates.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mI;(`[z.', 'b''YP;橌$r)8)bD', '', 0, '?'),
('(fwb\07N0p0ٷ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/ace-loader.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/ace-loader.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Q	EH}"b', 'X<Wcԁ9~''|-', '', 0, '?'),
('(k9Qѣ?x7', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A.6OJm ', '~0+48N\Z=T_jw~V', '', 0, '?'),
('(lօ+%mGI@', 'wp-includes/blocks/rss/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ḊCk51"', ':A;&Ӻ[29A)<a4', '', 0, '?'),
('(x*J,LÛn<K', 'wp-content/plugins/wordfence/images/icons/arrow_refresh.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/arrow_refresh.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kw``|}$G', 'u/2/@H_Ilh/aU:	', '', 0, '?'),
('(~6vqV0{"', 'wp-includes/ID3/readme.txt', '/home/binawebp/omsrislb.my/wp-includes/ID3/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bK~䮏】=Cl', '5+P$+ʨ7e', '', 0, '?'),
('(v|T— ¥', 'wp-admin/includes/screen.php', '/home/binawebp/omsrislb.my/wp-admin/includes/screen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@m.Q*KI', '%tgG_!	_@G', '', 0, '?'),
('(''RQԦC۫', 'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؼ~G|]+\n', '2_21!ڋo.˰', '', 0, '?'),
('(,b-e0}9y', 'wp-content/plugins/elementor/includes/controls/image-dimensions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/image-dimensions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@,.&kF}6', '- w\nE\Z^H&W ', '', 0, '?'),
('(8)>d>XL_', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.3ee10d01e625dad87f73.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.3ee10d01e625dad87f73.bundle.min.js', 0, 'j`9<_(5DQS*', 'j`9<_(5DQS*', 'nn,o:>\ZzT^7', '', 0, '?'),
('(R (÷fӂ', 'wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.1b99c4c759d36bf88cb2.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.1b99c4c759d36bf88cb2.bundle.min.js', 0, 'к7 ZA\0)=2', 'к7 ZA\0)=2', '5cUtE0\r0P<', '', 0, '?'),
('(C\rFl>qp', 'wp-content/plugins/elementor/assets/images/app/site-editor/search-results.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/search-results.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~ҡ:e\\^2l', '. nPh:Y䋰Xd0$)`\09', '', 0, '?'),
('(Tk|ksT', 'wp-includes/blocks/post-author/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	yj1', 'jT34TS,/܃¬^1=R', '', 0, '?'),
('(Y''^kz!q', 'wp-includes/js/dist/block-directory.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-directory.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wѥ5', '49%~.n`5R]|J8r&-f', '', 0, '?'),
('(M=I4~ 	', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!嬊M%WdxP', ':\0kc;Mq\nJfM㋢Ty', '', 0, '?'),
('(ztʓJ/ul3', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tap_list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tap_list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ԟ\\{,l', 'C#֤=3(/|XK܋', '', 0, '?'),
('(\\>bz', 'wp-content/plugins/elementor/assets/css/app.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݢ4y', 'ܾK6KB_B4"rkuo<0r', '', 0, '?'),
('(8l\\(', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-header.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-header.js', 0, '*_GEhV', '*_GEhV', ',4lҮViQ*YiQz3', '', 0, '?'),
('(Օ)(pwBl', 'wp-includes/js/dist/list-reusable-blocks.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/list-reusable-blocks.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tVfg(', 'dtK`VLik>^+n&', '', 0, '?'),
('(|ZxT[u', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z?(EWup', '+D\0ej\rgϧ4', '', 0, '?'),
('(>f0\Zg[|', 'wp-content/plugins/wordfence/lib/wfJWT.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfJWT.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}{ jNcK', '0mhN`xx~HLjsOP,', '', 0, '?'),
('(e.{a', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/google-fonts.json', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/google-fonts.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9`"ܛ滊,j', 'a#嫧`CZ;%5$g', '', 0, '?'),
('(LS[Wl#', 'wp-includes/sodium_compat/src/Core32/Int64.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Int64.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Хx	^5', 'H3y&k3}:', '', 0, '?'),
('(s3TNo(', 'wp-admin/images/freedom-1.svg', '/home/binawebp/omsrislb.my/wp-admin/images/freedom-1.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(9f\rOJ\Z]', 'eMO8\0\\\07', '', 0, '?'),
('(^3N3', 'wp-includes/wp-diff.php', '/home/binawebp/omsrislb.my/wp-includes/wp-diff.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZL?\rςȶ@A$', '#:><ԖcB\0Uc;ΈIC', '', 0, '?'),
('(''i^c', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'piR"o-/\r', '$sE''m&h}[&;X', '', 0, '?'),
('(g&飣ƍ@$', 'wp-content/plugins/elementor/assets/js/admin-feedback.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-feedback.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i=oPABT:', 'ؘ(EX5D-?7Ai', '', 0, '?'),
('(3)vk0', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3\\9mVB!㉯', 'GuW\r~:*\Z/iW5', '', 0, '?'),
(')\rAUrM! ', 'wp-content/plugins/elementor/includes/controls/box-shadow.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/box-shadow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E$D92P^0W', 'FvqąPY3κ', '', 0, '?'),
(') ^4hH\r%n', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pgsql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pgsql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\0S', '(7ҝQWH8\0=aќ@x', '', 0, '?'),
(')#rl''erE^o8', 'wp-includes/sodium_compat/src/Core/AES/Block.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES/Block.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x9g1CC', '	f-	֫}e9`-''i3U', '', 0, '?'),
(')#N40', 'wp-content/plugins/elementor/assets/js/packages/http/http.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';"	+88~r', '''\\\\sf&-o6&K,T', '', 0, '?'),
(')''hL휞\rЀ^', 'wp-includes/blocks/page-list/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@؛^}b', 'oMp+pxȻy#\rD-9h=', '', 0, '?'),
(')4>J9Ȏ&e', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-css-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-css-trait.php', 0, 'K_ML4E)+''', 'K_ML4E)+''', '9? d}8mb@8oG', '', 0, '?'),
(')FTjCJcG', 'wp-includes/blocks/image/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/R!vm-l', 'ˍF\Z6kc-{vBYW@p', '', 0, '?'),
(')ZhF\Z%?W', 'wp-content/plugins/elementor/assets/js/import-export-admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/import-export-admin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fՍ(ֆ#', '\0S(\\jf2ww\0uK\Z<', '', 0, '?'),
(')e{`gx\nn(', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-coffee.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-coffee.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sYaRm,*', ' yt83=MImkP\0', '', 0, '?'),
('){2JA);<Da', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-link.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b:', 'nb׏A{W#a(^:P]', '', 0, '?'),
('){jW-_Q=?GlҢ', 'wp-includes/media.php', '/home/binawebp/omsrislb.my/wp-includes/media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r5]Up=NU-(', 'MbKP1\\U\\[pb', '', 0, '?'),
(')&`&X	', 'wp-includes/js/dist/preferences-persistence.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences-persistence.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CQ^)aŏUt', '8WP37ΉT\0`UwP	&r$''m', '', 0, '?'),
(')3\rr-ty', 'wp-includes/blocks/media-text/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ï2rܴ4'')', 'f07BM壆Mڥx4J', '', 0, '?'),
(')2J{:p#', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/forms-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/forms-controller.php', 0, '\n=-c<]p2F"', '\n=-c<]p2F"', 'y.>&zs376^|%kPsJ&', '', 0, '?'),
(')T7at/', 'wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QOdUJBb', '1wJ@,mtIBd[GW', '', 0, '?'),
(')7{\r);2i+', 'wp-includes/blocks/read-more/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uֶ.Yګ[', '3!xY?2=^&ɫF<No3L', '', 0, '?'),
(')m=WiE', 'wp-content/plugins/elementor/assets/images/containers-announcement.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/containers-announcement.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YbN', '6Z^LMjch6', '', 0, '?'),
(')3C2b.', 'wp-includes/blocks/comments-pagination-numbers/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǛA1PúF.O;', 'BDujK	Ǡ->^©\rr', '', 0, '?'),
(')Oz=u˷', 'wp-includes/rewrite.php', '/home/binawebp/omsrislb.my/wp-includes/rewrite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p|eGJD=i2', ')6m4nSKffwM', '', 0, '?'),
(')&L5+''{', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/generatepress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/generatepress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y*\\FȆJl+,', 'B<E|?x\Z\0ore\\v', '', 0, '?'),
(')Ei\0m.nZ8', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']y', 'CظWH-NL?qޓF', '', 0, '?'),
(')6#_̟SAF', 'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-repair.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9gs `V', 'j(ؠ\r	緪U+.d', '', 0, '?'),
(')]Z$P%', 'wp-includes/embed-template.php', '/home/binawebp/omsrislb.my/wp-includes/embed-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ceVbӻ5=', 'Fn<7[zON\ZpE3@rB0', '', 0, '?'),
(')6=Z9&N', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/woocommerce.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/woocommerce.php', 0, 'CʃX', 'CʃX', '//=j\ng\n!W䢵NQ', '', 0, '?'),
(')?X˺', 'wp-content/plugins/code-snippets/dist/editor-themes/material.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';pkgw}(_G ', 'J\nE	0LmöMv	', '', 0, '?'),
(')警QQ/Y9', 'wp-includes/blocks/page-list.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X~w+1UjX', '?=BZ rӍAZҾ-', '', 0, '?'),
(')I\nΆVq{', 'wp-admin/authorize-application.php', '/home/binawebp/omsrislb.my/wp-admin/authorize-application.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&l"Ȍh', '9?sNVd:O+''(j'';Sq', '', 0, '?'),
(')"PɵK', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthorization.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthorization.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IsfRZJq&ʕwh', 'hw.\\NC+酟uC2Jai4=', '', 0, '?'),
(')`f,u4', 'wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`/4gVFm', '3\Z,\\\n5)f\n[V*Ka8z', '', 0, '?'),
('*J/\\axZP', 'wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-with-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-with-page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vRՃ6po', '''txy+U@V#K˚cd΁#P', '', 0, '?'),
('*".;-a', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.d1546764ef2c2b02bcd4.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.d1546764ef2c2b02bcd4.bundle.min.js', 0, 'uS(<&', 'uS(<&', '	)\Z {}:wPeZ', '', 0, '?'),
('*]˽A΄J', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AJŏ\\\\޽', '&A/+smMRV^7I)з', '', 0, '?'),
('* aF4uvU', 'wp-admin/images/menu-vs-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/menu-vs-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JZY<iYb', '''FєE\07ɡ#>sePض', '', 0, '?'),
('*.^3=(vw\ZH', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~^^>#&j', '⻘\rJlź["TVl85', '', 0, '?'),
('*.pYْ', 'wp-content/plugins/wp-optimize/templates/minify/analytics-settings-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/analytics-settings-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3K9~1', 'Z4fǑ^6Cw_Th;6', '', 0, '?'),
('*.>A3+:', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/InvalidArgumentException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/InvalidArgumentException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}/X5$9/e', ';5bGSB:e}!q|z6', '', 0, '?'),
('*1hXf#', 'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_wB{UD', '8j;SYcXXaؐA', '', 0, '?'),
('*3,_Wq`r_', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Report.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Report.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\0:>Kp', '[{|rk{Г/J\n˗S{3F=ް', '', 0, '?'),
('*DJ椔=&', 'wp-content/plugins/elementor/modules/wp-rest/classes/elementor-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/elementor-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V}71ED9_', 't7z8~XhI4?', '', 0, '?'),
('*H0ݰKbVq'']', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Lines.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Lines.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{fjIwF', 'le&X4Z\Z$Js(_Y^*\\@]', '', 0, '?'),
('*L4`A,(', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/loadFile.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/loadFile.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$d	n>0]', 'KD]JD"#vC(5ţy', '', 0, '?'),
('*TǚqG6RH', 'wp-includes/blocks/site-logo/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sg50N\n-7', '6\0e<Rvgj\0<V-`', '', 0, '?'),
('*V.XZ_C[AԀC3', 'wp-includes/js/dist/keycodes.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/keycodes.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h{1nM', '$KZʧ\0F$56\0e}Mi	', '', 0, '?'),
('*]Ҡv|\\c', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/schedule.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/schedule.svg', 0, 'wtSc', 'wtSc', 'FW#䉸7ɲj', '', 0, '?'),
('*^+QoP 47W9', 'wp-content/plugins/elementskit-lite/elementskit-lite.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/elementskit-lite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&RJhUX=', 'q(xdg V2`(L]+\Z', '', 0, '?'),
('*bGVXȴU[rx', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-statusbar.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-statusbar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K7js', '38Eny$\\Օ]dJ', '', 0, '?'),
('*wa++`U4;', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-19.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-19.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0-ź', 'DU$>D}', '', 0, '?'),
('*ug|o3y', 'wp-content/plugins/code-snippets/php/class-active-snippets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-active-snippets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l5+,ݧ,qc|', ';h/>Y!/]Y2\r', '', 0, '?'),
('**W852~', 'wp-includes/css/dist/reusable-blocks/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MWZL', 'bWD.$L}.,ak', '', 0, '?'),
('*-3uE[O#', 'wp-includes/images/down_arrow-2x.gif', '/home/binawebp/omsrislb.my/wp-includes/images/down_arrow-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Mf', 'w\0qpq5T#\\', '', 0, '?'),
('*ǛU\Z\nS~\r}', 'wp-content/plugins/code-snippets/css/prism.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/prism.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nœ[9*m-F', ',rPjf0!\rSBzf͛z"4X>\rc', '', 0, '?'),
('*b*ee', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x\\8zM~.', 'vR\0S~[\rҮ6o:Ś\r]', '', 0, '?'),
('*Lm&&2\nb', 'wp-includes/js/tinymce/utils/form_utils.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/form_utils.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';RTj鍉\n', 'ꚅ\rgH	K>醶%2', '', 0, '?'),
('*`Uz]"L%1', 'wp-includes/sodium_compat/src/Core32/HSalsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/HSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/Dzxǂ', ',E{0/maXi', '', 0, '?'),
('*\Z07ѥ1Oَ8', 'wp-includes/js/json2.js', '/home/binawebp/omsrislb.my/wp-includes/js/json2.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZSmՕliBjb', '!XfD6p;O1@', '', 0, '?'),
('*	ą\\', 'wp-content/plugins/wordfence/views/options/option-toggled.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Du\nLE', 'L8M0=Ykb|59b+z:4', '', 0, '?'),
('*!0a', 'wp-includes/js/dist/admin-ui.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/admin-ui.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h=P(Je\Z', '<\r`=8*uWۄYw&EBT-1ϔ@Y', '', 0, '?'),
('*jHWV> f''', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsx.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsx.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ndr2', ',Վ''u8Jin/\\%ri zF', '', 0, '?'),
('*/M>BTLo', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/base-endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/base-endpoint.php', 0, 'MuͬR!/raU', 'MuͬR!/raU', 'oJ5D\n׋ۘZ_eօo&nX', '', 0, '?'),
('+xR%]G-~z', 'wp-content/plugins/wp-optimize/css/wp-optimize-global.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-global.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!ay)n', '^[T-YH5/=JLvi', '', 0, '?'),
('+BC$\Z', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n CA|~', 'Ӧ"|jAi~3[6#&', '', 0, '?'),
('+(-V&S_2X7f', 'wp-includes/blocks/paragraph/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G2\\QNռ\nHt', 'Jdzg\n>I|-LBa?,cΠ', '', 0, '?'),
('+1X:	b', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pascal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pascal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'el`鰠E^', 'SX!B?$&!B״[+', '', 0, '?'),
('+\Z#(ƒv', 'wp-includes/blocks/comment-template/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')mKtd;xu', '	E2wb\0RI*J0黷ʼ', '', 0, '?'),
('+ac*6Ǿ', 'wp-content/themes/twentytwentythree/patterns/hidden-comments.php', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gmuҊ'';', 'h޴ޘ	4m>8ws7H]O', '', 0, '?'),
('+ >vm>)\Z', 'wp-content/plugins/wp-optimize/templates/database/tables.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/tables.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r/{+P', '`ܴ;6\r!FV\rJ<V', '', 0, '?'),
('+ 1xF;Sb', 'wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aQY+f', 'XpnuO(:abPQ馃z7', '', 0, '?'),
('+&MщqYv', 'wp-includes/blocks/accordion/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oJCX$R', 'pVNeBG!;', '', 0, '?'),
('+,5[!vx', 'wp-content/plugins/elementor/includes/editor-templates/global.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/global.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z:$F$', '\\Po!_\ZWGM\\K9\\h', '', 0, '?'),
('+9[BUEe', 'wp-admin/js/updates.js', '/home/binawebp/omsrislb.my/wp-admin/js/updates.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+e;q>kU/', 'T3lh?rfk''kڭxm', '', 0, '?'),
('+=z58Q', 'wp-content/themes/twentytwentythree/styles/sherbet.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/sherbet.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K+-@P|O', '\n558@Kݘt''uR zxw', '', 0, '?'),
('+H"q4\Z>Q9', 'wp-content/plugins/elementor/assets/js/e-react-promotions.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-react-promotions.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm˟:407\r#X˝*', 'B3˵*}ID̤bq3!Ht', '', 0, '?'),
('+QgkpmIGv', 'wp-content/plugins/elementskit-lite/widgets/social-share/social-share-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social-share/social-share-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`kG1@l0', '#+AjRts\ZgJ|`P:^', '', 0, '?'),
('+Wڍb/Z\Z', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`LU#R1', ',ޢxҘߨ1GFz[+-ph', '', 0, '?'),
('+d<E|S`', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b%4svݏ֭a', 'u\0[׌.a-p[M)qC#', '', 0, '?'),
('+@bRa', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/perl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/perl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/5\Z1),c', 'qJnw8׏`?mEo\r@APf', '', 0, '?'),
('+f=TU', 'wp-includes/SimplePie/library/SimplePie/Locator.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Locator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r[1d"Q3*', '2Ռj_<Y*uC!AF', '', 0, '?'),
('+HSVr㎤EJYe', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-space.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-space.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>}69T', 'Wz;$	Hr+^QcsAaۭ', '', 0, '?'),
('+G*#f', 'wp-admin/network/site-info.php', '/home/binawebp/omsrislb.my/wp-admin/network/site-info.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H[\r`LvC', 'mޥEdn*.	DuB66o{#v', '', 0, '?'),
('+\ZDZe}', 'wp-content/plugins/wordfence/views/onboarding/plugin-header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/plugin-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6EiXl(%A\\a', 'PRlՙg\\@EMYs\0', '', 0, '?'),
('+Hj~', 'wp-includes/blocks/read-more/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')h@|-M;V\Z_ۑ\n', '{شJh핶''PP^yK34W+', '', 0, '?'),
('+t%R?', 'wp-admin/network/credits.php', '/home/binawebp/omsrislb.my/wp-admin/network/credits.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B+KVe=', 'WNhK2ZFW\r08J5', '', 0, '?'),
('+bI=qY', 'wp-includes/blocks/freeform/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VXEHei.ط', 'b+<ev\\2\0J*Y 04ߙqb', '', 0, '?'),
('+3sfB>w3-\Z', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@izNpMo.m', '׮@ʥM{\r$?Es/C\r{', '', 0, '?'),
('+@D~1', 'wp-content/plugins/wordfence/js/jquery.qrcode.min.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.qrcode.min.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԹXp`me<', 'wP\0pzuYDSz(WߥP3$S', '', 0, '?'),
('+yt\0,`', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-11.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-11.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f\nQ3G.b', 'w\rO\n*P9G"$$a5\02', '', 0, '?'),
('+R9k|X,', 'wp-content/plugins/elementskit-lite/modules/header-footer/cpt-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/cpt-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dJ)pk', ']mro''8^yc@Q\r2C.o', '', 0, '?'),
('+Md}` B', 'wp-content/plugins/elementor-pro/modules/global-widget/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/module.php', 0, ';p?[*3	;w', ';p?[*3	;w', '4r5]r\0h}g?5yEWI4F', '', 0, '?'),
('+1#Dկ\n', 'wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/import.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!ZjH;0[', '\\[0MmFƄ', '', 0, '?'),
('+HaF,\rO>|', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/previousSibling.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/previousSibling.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zMGt]M', 'Ͷ^0Adrf-mLЁ=:WIk', '', 0, '?'),
(',hi^\0', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/link-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/link-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BLbNyΛ', 'E8M~:w''&^}', '', 0, '?'),
(',\ZJ''AWh', 'wp-content/plugins/wordfence/views/options/option-label.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-label.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''`a ', 'yDFR#\\\\F/G%RYx!B6a', '', 0, '?'),
(',EmqB', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceSet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceSet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CJudYZ', '00z݉E|w!"KȁdX', '', 0, '?'),
(',X^^wX', 'wp-content/ai1wm-backups/index.html', '/home/binawebp/omsrislb.my/wp-content/ai1wm-backups/index.html', 0, 'A-pޜ\r͈V', 'A-pޜ\r͈V', '=+O²2E[VOD', '', 0, '?'),
(',2t:(k', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-reset-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-reset-controller.php', 0, 'ܨR(0myϰa''', 'ܨR(0myϰa''', '<݌Q`gŴՖ.N֌H', '', 0, '?'),
(',8zfD7 >', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rN''~YP%', '-b"CZ)bUk(\Z=', '', 0, '?'),
(',9,G\n((`̊Q', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't%`\Z[', '<!nǈ_Aze}ȼA+/Ou"', '', 0, '?'),
(',< ?C]0A', 'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ͶU裦h', 'ehӧ&έA3+WTh\n\Z)?', '', 0, '?'),
(',F"ݍaOr2', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8~C.', 'h>,Р\r7C', '', 0, '?'),
(',IpUwbA@#', 'wp-includes/blocks/spacer/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '64g1)b', 'SWli"k0ML[T', '', 0, '?'),
(',Rq=LV&', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '86=R', '>A#wݞLC%YOKY !M', '', 0, '?'),
(',R3Z9iG', 'wp-includes/blocks/search/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O1f43Ѽ_0', '}+{Ȗ19D\0W0S(\0sj(%%p', '', 0, '?'),
(',]''N%ݑUeT)', 'wp-includes/js/dist/annotations.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/annotations.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ײcchP', 'H©,@Z!$ /RF', '', 0, '?'),
(',h^【+_&', 'wp-includes/blocks/comments/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yNu	&FeHp', ')>VSKp(7H3w@e\09ǉ', '', 0, '?'),
(',hՏ˗e~L', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q>ia-#', '{;JC,|{V_ˢG/', '', 0, '?'),
(',w?vP5x', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R	fjG!i$', '6.*Ѵ<83S', '', 0, '?'),
(',zeY#uJ~[P\r', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' OpR{ҵGݍ', 'Y:BP5Ms_.ن֎', '', 0, '?'),
(',@hjqrޒ', 'wp-includes/ID3/module.tag.id3v2.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.id3v2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''RI`sb', '8t`pLf&Hp);%', '', 0, '?'),
(',uK;zCի\n', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/layout-direction-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/layout-direction-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dΓ2+V', 'tnR_"݉kR>N\nB_?7', '', 0, '?'),
(',#ihxar', 'wp-content/plugins/wp-optimize/templates/admin-page-header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-page-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E8oմA', 'ցCĸM	Q_svV=\Z', '', 0, '?'),
(',6JZnPIf', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/js/central.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/js/central.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}.|C&/U|8', '伭jx$P$ʠBAUO', '', 0, '?'),
(',-מYa(,', 'wp-content/plugins/elementor/includes/widgets/toggle.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/toggle.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zXEe1eAK<', '楅K&ڠa8Af*oS', '', 0, '?'),
(',)}\n', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$a1/GPX', '_x J&.e^', '', 0, '?'),
(',\n0 SC', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/WebPConvertException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/WebPConvertException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5-Kt+sEM;Ï6', '[0|섧AAU-a	bX', '', 0, '?'),
(',¬;RM~\\N', 'wp-content/plugins/elementor/core/admin/menu/main.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/main.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '77zЧ''Iѝj', ':|~C$#^`/\0LR', '', 0, '?'),
(',F(0\0s', 'wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c䗜a,J', '\rI.#vms<R@?V', '', 0, '?'),
(',tyjlkț', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-matlab.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-matlab.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O#9fO 7nt%', 'Ytǚy)a*in?', '', 0, '?'),
(',t93{N', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/js/bootstrap.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/js/bootstrap.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wi[Zk''{U', 'Ssmi+Wds<Ǽ6F^r', '', 0, '?'),
(',Mp;1', 'wp-content/plugins/elementor/includes/controls/repeater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/repeater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tjƕ˼")p', 'RS$_94MOM~6:eOGM?', '', 0, '?'),
(',\\}9ijy*', 'wp-content/plugins/elementor/modules/landing-pages/documents/landing-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/documents/landing-page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L\rG"', '"\0JU\Zjnmޥ[BL	p`', '', 0, '?'),
(',C	EY3:a;', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-linking.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-linking.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D;\0({ߛ', '~K<6Ĵ3zV%Y[yaG]', '', 0, '?'),
(',Tϱr7h	%r', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/Converter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/Converter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y d 6TR', '^<XRr''Tp%', '', 0, '?'),
(',>,I^͕', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-notices.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-notices.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p,ZJq߂qV9;', 'S;8z7O$\0w', '', 0, '?'),
(',(X''%Z|', 'wp-includes/blocks/group/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GѯNPh)x\n%', '3\0ڄ[ySҬϊ_hdkJ21U', '', 0, '?'),
('-j^yp}4X$I', 'wp-content/plugins/elementor-pro/modules/payments/widgets/paypal-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/widgets/paypal-button.php', 0, '\n車BbW', '\n車BbW', '*&~a!\ZxC"~gBx5Te9q', '', 0, '?'),
('-	\nq[v0H', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nix.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nix.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W=fM99n', 'a\n!KZ}4.CW+G8I4j', '', 0, '?'),
('-TD&<q', 'wp-content/plugins/elementor/assets/js/packages/session/session.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jT]5jUP', 'K,&_;#ʡ\rԤ.', '', 0, '?'),
('-]t\Z̚3', 'wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3[Yal', 'MMͣ=)C#/ 9mX', '', 0, '?'),
('-wpF1b.3p', 'wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-inspactor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-inspactor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_6/H߫|z!', 'YlF\Z%g[)lǘ,aj җ', '', 0, '?'),
('-Py)YEJ', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/back-button.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/back-button.js', 0, '	m*<', '	m*<', 'Uohusn(aP`Y<ovsp', '', 0, '?'),
('-Wk:)`^R֞', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\r9E', 'Z̚r|K=7}!', '', 0, '?'),
('-"RCg9Ѩ', 'wp-includes/blocks/math/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k~댵kRtW|', '`C>Iԉg&}M\\<#\n', '', 0, '?'),
('-+2yZl', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{AMD9*', '\nD+sv\0+3*e[~c', '', 0, '?'),
('-+N|KK', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[)cJ̣LJ', 'hdk]:E@/B;s輔', '', 0, '?'),
('--ü$);J5', 'wp-includes/js/dist/rich-text.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/rich-text.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7''', '\0e4ZL\rryƐ[', '', 0, '?'),
('-1=\ra''Ҧ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abap.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abap.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z.=nHؾR֣$', 'd&N{%C>^wx!', '', 0, '?'),
('-6b_$+', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/ScopeInput.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/ScopeInput.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O1\ZӨe', 'cV4j(3VCi]x=X', '', 0, '?'),
('-C:ǜpuԝ`', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/LoaderError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/LoaderError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~5w<\Zd*Y', 'hϿmU@FN`]}"A,HT"~', '', 0, '?'),
('-H	):f#ד', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_light.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_light.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Ym>q3Gh', 'rwbX_"ǂ\ZWh*\\CL', '', 0, '?'),
('-W1v}.z칓', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/OptimizerExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/OptimizerExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~f]<&>\n-', 'O SPatl', '', 0, '?'),
('-\\[Jץ', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '١\\rV;$Ist', '1<7Ap40VPb#;T', '', 0, '?'),
('-`*ڕWY=֐o', 'wp-content/plugins/elementor/core/kits/views/panel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/views/panel.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"De`p2', 'xJss\r=ErO%HĒD', '', 0, '?'),
('-jާ ~hyb', 'wp-content/plugins/wordfence/lib/menu_support.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_support.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jI7z^ݺZ', 'pk7<g_Ar\ZBU6|r', '', 0, '?'),
('-kdϯXw\\7', 'wp-includes/admin-bar.php', '/home/binawebp/omsrislb.my/wp-includes/admin-bar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4"	H\n K%', '@B:iRFK]', '', 0, '?'),
('-l	n̎i.V', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-page.php', 0, '*V&-=Ls3', '*V&-=Ls3', 'rq=ug!P{N	pX', '', 0, '?'),
('-pKkF"!"\Z', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-url.php', 0, '1Jx]7.', '1Jx]7.', '_63x(;vR~1ZDy', '', 0, '?'),
('-vfLRZ59]', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-idle_fingers.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-idle_fingers.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2`)1~', '@2!`W*r`cBHV', '', 0, '?'),
('-Ǹ%w=', 'wp-admin/css/colors/ocean/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XR1o|:c', '{\r0pgr:&1BZMA=Qs', '', 0, '?'),
('-"`tr', 'wp-content/plugins/elementor/modules/favorites/favorites-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/favorites-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?.\r-@5', '`jaǉ3$b1JC''', '', 0, '?'),
('-_mq+1', 'wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h㠲ieɡ', 'IHMp\\Nh\n׈NF=-Z=hO', '', 0, '?'),
('-}z!n{q', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S@CNg԰H', 'Q&f`.a-{LM', '', 0, '?'),
('-)75y8cWv', 'wp-admin/about.php', '/home/binawebp/omsrislb.my/wp-admin/about.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zlo]Fy', 'M%!2U%7Gku8)~01', '', 0, '?'),
('-Rcv', 'wp-includes/SimplePie/src/Exception.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fb*n?LNf', 'Km*HAko!gG%2', '', 0, '?'),
('-_+YnS', 'wp-includes/js/jquery/ui/tooltip.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tooltip.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?	k', '#ĺny6/8''HDdC', '', 0, '?'),
('-f4]#"ul', 'wp-admin/css/colors/light/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',L	웽׷U', 'sK J&one0A', '', 0, '?'),
('-5ru:CL(', 'wp-content/plugins/elementskit-lite/libs/rating/rating.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/rating/rating.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';6'';䘭\0X', '40l*Ơep0SʤQ\0K;q', '', 0, '?'),
('-`[D,GŌ', 'wp-content/plugins/wp-optimize/images/notices/sale_summer_24.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_summer_24.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H?˼xY>F', 'bL8YH/o֯Xg&_ވt/N1', '', 0, '?'),
('-eceu(5I''', 'wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h74\rka\rP', 'ȵ6W?ԶuVΒt>t', '', 0, '?'),
('-藂Y{]ns', 'wp-includes/css/wp-pointer.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ði^	3', 'ys(Rf7>r6\n', '', 0, '?'),
('-3wW1f', 'wp-content/plugins/elementor/assets/css/admin-top-bar.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uʵInvt', '0mڱex)`#YV\n( ', '', 0, '?'),
('-\0J(}o5@4', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j''s;N`6[', 'tWܫ08\r\n/MÎZۗ3', '', 0, '?'),
('-CHO\ra', 'wp-content/plugins/elementskit-lite/libs/forms/pages/template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/pages/template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C	kdocP7', 'E9RH)/_,o?g', '', 0, '?'),
('-~G0', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ReadOnlyFilesystemCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ReadOnlyFilesystemCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|AER-', '6R4OcpU1nfA+\\h', '', 0, '?'),
('-@FY=\0y', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-base.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-base.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9+Jӹ', 'g\Zf	{i)E', '', 0, '?'),
('-CC6#gô8', 'wp-content/plugins/elementskit-lite/libs/xs-migration/data-migration.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/data-migration.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.~յrݦgp27[', 'ԛaf-HqkZcF,a', '', 0, '?'),
('-EJ\r[ǲ*', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-base-styles.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-base-styles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hߺ4.җ', '~{gWd6\\$r', '', 0, '?'),
('-+EM57NJ|', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=o_Bs\nޕ', 'I7L.%m&#y?>w', '', 0, '?'),
('-HJ!4|`', 'wp-content/plugins/elementor/assets/css/widget-toggle.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-toggle.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=io)V\0''&Y8', 'uurX!9͕0za0ZIѻ	', '', 0, '?'),
('-	&,A>\Zv<', 'wp-content/plugins/wordfence/modules/login-security/css/colorbox.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/colorbox.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<w\ri컎vL*x', 'Nb\r̎/?+''bi''W$@i\0', '', 0, '?'),
('-蘴"', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-width-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-width-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iQwK,?9', 'd}<\r!# ~,QH1`_ٿe', '', 0, '?'),
('-Vh=\Zm:\n7', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lRah%՜', ')}=D6QVsC!Y@c5', '', 0, '?'),
('-~f{=', 'wp-content/plugins/code-snippets/css/manage.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/manage.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`p}ua', 'Nt\Zlx6&H|utf9', '', 0, '?'),
('-z$a\n', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nF^t<H	', 'c5::":\0<U\r	>M̬', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('-k̤Af&''', 'wp-content/plugins/elementor/core/base/traits/shared-widget-controls-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/traits/shared-widget-controls-trait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '҈i]R~¼', 'Ǎ^ښ*p#PG	(|az', '', 0, '?'),
('.''\\<"y_|E@', 'wp-content/uploads/wpforms/cache/index.html', '/home/binawebp/omsrislb.my/wp-content/uploads/wpforms/cache/index.html', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('. \0_oE]A_0PJ', 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K.Aj_mr#i', '''Cb"B\\NN*r&.XJ', '', 0, '?'),
('.3vYdjM', 'wp-content/plugins/elementor/core/files/file-types/svg.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/svg.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=e''Ym/', 'aoBl,C&cմL>A-kR~P', '', 0, '?'),
('.8w"jޖp', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gherkin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gherkin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=q9h^L', 'V(X~?5&zi[', '', 0, '?'),
('.8a2AP8', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ygfq*g>C5k', 'AItQ^2xr\Z̉^RK', '', 0, '?'),
('.?RGr}', 'wp-content/cache/wpo-cache/omsrislb.my/services/index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/services/index.html', 0, '>ea23', '>ea23', '1Tk}M8[$\rS$n~r?', '', 0, '?'),
('.IhU3+B\Z', 'wp-includes/images/admin-bar-sprite-2x.png', '/home/binawebp/omsrislb.my/wp-includes/images/admin-bar-sprite-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q8o', '*ETsal^pXZ\0', '', 0, '?'),
('.Iq<Ϊd', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-src-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-src-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cHQ*	_', 'e@ݴd`Q''M:	J+zQ%', '', 0, '?'),
('.SoJ\02s', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/d.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/d.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BOUv2x{h&&', '45''[2uG\r7\0\ra', '', 0, '?'),
('.Y1~rv''r"2.', 'wp-includes/blocks/accordion-item/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HKk1,', '*Od(,ĽOv)i$^', '', 0, '?'),
('.f_b\Z%', 'wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/single-file-loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/single-file-loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '96I@W),vT', '/Ӆߊc>Sn\\ (C}Gx', '', 0, '?'),
('.k;wq', 'wp-includes/blocks/post-author/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nyahIW', '퀎-{R=] ,UWM', '', 0, '?'),
('.xϮ7_', 'wp-includes/js/mediaelement/mediaelement-and-player.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-and-player.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n.AJ4I', 'S{hdq(^s''%a%', '', 0, '?'),
('.yCrٓCmBg', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',''NvYK%.oۦ', '	`v"X5g@Q"6', '', 0, '?'),
('.麉D0uL-c', 'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-segmented.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BW##', '^<4e,\0l\r!d', '', 0, '?'),
('.X7(', 'wp-includes/Requests/src/Requests.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Requests.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A4Ly|^', 'XkF#D70z_T鵕Yt', '', 0, '?'),
('.=$.6(', 'wp-includes/blocks/button/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8ZHn׳-\Z/', '1[gւ8́7Mfe#~w', '', 0, '?'),
('.v\0NÚ', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gLF5¾', '#䯣x''Yv\rӦp*͒o', '', 0, '?'),
('.`aWTō', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J[JSs', 'U^7w\Z@\\SkcNĺ~8', '', 0, '?'),
('.w{{(o|m', 'wp-content/plugins/elementskit-lite/core/build-widgets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/build-widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A?pGM', 'U8wFY8Cy%?($z', '', 0, '?'),
('.E[Jlx', 'wp-content/plugins/wordfence/images/forward_disabled.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/forward_disabled.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M_Z?N)Ҋ:5', '/<>O&ȕJR݇e}(m', '', 0, '?'),
('.7fw9Pm@', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3''Onń', 'bD''N)}*B!:QT"ɪD', '', 0, '?'),
('.2ODűb̒nn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-js.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-js.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ñv\r)KO', '22{.OmHɼ\Z''!Jxwc"', '', 0, '?'),
('.o;&N@M#', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P\\֗-(.X', 'ZЈE=^#PF9zil8绗', '', 0, '?'),
('.ʁlI|R5', 'wp-content/plugins/elementor/core/app/modules/import-export/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/import-export/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MlrLi', '	\nݮi#7Mi,jV=uq', '', 0, '?'),
('.H;J&Wm', 'wp-content/plugins/elementor-pro/modules/notes/admin-bar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/admin-bar.php', 0, ')3ڨO]c', ')3ڨO]c', 'V\r~~0j$נ', '', 0, '?'),
('."M!`', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q͎"kS', 'CN$̎&V,IVoO ', '', 0, '?'),
('.a$ה''m', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-featured-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-featured-image.php', 0, '''疂v&ꓙ$', '''疂v&ꓙ$', 'O&VY_99qA<Oz|1', '', 0, '?'),
('.ikdV', 'wp-content/plugins/elementor/modules/global-classes/global-classes-repository.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes-repository.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'էi0iSaާA', '̢qkV%;ߞ8dP\r%Q&z', '', 0, '?'),
('.Am+ |''QI', 'wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^:0eys^^', ']2'':¯u]utދr(ge', '', 0, '?'),
('.Ϡa?馺W8ӵ', 'wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XĪOWs', '*nq`j\nSel1(', '', 0, '?'),
('/\r(~g&.vSl', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-24.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-24.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',Ҙm\\%u%Lm', 'M?5W_⒍.', '', 0, '?'),
('/>Mg$e\\', 'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l.(KpQ', 'ٍ$rb=phxK5]8QRjn4', '', 0, '?'),
('/QJs}U', 'wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dglTx<', '3tۚE	*=55͂;;;L', '', 0, '?'),
('/*:o>t', 'wp-includes/js/dist/autop.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/autop.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rA!yr{o', ',8_LT3b{-', '', 0, '?'),
('/.E& QTh', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/RangeBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/RangeBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R9yX%>JLe', 'Iwk(*@+@FxTJ,7Aum', '', 0, '?'),
('/5p%H6gvY1', 'wp-content/plugins/elementor/assets/css/widget-text-path.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-path.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qf09', 'iڊK!XZ\\g|+~\Zl\\', '', 0, '?'),
('/<c\rM$6', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_55_444444_1x400.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_55_444444_1x400.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b	D^\ZDK', 'I"lѲ 5v{hw§^ZR/	', '', 0, '?'),
('/<ا^ɼf}"$', 'wp-includes/images/media/document.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/document.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v48Αy6d', 'ø`f	I$ _ZX"0\r,', '', 0, '?'),
('/Q~t@݂)z', 'wp-content/plugins/elementor/modules/announcements/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jوKxt7?R', 'Y! Ҙ#cSIx!', '', 0, '?'),
('/WL:6W叧F', 'wp-content/plugins/elementor/core/kits/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x	W o8fnMN%', 'l]OxI="ê`ʥ=M;j%', '', 0, '?'),
('/WU @3', 'wp-content/plugins/elementor/modules/editor-app-bar/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/editor-app-bar/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?Dgug,', '2Q΍-)5בe!>g`RHӻH', '', 0, '?'),
('/`v}C', 'wp-content/plugins/elementor/assets/css/widget-social-icons-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-social-icons-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`}Po;', '`ݑn	@\nbc8?', '', 0, '?'),
('/e7CIQB', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/makeup.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/makeup.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eAίÀ7YG(', 'Mܴ#qFl-Qag%hI', '', 0, '?'),
('/xx@Q=,3t', 'wp-includes/js/dist/script-modules/a11y/index.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/a11y/index.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0\n	0ZR', '_2PP?LɂC\n63˚dR', '', 0, '?'),
('/[ؤxbo', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ѭx{o\Z', 'R(T4G>;pggݳ\0+jLMf', '', 0, '?'),
('/Qh焸u|\\MU', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'to%jۦ[', 'F@g\0֍NxߘZ0:r\Z!', '', 0, '?'),
('/Zd\Z"+', 'wp-content/plugins/elementor-pro/core/admin/canary-deployment.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/admin/canary-deployment.php', 0, 'Ka9TVb', 'Ka9TVb', 'a03zB%av}"5ɪ', '', 0, '?'),
('/0F0BhI)', 'wp-includes/SimplePie/src/Locator.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Locator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 4~,5/^', '-XjKr;j\0hӆ', '', 0, '?'),
('/\nٝwu-f', 'wp-includes/SimplePie/library/SimplePie/Cache/File.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L;2TCyޅ`i,n', '\\nWPI''fg\0k<IBQÇ#q''', '', 0, '?'),
('/,W+r-', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditor.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditor.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4]z4|N', 'X\ZD.d<*߁UO\\={h*', '', 0, '?'),
('/sC4', 'wp-admin/network/setup.php', '/home/binawebp/omsrislb.my/wp-admin/network/setup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	wTA;}Ad', '韌''MN+ƺRg', '', 0, '?'),
('/>bYyX20', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-base.php', 0, 'm	Pѵ(->', 'm	Pѵ(->', '7g~nu=؏Ul*a*%nR', '', 0, '?'),
('/9.1', 'wp-content/plugins/elementskit-lite/widgets/tab/tab-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/tab-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&||2|w>7', '\r''H_݉WEJAf2!', '', 0, '?'),
('/ގ٭%,Fh', 'wp-content/plugins/elementor/modules/kit-elements-defaults/usage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/usage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q)餆ɫ3t', 'b)`0]0)aJcVZE#', '', 0, '?'),
('/P{^`Xnv*_', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UfÄ\\CmnE', 'OF"Bg|-PƖz>', '', 0, '?'),
('/鹠ΰ1iw', 'wp-includes/images/uploader-icons-2x.png', '/home/binawebp/omsrislb.my/wp-includes/images/uploader-icons-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&-OÕ~', 'r\0''_>6QW4ڠR', '', 0, '?'),
('/aP|\r#*''', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.bf88689aec2ee294a5e8.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.bf88689aec2ee294a5e8.bundle.js', 0, 'n-wֱ%U$', 'n-wֱ%U$', 'Y0FYҔM0^9d/S', '', 0, '?'),
('/fPj>X', 'wp-includes/sitemaps/class-wp-sitemaps-renderer.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=^-|', '*k$xFҟ''qV<[7!', '', 0, '?'),
('/MZ(fh', 'wp-includes/Requests/src/Exception/Http/Status411.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status411.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ױ4IcIv\n\Zh', ' oz^|}o\Z@7C	;9/D	F', '', 0, '?'),
('/[MVZS`?', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/duotone.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/duotone.js', 0, 'aǧ6+G;Nr', 'aǧ6+G;Nr', '0jrYC*|h=]D', '', 0, '?'),
('/:Qw1?', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-skin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TڔLs-', '?H&=̂C\n{t\Z''|', '', 0, '?'),
('/5SQU۶v+', 'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=>Kǆymn', 'o8+8Ƨ	7t]c', '', 0, '?'),
('/IºI5p', 'wp-content/plugins/code-snippets/dist/editor-themes/mbo.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/mbo.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0;ǥ"qT&1Y', '?wg῝Y%8fs9(', '', 0, '?'),
('/ H9EA', 'wp-content/plugins/elementor-pro/modules/assets-manager/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/module.php', 0, 'N=AĿs', 'N=AĿs', '+Nd;&(sI7[*Ъ-#`\nW', '', 0, '?'),
('0y9R', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-menu-item.php', 0, '\Z0׊|C7', '\Z0׊|C7', 'fUG dbf$z@9', '', 0, '?'),
('0GH\058', 'wp-content/plugins/elementskit-lite/widgets/lottie/lottie.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/lottie.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '劋8]#jԵ\Z10', 'Ld@g>[jm}xGxCE}Q', '', 0, '?'),
('0#w!_SvJ\Zk', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j<VU<rMx', '_17ZȊ7ݻ3n\rU])T', '', 0, '?'),
('0&\r<\r^].>', 'wp-content/plugins/elementor/app/modules/kit-library/data/base-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/base-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K)UfpxoCZP', '4A !99vJQ''֗', '', 0, '?'),
('0,D\Z6e#V', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event.php', 0, 'JgÜ{', 'JgÜ{', 'o yv;q	}":Nd#\n7w*jA', '', 0, '?'),
('03Le>jsG', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/11.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/11.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ШvR', '\0uYL L-BvQB˺~ ', '', 0, '?'),
('0<lڿJ', 'wp-includes/js/wp-backbone.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-backbone.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G	1Y!z ', '"I`I:	OX7ꆼ)2', '', 0, '?'),
('0Bjf^P]^pC', 'wp-includes/images/media/default.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/default.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̉\0x۟#ZeI4', 'nmfe{|8M>X60\\O', '', 0, '?'),
('0Ji̒,8_', 'wp-content/plugins/elementor/core/upgrade/upgrade-utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/upgrade-utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yx{<qQQJO', '#t0.k\Z%<4Q\nck.L', '', 0, '?'),
('0X{Z6Oi8DC', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GQ}l\Z@ۃŝ', '2$;5ꢹ8 *c', '', 0, '?'),
('0]qK''fx', 'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L{p׶Ҡ', 'm澑[S3''J*Stsj', '', 0, '?'),
('0]aJ~5', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/Factory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/Factory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BOa"ܾ$/zoj', 'V;(WAĦOG[~<^0yX', '', 0, '?'),
('0bƚT&F{eM\0', 'wp-includes/js/dist/latex-to-mathml.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/latex-to-mathml.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V<[8G', '.L3M2,H/F2ͷu', '', 0, '?'),
('0ii@', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/EncodingAutoTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/EncodingAutoTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|zjEC\nB', '8@!^F{)\re~OJ3ߕ', '', 0, '?'),
('0jVƽf:5`\\', 'wp-includes/js/customize-selective-refresh.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-selective-refresh.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`ϖ:ۉ%*Xi+x', '?Bȑzv;@Bq3Roo	wB', '', 0, '?'),
('0s!Ý2n2', 'wp-includes/SimplePie/library/SimplePie/Item.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\\q	20-I', 'ޫ_wFqF?kjgE', '', 0, '?'),
('0xhͭK3T', 'wp-includes/class-wp-fatal-error-handler.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-fatal-error-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\\r%ϺwTwAHL', 'ΓԃH8ȼG_P:u۱C', '', 0, '?'),
('0aOZI|I', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WHY ²', 'zI]_ǲ!bш6duY3', '', 0, '?'),
('0!AF<;IpC', 'wp-content/plugins/elementor/assets/js/frontend-modules.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend-modules.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mF', '{Ќ{''|t-!Q̈́!', '', 0, '?'),
('0\r\re*kkw(', 'wp-content/plugins/elementor-pro/core/integrations/actions/email/email-message.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/email/email-message.php', 0, '{9ᮢ~,)C', '{9ᮢ~,)C', '&@[5CL/7y`Mnn8}^*sgH''Хr', '', 0, '?'),
('0k ?ޞ', 'wp-includes/js/jquery/ui/effect-scale.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-scale.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~\\c:jF''', 'A\Z){dL7#a', '', 0, '?'),
('0r0ݡ\rK', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/convert_text.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/convert_text.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&?-9D', '|W^9R?6Y.?us&b!7U}t3\0', '', 0, '?'),
('0<K}ׇ', 'wp-includes/blocks/image/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o0`hge', 'djѨEQN<g7mTG}', '', 0, '?'),
('0}86s', 'wp-includes/js/dist/script-modules/block-library/form/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/form/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"t{+&.ϗ}', 'Vm<''\\7cR7a_׌FC', '', 0, '?'),
('0E\00XH', 'wp-includes/js/colorpicker.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/colorpicker.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g6p	DNbG', 'z,YQ(ht;%Wt(P', '', 0, '?'),
('0+]c|ND=', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0r(S0\ZmU', 'Mga7s&{e`Rzkǃø;', '', 0, '?'),
('0dۦZP2o', 'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xMg_zv7I', ']/r^Q@떱w#4!', '', 0, '?'),
('0Oq0\\YQN', 'wp-content/plugins/elementor/core/common/modules/event-tracker/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aUळݭ?', '?I~{OL5lo3Ŀp', '', 0, '?'),
('0=@ n78d.d', 'wp-content/plugins/wp-optimize/optimizations/attachments.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/attachments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/" m\0$', '^5LS5\\v', '', 0, '?'),
('0''%ԯS2\Za', 'wp-content/plugins/wp-optimize/templates/database/table-analysis.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/table-analysis.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2r.J\\qPk', '\0a>~vơ9PDUJဉu', '', 0, '?'),
('0$X8FnŃk', 'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't''~(L4[v', '&̥FzՀAqe%|!', '', 0, '?'),
('1,UB[\0', 'wp-content/plugins/elementor-pro/modules/forms/submissions/personal-data.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/personal-data.php', 0, '1ZxW\0~', '1ZxW\0~', 'Ǳ8w5ym^p$F]b5]73W]', '', 0, '?'),
('1DAHBuZ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/HtmlDumper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/HtmlDumper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+~\Z\ZőIqW5=', 'CG}J@t笁j+\\߂', '', 0, '?'),
('1YN}c~&', 'wp-content/plugins/elementor/core/editor/editor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';ac^7I', 'W$oH1;UZ%xx&GhDҁs', '', 0, '?'),
('1}cxY/Ů!', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rjKc\nbK', '3$#<''e2-@.eP', '', 0, '?'),
('1$^*7+&._G\n', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_orchestra.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_orchestra.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' Df0J4bAx', 'eG+AOft;Xy\Z6QS	r''t', '', 0, '?'),
('1$<͙f', 'wp-includes/abilities-api/class-wp-ability-categories-registry.php', '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-ability-categories-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+muPH\ZO׊', '34/mCt#u4lV+=)aۿ^', '', 0, '?'),
('1%EHưna', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '㬕èi<^', '>\0bT5Ԉ7dcRkX׍', '', 0, '?'),
('1+@	qG۶', 'wp-content/plugins/elementor/assets/css/modules/notes/editor.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/notes/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	4vXٓޛ&', 'vV>]ySC.D7Wkzф(y\\K', '', 0, '?'),
('1-g97', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#fG\rւBg 0', 'c(k12Qw4?0', '', 0, '?'),
('1<5-=ۅ', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z mghA', 'kq`''$YD؅Ѽ0', '', 0, '?'),
('1?ox<?6', 'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?v@Yapv', 'pZʇOFM4V92QP\0', '', 0, '?'),
('1hQ`ڄ,t', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w	uֻ%', 'x5s87O"xy>0ט''', '', 0, '?'),
('1s)6ӶCΗ', 'wp-admin/user/admin.php', '/home/binawebp/omsrislb.my/wp-admin/user/admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T^1A|', 'Y%մ9N?\\v\\aM~݋', '', 0, '?'),
('1ty@vG`1''', 'wp-content/themes/twentytwentythree/templates/home.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/home.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>7ŬE A=DSM', 'iR1\0ו/O(gF\0', '', 0, '?'),
('1w=3xނU', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-05.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-05.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't>gB', 'ZPwvINW `{c', '', 0, '?'),
('1~]''5j', 'wp-content/plugins/elementor/assets/images/app/site-editor/products.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/products.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U''P_\\', '\n4Pb̨YMsW}!55RKA', '', 0, '?'),
('1(s={', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/templates.php', 0, 'z+\r/IC7', 'z+\r/IC7', ']<qeCnbf[rQJ!\Z', '', 0, '?'),
('1Z3?s}n', 'wp-includes/blocks/post-time-to-read.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vtIWbf05', '*?^jd$F.Wk!\0{;|lP	Y', '', 0, '?'),
('1I8M-Y=ii', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-katzenmilch.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-katzenmilch.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ˁ_?ǰ]U', 'YJY}E/`"Z''$~d[\\', '', 0, '?'),
('1<?E(', 'wp-content/plugins/elementor/assets/css/modules/notes/editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/notes/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N/aZ_', 'Jl/]u^Nr\0\Z9Aгqb1', '', 0, '?'),
('1)I-͔} u', 'wp-content/plugins/code-snippets/vendor/autoload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M2߅ܿGm', '78+l:i8Pq&', '', 0, '?'),
('1%B`<\0A2', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/corner-sizes-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/corner-sizes-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8|Jh{', '._Vl|:;7&Pꄶ2G', '', 0, '?'),
('1pa`H0ߢe', 'wp-includes/js/dist/url.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/url.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xC^Q@', 'd٦wy9ѡ4(զ^G,$"r', '', 0, '?'),
('1''|u5+=q', 'wp-content/plugins/elementor/assets/lib/animations/styles/wobble.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/wobble.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|2o]', '''ƚaayZ4%#	q!DCm', '', 0, '?'),
('1''ɡSm', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/DivBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/DivBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$Bh \r}3', 'Yǟ%K>>2{h`dTM', '', 0, '?'),
('1Ůx]a''vq/9', 'wp-content/plugins/elementor/assets/lib/share-link/share-link.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/share-link/share-link.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`?jbBFZ', '9R [an*b#', '', 0, '?'),
('1БY4I^p', 'wp-includes/sodium_compat/LICENSE', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0?4''+̶L)$', 'Y	ORٴ@M=xMK\Z.', '', 0, '?'),
('1EfQv#)\n0EkQ', 'wp-admin/images/media-button-image.gif', '/home/binawebp/omsrislb.my/wp-admin/images/media-button-image.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm	''A', 'iķz[/" X{o:', '', 0, '?'),
('12~YJ', 'wp-content/plugins/elementor/assets/js/new-template.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/new-template.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0!͓`', '({/צYbA', '', 0, '?'),
('1*\0x(Q', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/TokenInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/TokenInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z0|\\:', '檀/y\ZdAue)lG`', '', 0, '?'),
('1XR5_u,q', 'wp-content/plugins/elementor/assets/images/go-pro.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/go-pro.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&\\xfxlL', 'ﰼmqO¸yxy(n', '', 0, '?'),
('1`!ߧA56', 'wp-content/plugins/elementor/data/v2/base/exceptions/wp-error-exception.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/wp-error-exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ъV3J5s', 'oxBEM\0\Zm{h"\\', '', 0, '?'),
('1)2y', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/html5sortable.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/html5sortable.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '##c9l', '^?+-=?\ZNzllt{*/\\', '', 0, '?'),
('1X/t60^Ҁ!7', 'wp-includes/js/comment-reply.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/comment-reply.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '䤝M', 'Fԁ5\n\Z0H0ϻG', '', 0, '?'),
('2=\r>5i', 'wp-content/plugins/elementskit-lite/libs/notice/notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/notice/notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r7o$vr', '2`uʷR@gJ~<u[\0Y۲z', '', 0, '?'),
('2Jy*m]W', 'wp-includes/js/dist/a11y.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/a11y.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '."sI', 'D,WXKLt-!{}J~', '', 0, '?'),
('2--g>', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until_char.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until_char.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0^n9}>eJ', 'Hqڽ,bR6q\n?5ܸKl', '', 0, '?'),
('2bU\0spd0', 'wp-includes/js/clipboard.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/clipboard.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sdjI~iT', 'Q]qFضUJ"\r/^0', '', 0, '?'),
('2 O55,d&Rƞ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3pKJzո77!w&J', 'i{.bzӑv涆㐩:ݍ:&0', '', 0, '?'),
('2&1G\\^t-<', 'wp-content/plugins/elementor/assets/js/announcements-app.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/announcements-app.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UQJ\re!pK', '^7aX~''r4*ɡ8\r@bQ', '', 0, '?'),
('2:tK5 \rB|', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/ekiticons.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/ekiticons.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j>ٳbH˵K', 'pǛ2&|q%BRs\nwǒA', '', 0, '?'),
('2@jj\0kӲӘ', 'wp-admin/includes/template.php', '/home/binawebp/omsrislb.my/wp-admin/includes/template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']l \\q.]', 'l\0^0]IxSZ6', '', 0, '?'),
('2D%J?\Z', 'wp-includes/js/dist/wordcount.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/wordcount.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TZ}0ouuDSB', '\ZU	JkP9@%gL܅', '', 0, '?'),
('2L\\"GBv)|', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/config/config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/config/config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u]67m', '}`0=u&Ge+p7Bk~[.', '', 0, '?'),
('2Y oq&Z', 'wp-includes/class-wp-block.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'klE X', '?GLm<QU\Z@*\r>OX/F!\0', '', 0, '?'),
('2\\G>-kQ2', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-widget-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-widget-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|>Wٿzڿ迗<', '8\0%^BX3,5:Рefgҕ', '', 0, '?'),
('2cMI9', 'wp-content/plugins/elementor/assets/lib/animations/styles/jello.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/jello.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rx2zi"#', '-߇)/"6,ԟD拱GC>''', '', 0, '?'),
('2f~vX3L', 'wp-includes/blocks/post-comments-form/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sk%ұ', 'ɜr>hb0E*\n|ьgĝk', '', 0, '?'),
('2glbCdM`H', 'wp-includes/css/dist/block-library/reset.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$XyRIS', '2bmqVɻ,5\ne3rÐ', '', 0, '?'),
('2gk4j''9D', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetForm.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetForm.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GTp_VTc', 'g^{''}@VFp<[V', '', 0, '?'),
('2jL,W\rW$', 'wp-admin/css/colors/sunrise/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UKd̳=n5-', 'a`0R"VW1#q.', '', 0, '?'),
('2q[ӶsЏx', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/index.php', 0, 'vGQ|ۜOIx5', 'vGQ|ۜOIx5', 'x'']ĔG#/wDܿRV%', '', 0, '?'),
('2r}Vĥ$^n/', 'wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h^n=(&݂N&', 'SDIBz_-?(YpEyƹA', '', 0, '?'),
('2}ܽQ(,Sz', 'wp-includes/SimplePie/src/Cache/NameFilter.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/NameFilter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Մn\r/V', 'ŝ}%C\0B|Up\rGMy]ޱ', '', 0, '?'),
('2!C|R4ضJ', 'wp-includes/blocks/paragraph/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڠ.6](r', '\r4ޠ&_x![x~', '', 0, '?'),
('2gL>o1d', 'wp-content/plugins/wordfence/modules/login-security/css/admin.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/admin.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JXlX+', ':5Jpż W"{Ozk', '', 0, '?'),
('2Di޽L', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SandboxNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SandboxNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fqj"M', '7dREy\0pͿ;u_`', '', 0, '?'),
('2%B̾Uq	e0', 'wp-content/plugins/elementor-pro/modules/pricing/widgets/price-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/pricing/widgets/price-list.php', 0, 'Pcg:O8', 'Pcg:O8', 'onhn?mJn/\rk', '', 0, '?'),
('2|΢(ủtT', 'wp-admin/privacy-policy-guide.php', '/home/binawebp/omsrislb.my/wp-admin/privacy-policy-guide.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PO1]8\n6', 'eME9*b68}I^Zz', '', 0, '?'),
('2㺨a|Fl3]', 'wp-includes/customize/class-wp-customize-new-menu-section.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-new-menu-section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	sL2/B', 'H''sӽI$ӦͤX!', '', 0, '?'),
('2v''9\rz', 'wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pbD@pG+', '*DZ>Bg&YY4(</', '', 0, '?'),
('2-۰;n|', 'wp-includes/SimplePie/library/SimplePie/HTTP/Parser.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/HTTP/Parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܥ<e}iA', '/,nmaQk*TI}*]0тd0f`{', '', 0, '?'),
('2ģ_Dx', 'wp-content/plugins/wordfence/views/common/block-navigation-option.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/block-navigation-option.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O~}t.K', 'MNF`\r9ӫrP,Q', '', 0, '?'),
('2Zs+z', 'wp-includes/css/dist/block-directory/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\#DCfT7X7$Mp', '2jhR"Z~xs-&g0a_<dWC', '', 0, '?'),
('2{OdV6', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gx', 'h*{?4WiyY߭d', '', 0, '?'),
('20mK:r²\\0\nB', 'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x9/Zh6\n', 'J<<x?#oJn8:j', '', 0, '?'),
('2-\\zKD', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~XXTS', '|5ܑJMO,pMMӗV<,', '', 0, '?'),
('2Bk3faޮ', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-02.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-02.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}28S', 'Y";8nЇZl=\\!Z', '', 0, '?'),
('2''X<L', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ytl', ' Ms\\:+zJBo S|(Z=', '', 0, '?'),
('3%''tJ;:uH', 'wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hˤ|(n/t|B', '\0[d\n-5HOͺW=ᓙT>!beا', '', 0, '?'),
('3C>^l<&', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/lib.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/lib.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ds]v>k', '-?$g+)qSZcg1-*OYH#', '', 0, '?'),
('3Ir8cVNۃ5', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ele-btl-preview-placeholder.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ele-btl-preview-placeholder.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$OL7l0', '-5	\\կuPixx\rhlT/XL', '', 0, '?'),
('3\Z-Ғ,j', 'wp-includes/blocks/comment-date.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NPnFMFБ', '˺cJۻMxa9$gnWz', '', 0, '?'),
('3@<JuI', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-title.php', 0, '%y#0෬', '%y#0෬', ';ܙًp50@]c|=n88Ik3', '', 0, '?'),
('3+z.6Q~]y[', 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`*jr ', ',a)"T}vh[7Zo~m', '', 0, '?'),
('35)2K	W', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̵1~آ\rM', '}w^QMw/(1', '', 0, '?'),
('3E_>rEf', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mixal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mixal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j{Ϥ{', 'DiǢc\0173j1!/!LvLa3k', '', 0, '?'),
('3LjnKç', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '42 ET', 'wyq$|q\ZWOU4i 0/T', '', 0, '?'),
('3MbBp', 'wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߂B*nKW{', 'j6q[ROzj,p I3g_v%U', '', 0, '?'),
('3h"I+[E', 'wp-includes/js/clipboard.js', '/home/binawebp/omsrislb.my/wp-includes/js/clipboard.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r8ܞRO@', '3>0D2!Jw@Ly', '', 0, '?'),
('3koW5	k[mq', 'wp-admin/includes/continents-cities.php', '/home/binawebp/omsrislb.my/wp-admin/includes/continents-cities.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^z\rr', ',`ĭ$7܁{n', '', 0, '?'),
('3p\\8lDq', 'wp-includes/sodium_compat/namespaced/Core/Util.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';*kLwBd=', 'ec[dM?H|KY\04@ QA:FF ', '', 0, '?'),
('3r8''->7s', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/DependencyException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/DependencyException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%''H,9j8', '[96qF,(I4/', '', 0, '?'),
('3sKU"H<s', 'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '790qD', 'C? ʍ*Qcߪ2\010', '', 0, '?'),
('3x!𒨐', 'wp-content/plugins/elementor/assets/js/packages/store/store.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\021Bׇ/T', '+Dθ:	Iښ4D"Իw#w"\0', '', 0, '?'),
('3z''OvJ& ', 'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B3%%̎d', 'I;p9\0ZHM#%G]9.r', '', 0, '?'),
('3PS\0ڏ{U3=', 'wp-content/plugins/elementor-pro/modules/forms/actions/discord.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/discord.php', 0, ']v+R[>)', ']v+R[>)', 'Q~S8=nA', '', 0, '?'),
('3=\n88Os', 'wp-content/plugins/elementor/assets/data/responsive-widgets.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/data/responsive-widgets.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5/2t<Y}GZ', 'y#=,KK}ϛ&}J`''ru', '', 0, '?'),
('3;"5$_\\D', 'wp-content/themes/twentytwentythree/styles/canary.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/canary.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JXP$''7汹', 'uAMRkt˰''@5-', '', 0, '?'),
('3HIP64`?ܑ4', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-videomasq.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-videomasq.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')	L-6DZ80', 'e㒸PKT\0NZBQ]u(̬<', '', 0, '?'),
('3֘63]lZ\00R', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/find.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/find.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̎h.e p<Q', 'uva+w<MjaYvՌ', '', 0, '?'),
('3v<	t`C9Ɵ', 'wp-content/plugins/elementor/includes/controls/date-time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/date-time.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q(ʠl%f', 'ξ5b\ZWSz>2y+5M=Rr}H', '', 0, '?'),
('3|I"', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HR$˻', '_q5Kx\r~ܭ\ZB2`u', '', 0, '?'),
('3@]Ɍ<M*', 'wp-includes/html-api/class-wp-html-processor.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-processor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EwFHUi]Wn:ѕ', 'Sq81?\rT<\Z\0Eh&+', '', 0, '?'),
('3hied', 'wp-content/plugins/code-snippets/css/edit.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@QbC-', 'l''?-;\04`$\Z''H ~', '', 0, '?'),
('3:Wt/ ', 'wp-content/plugins/elementor/assets/js/app-loader.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-loader.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{Z;Q!u"', 'X=?\0g܌V`ALHaJ#QF\nHa', '', 0, '?'),
('3''RKBf', 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QO1/<>%"X', '6r*IY\0C9<Jږ J*xD', '', 0, '?'),
('3fQ3h5[W<', 'wp-includes/Text/Diff/Renderer.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Renderer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w.֨"&R<', '[9#c2z\\''?H1', '', 0, '?'),
('3औO5(', 'wp-includes/theme.json', '/home/binawebp/omsrislb.my/wp-includes/theme.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VIS{4;', 'x)y	rA8i\\', '', 0, '?'),
('36_n', 'wp-content/plugins/all-in-one-wp-migration/loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '䯫%U/xM', 'oe;V9\Z@_Mkù', '', 0, '?'),
('3ng\0\\\0	W', 'wp-includes/IXR/class-IXR-value.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-value.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f>5lj\0f', '?h͇ XUPO|H$1', '', 0, '?'),
('4\n	m]ĿЊ', 'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!{\\ d`', 'ǿ''ɜLҪB>	&-{', '', 0, '?'),
('4\n2ߵ"EGÉ', 'wp-content/plugins/wordfence/lib/wfIpLocator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIpLocator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v;iZ\\	X#@\n', '8~X\rY=	\\ضKZ3rh2', '', 0, '?'),
('4ڮRt(', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2'']@]ek+', ' a)s©Ck#7f\Z', '', 0, '?'),
('431@*r8', 'wp-includes/sodium_compat/namespaced/Core/Curve25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'śL\\PڜU', 'c>5o𽃐_T9L~;e7', '', 0, '?'),
('4"-7	Fg', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('46Q^~''")/', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0G6\n1~H1', 'l-\0F[{B~iܪ6(O90', '', 0, '?'),
('48Vt+^X', 'wp-includes/pomo/mo.php', '/home/binawebp/omsrislb.my/wp-includes/pomo/mo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\ML8Ei', 'Kg\rşix.>FϷ>㣝/g/F', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('4;`߯z?	{Ǟ@', 'wp-content/plugins/wordfence/images/2fa-whole.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/2fa-whole.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h»$\ZPfX', 'ƪɝU[Z~^d''Xٮ', '', 0, '?'),
('4AIn097c`', 'wp-includes/js/tinymce/utils/validate.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/validate.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CL1?o+;{Y', 'kH;\0kCs	''K#45+eE|0', '', 0, '?'),
('4IEAÞSĮ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.fine-uploader.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.fine-uploader.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '# td', 'Qu\r^"<C1', '', 0, '?'),
('4M〘N~4\Z_', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/breadcrumbs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/breadcrumbs.php', 0, ';o:P!Ԧ=:d', ';o:P!Ԧ=:d', '?\n&;`=쨕^VՓIE	dt', '', 0, '?'),
('4ToiEt', 'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7s\r>J(E', 'K(wB$\rs줇!ਿD', '', 0, '?'),
('4VFtg@x+% W', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-base.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-base.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''-\n2dh', 'D&ʹg}=[/2\n:rj', '', 0, '?'),
('4a(#^m', 'wp-content/plugins/elementor-pro/modules/pricing/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/pricing/module.php', 0, '+<˹IXs', '+<˹IXs', 'qA^v@e0\nxl\Z@Ie8U', '', 0, '?'),
('4a[I}Hm)', 'wp-admin/css/deprecated-media.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JC\\s_ScZ;', '[םr{%m jyҋ\n{', '', 0, '?'),
('4c;瘢}*', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/razor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/razor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3&@.67', '&l	~Q9\r$V)QqՒp:-68', '', 0, '?'),
('4iÐj,CUQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elixir.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elixir.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&FiUT=7ol', '&,_tGk0_72qM lB*', '', 0, '?'),
('4:#RH83[', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SCvi9\n', '5&-\ZdV\no?moLR:W,', '', 0, '?'),
('4qEyVS/o}', 'wp-includes/blocks/tag-cloud/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^\r)ťN|6', '#zڰJVYqrSd^3', '', 0, '?'),
('4*UD|''J', 'wp-content/plugins/elementor/assets/css/app-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>8dhHۢ', '嘼F.|!تe=F:yn@)', '', 0, '?'),
('4\ZM{A+8h7', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/check-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/check-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.)fFCtc', '`\nũՉ6*2r'')', '', 0, '?'),
('4Tga[Q\0', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-hover-animator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-hover-animator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5ӽniͬ', '(D7KzsuOùԽFT;dñ0', '', 0, '?'),
('4i>$1P%', 'wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '殎o:mQ''', ';QˑYUu|bXF', '', 0, '?'),
('4Fvp/', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpcs-ruleset.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpcs-ruleset.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'يj{|DuDnBT', '%x\Z,Hi*3W=CpB(', '', 0, '?'),
('4,qWE;I();', 'wp-content/plugins/elementor/assets/js/announcements-app.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/announcements-app.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('4;Cj#P_', 'wp-content/plugins/elementor/assets/css/editor-preview-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|ǈ:Thy<', '0䋕#-v|{H{523', '', 0, '?'),
('4rfXg[x', 'wp-content/plugins/wp-optimize/security.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/security.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(K?29\r^(V*', 'CVzFPG(8@n6^\ry?l', '', 0, '?'),
('4h4m	V1	', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k;pS+w', 'T<s1c; uKa4?', '', 0, '?'),
('4ޥD@', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/RawFilter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/RawFilter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӯ\\~V''2q	O', ';p>&p''^]f2/QZ	Zo?@{6', '', 0, '?'),
('4l''E&H3', 'wp-includes/PHPMailer/POP3.php', '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/POP3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$>BZ', 'ӔӅ:9+f^L\nqٲ`wPs', '', 0, '?'),
('461/3>', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',e?2IZFg', '9Q[''|Si֫i=yW\rT', '', 0, '?'),
('4xkngLAftD', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.user.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.user.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`{;\rl5զu,', '!j;2''9<|]S݆Pws`nXY', '', 0, '?'),
('5iW_\0\Z', 'wp-content/plugins/elementskit-lite/modules/controls/widget-area-utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/widget-area-utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't#\\6xn.', 'ܘxQG4?>u22>1z!p', '', 0, '?'),
('5.T`,ߓ+ɨ', 'wp-content/plugins/wp-optimize/google-fonts.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/google-fonts.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|@$[^', 'f:h~j53MMrqV~Mf:B/F', '', 0, '?'),
('5,6C=UnKH', 'wp-content/plugins/elementor/core/kits/documents/kit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/kit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E8=d1ن\0B', 'bl/qC6\\q]}F䱞F', '', 0, '?'),
('54ZʗHJ', 'wp-includes/blocks/rss/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1]&pKu`y', '%9ͻ:I-6eH7Ds&', '', 0, '?'),
('5|9O	g@', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/author-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/author-box.php', 0, '|R,#*=4v', '|R,#*=4v', 'V\\x߶֒m\\mp:0kbL!', '', 0, '?'),
('5?y<2', 'wp-admin/css/dashboard-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/dashboard-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tyoY-n', 'JxJn_)#U/ø?oj', '', 0, '?'),
('5.=d)<peus^', 'wp-includes/sodium_compat/src/Core/Ed25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Ed25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '䊱ɽD>w', 'o4\r\Z١py]xk[/', '', 0, '?'),
('58d`S61K>ۮv', 'wp-admin/css/colors/blue/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0`(f)', '{wH	m\ZD޽\0{hr*d[i', '', 0, '?'),
('5C)\nWu꽝/FcK', 'wp-includes/js/plupload/wp-plupload.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/wp-plupload.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڌU=vke}', '==QqX-jnHŀ>\n', '', 0, '?'),
('5S{TƁe/', 'wp-includes/class-walker-page.php', '/home/binawebp/omsrislb.my/wp-includes/class-walker-page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9=	', 'j\\yԐ#8\0L\n%{}(I\Zo', '', 0, '?'),
('5ZSμv`69', 'wp-includes/version.php', '/home/binawebp/omsrislb.my/wp-includes/version.php', 0, '%Uvl7z)d	', '%Uvl7z)d	', '.\\t?''j(4x(=Om''s1', '', 0, '?'),
('5\\h>w	N', 'wp-includes/registration.php', '/home/binawebp/omsrislb.my/wp-includes/registration.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SD31', 'ՙvF٫PB8.8', '', 0, '?'),
('5`]\\ͭi\0\ZJT', 'wp-includes/class-wp-embed.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-embed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<߷}}l|n/lh=', 'iwbO("_U_ս7RzN8', '', 0, '?'),
('5bq,˛', 'wp-content/plugins/elementor-pro/core/database/model-query-builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/model-query-builder.php', 0, 'k-F 9(', 'k-F 9(', '#\Z);/C74}5^0', '', 0, '?'),
('5dLW&C\0LL', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessc.inc.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessc.inc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v׉KZ_]<', 'ʁ:9H:FnZֱFf{y', '', 0, '?'),
('5n~dp$g2&/\ZG2', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '؝boSC', 'ݤPkU{TÉ*)EH1', '', 0, '?'),
('5~?\rQo2%c3q', 'wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w,;hI', 'j0[ P\\U9DƈY9}//yț', '', 0, '?'),
('592^%<', 'wp-admin/edit-form-blocks.php', '/home/binawebp/omsrislb.my/wp-admin/edit-form-blocks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '퉡VИ~', 'Q oo\ny U\ZjvΦ,', '', 0, '?'),
('5?EidHn}', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l`Ь7`y׫Y', 's''KLε갪ϕל~)A\r^', '', 0, '?'),
('5+iq˦yy', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csharp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csharp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L97<[Ӂ', 'g;p@Q_uͰl)ů[', '', 0, '?'),
('5!1[A*X@1D', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gq`H	SH', 'TvAJifn;55~', '', 0, '?'),
('57N	C=-c', 'wp-content/plugins/wordfence/images/sort_asc.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&DKzS§0', 'NQ*TZ%P%jܑtZn/', '', 0, '?'),
('5[o5=', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/wp-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/wp-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rx_''DeQ,D', 'xjG8BJvd^}āG0''R', '', 0, '?'),
('5MWN\0', 'wp-content/plugins/elementor-pro/modules/notes/database/query/user-query-builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/query/user-query-builder.php', 0, 'Vv&)(r˲', 'Vv&)(r˲', '>;$;akDGIPL>z', '', 0, '?'),
('5#t5RшK', 'wp-content/wflogs/config-livewaf.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/config-livewaf.php', 0, 'd(f)ß/C', 'd(f)ß/C', '$RGtEіyd5WꇡbgJ*', '', 0, '?'),
('58ej#ȣ;tn', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ie', '8R3pdKk(sY|6', '', 0, '?'),
('5G/\\ť;I""', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Kӿ%$GA?rqM', 'pW\n=ym&21ʂ5eq-Ҥ-]', '', 0, '?'),
('5c`nK9', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uUL''~V<C', '_S5 ),->U\\<ob޶bw', '', 0, '?'),
('5Uهt', 'wp-content/plugins/elementor/assets/js/editor-modules.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-modules.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('5h,4N@kN', 'wp-content/plugins/elementor-pro/modules/forms/registrars/form-actions-registrar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/registrars/form-actions-registrar.php', 0, '}0ɏK\r', '}0ɏK\r', 'BHؕsEF8\n', '', 0, '?'),
('5\01Τ<}Mƹ"', 'wp-content/plugins/elementor/includes/widgets/icon-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/icon-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nq]KUVM', 'uncEՄ>v{pHs', '', 0, '?'),
('5 KUl1', 'wp-content/plugins/elementor-pro/assets/js/posts.e33113a212454e383747.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/posts.e33113a212454e383747.bundle.min.js', 0, '})S"{3\r', '})S"{3\r', 'zitAߨZJO%', '', 0, '?'),
('6\\Vu+N5', 'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/tipsy/tipsy.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0U*E8"h@', 'y70FfV\n~g=\\2:	j', '', 0, '?'),
('6y;', 'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui.theme.min.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bK0bxљ]', '4\ncE2=V{+\\goЅO', '', 0, '?'),
('6X/HL', 'wp-includes/js/mediaelement/wp-playlist.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-playlist.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K^Is2ҩQ', 'z	mE039]-k2[2o', '', 0, '?'),
('6>:s9P9Y', 'wp-content/plugins/code-snippets/vendor/composer/autoload_static.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_static.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HAYZE\r*q', 'N4Z7!sT!ZwrvZ', '', 0, '?'),
('6;I(Hm%f', 'wp-admin/css/farbtastic-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\n){', 'T=Y#[vrHiaR', '', 0, '?'),
('6[f9? _', 'wp-content/plugins/wordfence/images/icons/bullet_yellow.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/bullet_yellow.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J&ɌԔQ<', '1Nߗ׍?*ií!FMp9^.', '', 0, '?'),
('6cbkki3@H', 'wp-content/plugins/wordfence/lib/menu_firewall_waf.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_waf.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm}#`:Po/', '(˕=9L/*m,{o7ܺhVT\\', '', 0, '?'),
('6pz}&Z', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''\\\nT 86=#ք', '9%n''hnj=*9qs_nCH', '', 0, '?'),
('6ucW=)`i4''a', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-liquid.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-liquid.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Nvh\\KQt>', 'a?|wLl= 5%{λK,', '', 0, '?'),
('6z/S́]#rp', 'wp-content/plugins/elementor/app/modules/import-export/compatibility/envato.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/compatibility/envato.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7Cm`2', 'WTDy}^M.̖,\ZY(', '', 0, '?'),
('6|nJѷ~~', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-icons-promotion-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-icons-promotion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CC!', '78EبL;=\0T=M', '', 0, '?'),
('6]jvWk\r3-', 'wp-admin/load-scripts.php', '/home/binawebp/omsrislb.my/wp-admin/load-scripts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#oG뽝@>T.', '8zt=k$&WRΈhV', '', 0, '?'),
('6ƌC+', 'wp-includes/sitemaps/providers/class-wp-sitemaps-users.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sHouGk', '5JE4߇YoX	#T', '', 0, '?'),
('6S6yp(ixۃ', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/2.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/2.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}@}<9:\rϚM', 'Fg\0_ɕ\Z%zˍuW3Ev%', '', 0, '?'),
('63ƴSR+6', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jssm.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jssm.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l5	ab', 'S&LqS!/R*vV: ', '', 0, '?'),
('6S]S', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4?}Bz', 'Xu	~BG]\\Og;h\\', '', 0, '?'),
('6\Z\0)So#r[', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpunit-with-coverage.xml.dist', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpunit-with-coverage.xml.dist', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g~֣HZa\0Ꭺ', 'wkWbӵF;o:9մ', '', 0, '?'),
('6lLX/H3X=E', 'wp-includes/blocks/template-part/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ed]ĬB\r	', 'ģ6o_i9-UL9#ܞfz%cSJs', '', 0, '?'),
('6aH	Z\0', 'wp-includes/SimplePie/src/Author.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Author.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')&Kl=;#j', 'nr?9=Ď(0^Ac', '', 0, '?'),
('6M7l$p', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%Ԗ,=&c>', '	YIt~0VU|RxV\rp', '', 0, '?'),
('6b5?s_', 'wp-content/plugins/elementor/core/admin/feedback.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/feedback.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '82\Zѡq''-', ';%4(\\o/t`=i8r)֖', '', 0, '?'),
('6NAp]', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Vips.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Vips.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S"Iex2)H', 'ͺ''X]Z5*I\\s+u׋G9', '', 0, '?'),
('6]% 8mj:', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-self-test.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-self-test.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	2fpZqh\\', 'Huyy&9cעjM% Tm4', '', 0, '?'),
('6̠,_qu', 'wp-admin/includes/class-wp-filesystem-ftpext.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-ftpext.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#+~6nSd', ':|\0gƧgћS>Cٕ', '', 0, '?'),
('6҈F[N,', 'wp-includes/class-wp-block-bindings-source.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-bindings-source.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'votȤEe?\Z5', 'ECƟluas\0&KlZO(nJQ$', '', 0, '?'),
('6ֳ>ӢX_f', 'wp-content/plugins/elementor-pro/core/upgrade/upgrades.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/upgrade/upgrades.php', 0, 'g7TJj*u', 'g7TJj*u', 'DlT:%Mf(p<>|ESɵ', '', 0, '?'),
('6٨	:{^D', 'wp-includes/js/jquery/ui/accordion.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/accordion.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H%oF,', '[aZ \n2z㟘!D_', '', 0, '?'),
('6q)R', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontastic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontastic.php', 0, 'D:w7g(I', 'D:w7g(I', '"NJl\0A7]jIưIt', '', 0, '?'),
('66\\>l>', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<Yvw4\Z>f', 'FbQ_*AY՗)XB\nՖHq', '', 0, '?'),
('6@V/\0', 'wp-includes/blocks/comments/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3mb;rDt8', 'S|*{\ry]:&;Y', '', 0, '?'),
('6NNVxcjַ', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/advanced-integrations.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/advanced-integrations.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tb', '8]\\TM؄0T_oG', '', 0, '?'),
('6cR$.Rj\n', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-mwm{tGSJ3R', 'M #!UYb!r47*n\r', '', 0, '?'),
('6d)SC$Ik!', 'wp-content/plugins/elementskit-lite/widgets/post-list/post-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-list/post-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' HIw ', 'c\ZfF57e6%Xj', '', 0, '?'),
('6jn?V#', 'wp-content/plugins/elementor/assets/css/widget-image-box-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-box-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1uyHǀ+y', '8LHEYor%aM.lvCM\rI|J', '', 0, '?'),
('66apϩ2c', 'wp-content/plugins/elementor/assets/css/templates/widget-accordion-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-accordion-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[7)h', '[Yex~(dwiAIlOKS', '', 0, '?'),
('64oo7!6', 'wp-includes/blocks/post-author-name.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1vABRfH', 'i95PҬp=\rJH2', '', 0, '?'),
('7<5uq^', 'wp-content/plugins/code-snippets/assets/menu-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/assets/menu-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~\r$o:Y', 'D{bb\0;d\n]GZ0u}f(', '', 0, '?'),
('7,<', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/AbstractConverter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/AbstractConverter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i?gi>', 'SM@{JY1k9ߕTdɟ!\n', '', 0, '?'),
('7nsd:5^v0', 'wp-content/plugins/elementor/assets/js/webpack.runtime.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';n賦_$h^', 'gQ#ރ.b̜lR1O{', '', 0, '?'),
('7zX|:ǝ4V5', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=7iyyЫYuj', '\nLRhys6֤', '', 0, '?'),
('71E8', 'wp-content/plugins/elementor/modules/favorites/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n#jZJ	r%', 'sxNV}*J?Vu=\Zy-3b', '', 0, '?'),
('7"妿W\rѽ', 'wp-content/plugins/wordfence/lib/menu_wordfence_central.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_wordfence_central.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QԘ"dfn ', '<O9orEwaofrs', '', 0, '?'),
('7(KUJ&n', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-page.php', 0, '\r\rP]p??"', '\r\rP]p??"', 's .b6kxX1+((ʃjc', '', 0, '?'),
('73/? n(6$', 'wp-content/plugins/elementor/assets/js/2e387c4154cbf63565b2.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/2e387c4154cbf63565b2.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<[Mtf\\?-', '՞^7C!/uPTI(8_4%n', '', 0, '?'),
('74hZ>lI', 'wp-content/plugins/wp-optimize/js/status-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/status-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':4p\nF', 'ɖ*+jR.Pb:7\rueI@', '', 0, '?'),
('7=!ѥU', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-classic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-classic.php', 0, '\0wKi.P', '\0wKi.P', 'B`=Ö>ϡTËrr!u[', '', 0, '?'),
('7CYT%$Y', 'wp-content/plugins/wordfence/lib/wfI18n.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfI18n.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h_k\r&', 'g=]M((KPV%8\\ᲀڄT7', '', 0, '?'),
('7C_e	Q0Q', 'wp-includes/css/dist/preferences/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rls:<4', 's$_''tRfG¢~B#yrpH', '', 0, '?'),
('7Lը,opu', 'wp-includes/class-wp-url-pattern-prefixer.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-url-pattern-prefixer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ItqHH<\\', '\nSD.H<!M攼:zuddI', '', 0, '?'),
('7Q mPX\\', 'wp-content/plugins/elementor/assets/css/widget-video.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-video.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'طC.P0Ax', 'U\rU\reKJX<NSEBԑ', '', 0, '?'),
('7oj@J Cȿ', 'wp-includes/blocks/site-title.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"\rz,j`/n|q', '0R:^9Qq''?Ca豷%f', '', 0, '?'),
('7ruF@J,', 'wp-content/plugins/wordfence/lib/wfDateLocalization.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDateLocalization.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MZUUE{', '}X)89[4\\!H"\\}', '', 0, '?'),
('7sJL3[;', 'wp-content/plugins/elementor-pro/modules/custom-code/custom-code-metabox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/custom-code-metabox.php', 0, 'HL"+-FI', 'HL"+-FI', 'Da}&LvBDW`[vQ', '', 0, '?'),
('7|oOUz\0Ef', 'wp-admin/network/update-core.php', '/home/binawebp/omsrislb.my/wp-admin/network/update-core.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L;G_bu''\\', 'v,I/L^ww\ZX12yTɣI~', '', 0, '?'),
('7H*W`#4Z', 'wp-content/plugins/wp-optimize/templates/performance/site-health.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/performance/site-health.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!*.%xV;', 'VRZ==l,\r`9*wm`;', '', 0, '?'),
('7WpM)T', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>dTFVf', '#Fk.\\ٿIMFZЀ*5lϞ5', '', 0, '?'),
('7}pC256', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ArrayResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ArrayResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ѫ#<h', 'j\n"Sǋʺi\\/<j)!j=', '', 0, '?'),
('7eC?mKyC', 'wp-content/plugins/code-snippets/vendor/composer/InstalledVersions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/InstalledVersions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-Y$R\0', 'NRí2Hh&HX:b]d̳2O', '', 0, '?'),
('7i<\\~ð', 'wp-content/plugins/code-snippets/js/services/settings/tabs.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/settings/tabs.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$߈6q', 'bFݍO43/6eWvm)U\0', '', 0, '?'),
('7KgE5ݻ', 'wp-content/plugins/elementor/modules/history/revisions-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/revisions-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@6t\Z\\Pbc', 'Io%h!wԤrF>QJ', '', 0, '?'),
('7C9OIr_,', 'wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.html', 0, ',MJO!HX\\]', ',MJO!HX\\]', ')7\r:<~):L\\\\,y#Ev', '', 0, '?'),
('7%Wy~׹P?x', 'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lzV6`wmZBs', '\r 8&J34бǽ', '', 0, '?'),
('7v1g1ͨ', 'wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('7o^l:B', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Iݶ3S', '!MڒޫDwwe(!=ިd,GW', '', 0, '?'),
('7\\JA^zhWV', 'wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/add-new-template-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/add-new-template-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w3#', 'g03Q+gջ.jn*~mfdi0', '', 0, '?'),
('7@r5', 'wp-includes/blocks/gallery/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mod{vð[Lv', '=hӣp}|)WR r%%b', '', 0, '?'),
('7[-]oj', 'wp-content/plugins/elementor/assets/js/packages/env/env.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[oA%*z%', 'Nݮ~Nͼz`v}6Q"E+F', '', 0, '?'),
('7c¢)Seb', 'wp-includes/js/jquery/ui/menu.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/menu.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(ISpֵ''ZU', 'n2v$n\r6,WU[N', '', 0, '?'),
('7c.$P!"򹚆', 'wp-content/plugins/wordfence/images/sort_desc.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<j_ˊR2', '*-9.HGO6/L):Cdz', '', 0, '?'),
('7Y|7^\ZVq', 'wp-includes/blocks/site-logo/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&UOSp', 'OycqdTիf֕͋,,', '', 0, '?'),
('7\\CCx泥{<', 'wp-content/plugins/wp-optimize/images/features/premium-support.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/premium-support.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^5u', 'w:C''?xj$3bث𧎜_Υ', '', 0, '?'),
('7y(ʔ|', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-promotion-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-promotion-menu-item.php', 0, '4b\0', '4b\0', 'g@{lRv̨M^lǖ՛', '', 0, '?'),
('7kXfXmS', 'wp-includes/js/dist/vendor/wp-polyfill-fetch.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-fetch.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hpd5/c,', 'hqpTB6q29cB]_η_G', '', 0, '?'),
('7Tn!U\n\n', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/header-footer-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/header-footer-base.php', 0, 's	ZeG', 's	ZeG', '04ɾG¹ސ?D	D)")[Q', '', 0, '?'),
('7Mp?qv˘', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js', 0, 'ӺyY', 'ӺyY', 'wc=Ab)XG"C6Gyu', '', 0, '?'),
('72_RD;n', 'wp-includes/blocks/block/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/block/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H,,Ma', '=S3{e4_\r9<|f#7c ', '', 0, '?'),
('8m5ٳ/', 'wp-content/plugins/elementor-pro/modules/flip-box/widgets/flip-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/flip-box/widgets/flip-box.php', 0, '^ͬ#&{0', '^ͬ#&{0', '.pZ(qB%x%Iɑx|B7', '', 0, '?'),
('8%>j3qgMjV', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerExceptionInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerExceptionInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0$#V', '}qF`''vF~', '', 0, '?'),
('8*r=7@(D', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L֞YX Q>A#', '( \n1~ԬS&2wmKy*"mo', '', 0, '?'),
('8.Э	.p;S!J', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/wp-color-picker-alpha.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/wp-color-picker-alpha.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pi*U0K7', 'gl~ȗe1#ԫSP}=(6:niI8', '', 0, '?'),
('8=Ia%k~', 'wp-admin/js/editor.js', '/home/binawebp/omsrislb.my/wp-admin/js/editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';6ƺZp\0C[', 'g\0A@\\S)~d^U', '', 0, '?'),
('8=^^=', 'wp-content/plugins/code-snippets/dist/editor-themes/lesser-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/lesser-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-;5zt+("', 'd\0/P@6$Y\nRGr', '', 0, '?'),
('8?6B\rpl2Rx', 'wp-content/wflogs/config-synced.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/config-synced.php', 0, 'ibI*0ăx%R', 'ibI*0ăx%R', 'C8 h_vUrP70/(%GAh?2', '', 0, '?'),
('8?^P3(ڠ1\04', 'wp-content/plugins/elementor-pro/modules/notes/database/notes-database-updater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/notes-database-updater.php', 0, 'FSmfS	', 'FSmfS	', '/`&Q4RleH'']', '', 0, '?'),
('8KWBR`|J', 'wp-content/plugins/elementor/modules/home/transformations/filter-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pnu6!*', 'Nr,P|Ze`yo\\3d$h:˸O(O', '', 0, '?'),
('8VݨJ*kD\r', 'wp-includes/html-api/class-wp-html-attribute-token.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-attribute-token.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.WWnjTU', 'Rs_KqDDMk\rOH', '', 0, '?'),
('8W8ƨrdZ9', 'wp-includes/blocks/navigation-link/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\\\w)S{', 'q|\0AЋyC%PSTŝ5y', '', 0, '?'),
('8Y6AaoH', 'wp-content/plugins/elementor/assets/js/ai-gutenberg.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-gutenberg.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nJSf&mbS"V', 'P<NZm0 ŭ!)I_', '', 0, '?'),
('8YvC[,', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':\0>}LQ\0', '_U\0]q=Չf\\/	@d\r+v*(', '', 0, '?'),
('8`9p*;p0cAc', 'wp-includes/blocks/comment-author-name/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j\r,zUT\r', 'phUQvIȶV9[\r(Qa', '', 0, '?'),
('8aL!>(J/', 'wp-content/plugins/elementor/core/experiments/wrap-core-dependency.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/wrap-core-dependency.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P>]eM', 't!5Zϣ3<|W>\0LgowHD', '', 0, '?'),
('8oORF''', 'wp-includes/class-wp-block-bindings-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-bindings-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5^*x8', '({/&bvmX9h', '', 0, '?'),
('8uRKya v', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-livescript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-livescript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J+\r^ښݾ', 'Af3Q@ tJ^3Y,x0', '', 0, '?'),
('8yDv)gx', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sz+ӹ/Rj,', 'mmG",f705i6PF$E', '', 0, '?'),
('8{P}r?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ruby.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ruby.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r5\\|I[;', 'Ϛ"bߧg`h@%(	f', '', 0, '?'),
('8~\r[itȪ$B', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/wp-optimize.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/wp-optimize.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zz}', 'm*lQJ;Gyy+p]pȃ	', '', 0, '?'),
('8Jk8]]z', 'wp-content/plugins/elementor-pro/core/app/assets/js/hooks/use-feature-lock.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/hooks/use-feature-lock.js', 0, '%`''V LM', '%`''V LM', '-(q9 .94GI', '', 0, '?'),
('8KrW+T', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9h	8`', 'd9	\\ ٖ\n^S4r͠?>&l', '', 0, '?'),
('86[Pk07~}', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons-manager.php', 0, '^;<M2x ', '^;<M2x ', 'ByAFۧӏƾu1ϫ', '', 0, '?'),
('8>\n!H', 'wp-includes/blocks/navigation-link/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƀdU.A(t', '0aI@h0u~Ѭ', '', 0, '?'),
('8rFy^0v', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-form-fields.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-form-fields.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\rKƼܔ', '-*pf.;0=[2Lb', '', 0, '?'),
('8R6DHq-{:`', 'wp-admin/includes/translation-install.php', '/home/binawebp/omsrislb.my/wp-admin/includes/translation-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&}*vI', 'Kp3lu''X;6-]V-%', '', 0, '?'),
('8@)6yg[ysQR', 'wp-admin/css/deprecated-media-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JWt>Um \n', 'OǢMD#衿H"#;', '', 0, '?'),
('8A)Nz>', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/TypeHintContainerResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/TypeHintContainerResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4SXCS', '٨n)FuEy7~w/;''M', '', 0, '?'),
('8ndl4\Z4', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/odometer-theme-default.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/odometer-theme-default.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '픜(w⺵޾', ';qP=֥e?q<YHD', '', 0, '?'),
('8_N\n6\ndT', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/FilesystemLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/FilesystemLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lRG8', 'JI.U\nŜ\rw)3Hd', '', 0, '?'),
('8Ů{/;,+Ig+?', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0RtH', '=L߆ME0SA"ƀQ', '', 0, '?'),
('8 &~ε''', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-github.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-github.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h`bzZ<iu', '*(ǆs<gVת(3i4s(', '', 0, '?'),
('8ÛZEQ$}UPT', 'wp-content/plugins/wordfence/lib/wfCrawl.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCrawl.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T]3T]', ']B~p#%H''inȥ\\9\\@', '', 0, '?'),
('8+ќ#Q~+eڱ', 'wp-content/plugins/wp-optimize/css/wp-optimize-admin-4-1-1.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-admin-4-1-1.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(`̹/Αm', 'Zz;;b,QxRv', '', 0, '?'),
('8~#K9{u%yR', 'wp-includes/js/dist/widgets.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nQ4_', 'Azx熻0D*=x4/T}ʳ', '', 0, '?'),
('8$7	!ZP', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/link_nodes.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/link_nodes.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c>\0f"W,', '/gYb;C[@ꐚ5U', '', 0, '?'),
('8ܞt\ZwNxa', 'wp-includes/class-wp-network.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-network.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^~H(ɮ\0', 'M"VbO2557)}|\nsq|\nw"\\5', '', 0, '?'),
('8@abE ', 'wp-content/plugins/elementor-pro/assets/js/form-submission-admin.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form-submission-admin.min.js', 0, 'T"hw)/6n', 'T"hw)/6n', 'D$*\\W&,\ZQzOq Uf', '', 0, '?'),
('8.Iԝە', 'wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/templates-categories-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/templates-categories-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',6cx[0AbŃ', 'l\Z	)aTl2\0XbN', '', 0, '?'),
('8%lkЧ/3', 'wp-content/plugins/wp-optimize/includes/class-wpo-activation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-activation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ŝ&]`8>f	', 'I	F!ى8P''CPf', '', 0, '?'),
('8Q\0Z+%', 'wp-includes/blocks/query-total/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '![om{Rc''2h', '5PG@~V\Zxjc?&Hc\rĶZTcא', '', 0, '?'),
('9\r5''X>?', 'wp-includes/js/customize-preview-widgets.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y}xc&', '(]PUP''L2n\Z\n', '', 0, '?'),
('9	e3Mֲ', 'wp-content/plugins/elementor/modules/checklist/steps/assign-homepage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/assign-homepage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ֺli<Al{=', '9tYd&Sμ"', '', 0, '?'),
('9\ZvH:OUd', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ձ&B辯', 'YlWȉ@PU1''I͡T2', '', 0, '?'),
('9\ZJ~H', 'wp-content/plugins/elementor-pro/modules/theme-builder/assets/images/conditions-tab.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/assets/images/conditions-tab.svg', 0, '{!]"0<d', '{!]"0<d', 'kca|\0b<"З9r7k', '', 0, '?'),
('9ψ[1d{@', 'wp-includes/class.wp-styles.php', '/home/binawebp/omsrislb.my/wp-includes/class.wp-styles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x$Ϗ/', '\rW|Kx}ZgOy-aϷ', '', 0, '?'),
('9!E]\\Tq5c', 'wp-content/plugins/elementor/modules/link-in-bio/classes/render/core-render.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/classes/render/core-render.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'syB\rs\ZE', '5I^WV^8`\n4Cȁϧ$,', '', 0, '?'),
('9$9C]igi\0', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L?/̻', 'mXS\\VL?7!ޟk,R,', '', 0, '?'),
('9$X܈>', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-files.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-files.php', 0, '`x0~(+	.dW', '`x0~(+	.dW', 'vK\\۾ʟ#a¤j8W&W', '', 0, '?'),
('9''2|X>', 'wp-content/plugins/elementor/modules/page-templates/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/page-templates/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' [,n\\1', ':ܝ-U<#(_.yn0', '', 0, '?'),
('9-$Wnp)', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log_once.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log_once.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':ܜeT&', '=\n2jPuA	kݗO%"64M', '', 0, '?'),
('94I)[YI\n', 'wp-content/plugins/elementor-pro/core/behaviors/feature-lock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/behaviors/feature-lock.php', 0, ' ҈MfTKL', ' ҈MfTKL', 'bTh~`"vn|L)\Z''XC#', '', 0, '?'),
('9:do\np`Ry', 'wp-includes/js/tinymce/langs/wp-langs-en.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/langs/wp-langs-en.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':w,]^!s', '[ l	̚yH-\09P@', '', 0, '?'),
('9E,qK[|', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '73', 'cuc_ޜ:fO\r̞', '', 0, '?'),
('9L>h9³k"', 'wp-includes/blocks/navigation/view.min.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.min.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tdU)^kՃ', 'O"TwQ=`6vJ''S+\\Q^', '', 0, '?'),
('9XP4.}j', 'wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b\\Ս#dg#_', '2)T,\rM:s~׽Y\\A(', '', 0, '?'),
('9\\4;J;u~', 'wp-admin/images/freedom-4.svg', '/home/binawebp/omsrislb.my/wp-admin/images/freedom-4.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mR%L$輬', 'zThLS2:#5Ja[vs', '', 0, '?'),
('9ksB=}TŃc7', 'wp-includes/sodium_compat/src/Core/Poly1305/State.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Poly1305/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C\0n`i>]', 'q㋵''NN{QN', '', 0, '?'),
('9pI(n[ZFIp', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/FileImportException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/FileImportException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!;V|ƹP	u', '\\ⷸJm+0{h%/', '', 0, '?'),
('9wv\r^!C', 'wp-includes/blocks/image/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XQy5>xA\Z', '}|YJ|2g&FiƣTQ~W', '', 0, '?'),
('9yW7#i', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-site-identity.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-site-identity.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zrjfׂi\n', '$˶$3JwmZ%ٝ4DѺ9}] vR', '', 0, '?'),
('9`̻$Q\Z', 'wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/generate-press-theme-support.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/generate-press-theme-support.php', 0, 'kCΦt1', 'kCΦt1', 'Z,JmqBZ(b¡2?', '', 0, '?'),
('9 \ni\Zk', 'wp-content/plugins/elementor-pro/core/app/assets/js/utils.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/utils.js', 0, '>iG~$c+w', '>iG~$c+w', 'g=O@`UJxa+`\nq\\bir', '', 0, '?'),
('9} B^?	"', 'wp-includes/script-loader.php', '/home/binawebp/omsrislb.my/wp-includes/script-loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r~1ˠݽq', 'ar$?z\Z6''Z:64v_p~F99/?f', '', 0, '?'),
('9$IvmLLee', 'wp-content/plugins/wp-optimize/js/send-command.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/send-command.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^Xbt', 'T3''%:y0ֿF1K', '', 0, '?'),
('9"#L\0Rν5', 'wp-content/plugins/code-snippets/dist/editor-themes/lucario.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/lucario.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}?WZ#ge', 'dT9~ʄRmF͍', '', 0, '?'),
('9yS	pV6=', 'wp-includes/blocks/quote/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1Un00sC', 'K[|wb8c5Ua?%˾2ft', '', 0, '?'),
('9 {b\nJcF=lY', 'wp-includes/blocks/query-pagination.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CmzZ*sJ', 'ǩ/DHm~^6zZȹj#$''3', '', 0, '?'),
('9Ce;Y#v|z', 'wp-includes/blocks/audio/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~R0W@y_', 'vC~Qk[s2B\nǩza|n#', '', 0, '?'),
('9Ln\0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/switcher.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/switcher.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P=LFyfYrU', '/d:p	-ۙu-y\Z', '', 0, '?'),
('9 {ZMi?q_', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-page-builder-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-page-builder-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǶXؚ_6U', 'u%XRPg''uÕ`kYt`#fº', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('9+w !4', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/erlang.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/erlang.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$''%?5', '8~<됤fލg)Iݗ+D', '', 0, '?'),
('99tw[i_S', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9/i>\\!', 'PgWE+e-j"Ca)m\\hWJ', '', 0, '?'),
('9s3SZ,p8g', 'wp-includes/images/media/text.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/text.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zs0ȝQK', 'g?[D*p8qVѓ>N', '', 0, '?'),
('98{`j7Ρ', 'wp-content/plugins/elementor/assets/images/kit-is-live.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/kit-is-live.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':|S.a+jۺC', '|T;J0yXz؆^d5O(', '', 0, '?'),
('92\\qg<,/', 'wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b&f2EC', '|kIY1\0<f&fH0%', '', 0, '?'),
(':lwU6x2(', 'wp-content/plugins/elementor/assets/js/element-manager-admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/element-manager-admin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O^Vk9b#', 'rKf1t=8,MI#APP', '', 0, '?'),
(':{{79', 'wp-admin/link.php', '/home/binawebp/omsrislb.my/wp-admin/link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '݇χpm1bЯ0', '"參35\ZZ8q41|\ng*g<!h:g+$', '', 0, '?'),
(':怢o5"Gq9uV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-kotlin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-kotlin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y<pn<#', 'z؋q8ZZ(lM#:J', '', 0, '?'),
(':+՛', 'wp-content/plugins/elementor/assets/css/modules/ai/editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2C u	B>z*', 'vzXP46뵰F4v5Cpɸ4~rA~,', '', 0, '?'),
(':|LH6(cg', 'wp-includes/ID3/module.audio.ogg.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.ogg.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gk"QV{', 'i=YS\r ?1NMv', '', 0, '?'),
(':5ډX}d\\', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/WithTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/WithTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h(B[폷-', '@ׁ%V_''r/]eLp!Z', '', 0, '?'),
(':Sn]', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Injectable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Injectable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vWY ǉi;~', '%%~=''QT2F{;pG&~', '', 0, '?'),
(':!\\ZHgsX', 'wp-includes/block-bindings.php', '/home/binawebp/omsrislb.my/wp-includes/block-bindings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J`4', '	kDW$sەkk\0', '', 0, '?'),
(':%@c6D>&b1ɤ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6@lQB', 'k@\r#X''\r[R2+,b1f', '', 0, '?'),
(':6nI[3(&Q', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/LoaderInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/LoaderInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!s=nd', '"F$v4#G%^;"nB', '', 0, '?'),
(':96$M/)~_', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&~(\nȈT', '?}.Bm#)CKdi`F{me', '', 0, '?'),
(':9oW''`=Nнz)', 'wp-content/plugins/elementor/assets/images/library-connect/left-1.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/left-1.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*c\0\n{b>', '=P3GO9K]V,H', '', 0, '?'),
(':<$0,w"&e({', 'wp-includes/class-feed.php', '/home/binawebp/omsrislb.my/wp-includes/class-feed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':%ɕ<ۼL%l', 'ǖ&GJ*\\$BawD', '', 0, '?'),
(':DJ$hǅ\r', 'wp-admin/js/customize-nav-menus.js', '/home/binawebp/omsrislb.my/wp-admin/js/customize-nav-menus.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm2Y]bf', 'yHXĹM:mihbٱ-|', '', 0, '?'),
(':J[t]HJe', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JX6ɸ"_3Fk', 'o:,%zc3P)D{%', '', 0, '?'),
(':TKHicq', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/conditions-config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/conditions-config.php', 0, '%oRZBT', '%oRZBT', 'QV!74(EqG''', '', 0, '?'),
(':W	$s''E&\\D|', 'wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P''\0e=ρ', '\0zQ_Q.餶''-|qNab*S!', '', 0, '?'),
(':hO^Y', 'wp-includes/fonts/class-wp-font-library.php', '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6?A<Mw*JRJ', 'k\0lnx	š+''+:', '', 0, '?'),
(':vL|[?΃i', 'wp-content/plugins/elementor/assets/css/widget-alert-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-alert-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hpf+ Srb', 'lo5[O;i UU%5;`N.bb,', '', 0, '?'),
(':x&rK\rMoX~>,', 'wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.f2f989f4cb7ee7582ee7.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.f2f989f4cb7ee7582ee7.bundle.js', 0, 'h\r%G6W', 'h\r%G6W', 'BZ,ܧ>Jd;93`VDuk', '', 0, '?'),
(':e\0hjr', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/InstanceInjector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/InstanceInjector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '겱U$9O', 'iWY''N]d@Zd4\n', '', 0, '?'),
(':)\r,rbY:q!Z@', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`gz^/', 'H`6<vpIiOȩM#Ma', '', 0, '?'),
(':{]A''*', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-color-overlay-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-color-overlay-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&+o5N|^', 'ҀhvIc\n}ECJi', '', 0, '?'),
(':\ZO:`24r', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Proxy/ProxyFactory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Proxy/ProxyFactory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' T+_G@', 'EWOS:^eUhkE%F*^', '', 0, '?'),
(':%H`!\rZ', 'wp-admin/js/media-gallery.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/media-gallery.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%gUsbK', 'OH+ܽg"{CvFBt1', '', 0, '?'),
(':mY@e:', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Option.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Option.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W?C9VW?}{', '1!2Hf%(''򬔿88', '', 0, '?'),
(':TR=<d,', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<3%\\[7cv', '\nᏉz\r*ҧYuˍ3&#B{Z-', '', 0, '?'),
(':]W7', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of.php', 0, 'k]''HR/Cm', 'k]''HR/Cm', '''LM̃^=+XrT^Wx^;`', '', 0, '?'),
(':!K]doH).T', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-butter-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-butter-button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M+0 q;d', 'J:P7''P/*hyf%",tyK', '', 0, '?'),
(':qkWKE', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	f%=Cu', 'Qoǯ6@\r%.6::', '', 0, '?'),
(':>b]', 'wp-content/plugins/elementor-pro/modules/blockquote/widgets/blockquote.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/blockquote/widgets/blockquote.php', 0, '|ObfĤ', '|ObfĤ', '/\\h\Z,\Zq:N\rZ w.', '', 0, '?'),
(':I#''9O^L]W', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/lang/exopite-sof.pot', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/lang/exopite-sof.pot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nPbV\n[Rs\0m', ']m 	uk~[\\Z̞< ', '', 0, '?'),
(':s-(BO2)', 'wp-includes/blocks/cover/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~E\n6:8خs', 'Ma纴ǲv50>7ݕ\n:', '', 0, '?'),
(':fYR7M', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ly~n&;', 'TO9A;4@6I}', '', 0, '?'),
(':,,8T#', 'wp-content/plugins/wp-optimize/js/queue-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/queue-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '||O4y6	', ';@>ֿV	w#)R\Zs', '', 0, '?'),
(':ņ	\0PQ]SU', 'wp-content/plugins/elementor-pro/assets/js/carousel.49e271b0dd16dd95d00b.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/carousel.49e271b0dd16dd95d00b.bundle.js', 0, '=JF:,Ӝ	', '=JF:,Ӝ	', ';G#JlSM,qoGh.1', '', 0, '?'),
(':̕W/C(1e', 'wp-content/plugins/elementor/assets/css/app.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u\r\\ӗ&׼', '?Y#\0nq\r懑꒜ `', '', 0, '?'),
(':ݪp5fb', 'wp-content/plugins/elementor/assets/css/modules/ai/editor.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=x˗t', 'ƠĠWQ-LxYr|t+)$', '', 0, '?'),
('::aEĢ', 'wp-content/plugins/elementor/assets/js/admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#{R{&e*j6', '܁؅WxZT3.!X`KT@''-', '', 0, '?'),
(':eb_\Z', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '٩h}g>', '];I-gHKtT!dt(PN:', '', 0, '?'),
(':XqݝJ\\5P4', 'wp-includes/images/spinner.gif', '/home/binawebp/omsrislb.my/wp-includes/images/spinner.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L\nD\noًj˲', 'zƄ\Z"n\Zs(U/~7F^', '', 0, '?'),
(':4<yt>', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-harakiri.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-harakiri.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n)NiG2io0', '4+w},)\nOhtvɰ\n/', '', 0, '?'),
(':h[u,4', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7F+FNa', '<zzwb1=TqG;)\\M\\qWڄ', '', 0, '?'),
(':n̣RMti#=', 'wp-includes/images/media/audio.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/audio.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'taCA.Z', 'L>$\noixoj-\nL]G;q', '', 0, '?'),
(':\\X', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>X3', 'xa/U ya1;;rx', '', 0, '?'),
(';bҡBк', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-images.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-images.php', 0, ')*ct"', ')*ct"', ' 7@\Z#!X', '', 0, '?'),
(';bfȖ0x', 'wp-admin/css/colors/midnight/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',`JeIw', '<˶qt9$aR''s2>Gr', '', 0, '?'),
(';ܒscF!', 'wp-includes/css/dist/components/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's''30', '\nF^&-}sqQғs', '', 0, '?'),
(';7əA', 'wp-includes/Requests/src/Exception/Http/Status304.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status304.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p]:}l\rw', '2gl;\0P''&Ka;Ӫply2"0$h\n', '', 0, '?'),
(';%,TfkhǤ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sh.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sh.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c!AR', '?]fϿam`Sۨ:g[6=', '', 0, '?'),
(';/Ty5+R6', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/childNodes.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/childNodes.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?ov3IR', 'BKGW@%s(c~U\Z\n|:', '', 0, '?'),
(';1''Ig8[p', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditor.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditor.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"[4KM', '\rⒾ;#g ٢TO%<@Q]o6', '', 0, '?'),
(';1ы#Y_Nt', 'wp-settings.php', '/home/binawebp/omsrislb.my/wp-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hP:kQ$\0ʑ	%', '8\ZE,D\ZjKP*cW\0PCK5A', '', 0, '?'),
(';:"R[M', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/FactoryDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/FactoryDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u:p~D8TW', 'zj<h#t@unpp)J', '', 0, '?'),
(';P֩RGD', 'wp-content/plugins/elementor/assets/js/app.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\iGų6*8!0H', 'Q周\\ Y\Z''d/3Q', '', 0, '?'),
(';Q}]]UK}9o', 'wp-includes/blocks/post-terms/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z^kNұ\Z)', '?㷷(s''˭#l<RTe', '', 0, '?'),
(';RyhRxK\r', 'wp-admin/js/farbtastic.js', '/home/binawebp/omsrislb.my/wp-admin/js/farbtastic.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rJgrTb;un*', 'M_`9h*/s', '', 0, '?'),
(';W/&*8', 'wp-includes/SimplePie/library/SimplePie/Rating.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Rating.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\0Wuʖu+Xk', '-\\R/0򽌭zA&~/', '', 0, '?'),
(';k \0Sl>+', 'wp-content/plugins/elementor/assets/js/tabs.537e7a0f178447960143.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/tabs.537e7a0f178447960143.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''q_f $Pw>', '>\r1cb"x,BHkKN˗', '', 0, '?'),
(';nCg7$;_', 'wp-includes/blocks/media-text/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+,Abۙig\rR', 'f# mǪ!u\0Dz', '', 0, '?'),
(';q]Le-؋', 'wp-content/plugins/elementor/core/common/modules/connect/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '얯`l&7', 'D|(6\ZqHI<U[oO<77(!(y', '', 0, '?'),
(';qPď酨BW$', 'wp-includes/blocks/post-content/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q@EXbnpeН', 'V2, `\ZͯM&\\xFq[Ɵ', '', 0, '?'),
(';ךږX\\Z^\\', 'wp-content/plugins/wp-optimize/images/notices/spring.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/spring.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/#ZxFe^', 'h%?dd;"^5', '', 0, '?'),
(';dxyɖá%}ě,', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/elementskit.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/elementskit.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5sDrck.K~', 'NeUssQdd	J, ''A', '', 0, '?'),
(';Hg)#)a8', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NegUnary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NegUnary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lFH·Pqq', 'l!zDD?h |Z*\rV,4', '', 0, '?'),
(';93ە', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SkE\0hP', '\\\n$_2Y[7YI3K', '', 0, '?'),
(';+U?A ''', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S1o\\%ږ', 'adxQ%`y/Vcyէfxjְ', '', 0, '?'),
(';atK_', 'wp-content/plugins/code-snippets/dist/editor-themes/3024-night.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/3024-night.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E&xh\\ do', '?~ȫ>M@!s$b+~b[<:', '', 0, '?'),
(';͏vV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-toml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-toml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QFa', '/W,HǏ\0ѻ,HVߠȩ+', '', 0, '?'),
(';PN֋B={k', 'wp-content/plugins/elementor-pro/modules/notes/database/query/note-query-builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/query/note-query-builder.php', 0, '*[K؃@7gҕEi', '*[K؃@7gҕEi', 'ݬ)hm>:ԲѲ^Y?pmlE', '', 0, '?'),
(';v0BK1д', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+o~Xݓ\0', 'xXѹ$6UdZ$x&3', '', 0, '?'),
(';d+;C?', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F޿y\0A^E=', 'ڟݑ2it/WpƆ0_,;', '', 0, '?'),
(';2yTWKsa', 'wp-includes/blocks/table/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^q%mZ,1', 'WO)j)Ag3$0$[m', '', 0, '?'),
(';.I70', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-trumbowyg.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-trumbowyg.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&pCp8~DX', '~DfxB붖-ؑ\0\n', '', 0, '?'),
(';/Y@h', 'wp-content/plugins/wordfence/css/wf-onboarding.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-onboarding.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2<e)b+6g', '-b:#;<*l	́\n)i69e8u', '', 0, '?'),
(';C~%[xuq:', 'wp-content/plugins/elementor-pro/assets/js/countdown.b0ef6392ec4ff09ca2f2.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/countdown.b0ef6392ec4ff09ca2f2.bundle.min.js', 0, 'j\0٢W''R', 'j\0٢W''R', 'w.Jr\r y''Y\nS5\0Si', '', 0, '?'),
(';Wct*+Br', 'wp-includes/images/smilies/icon_surprised.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_surprised.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U-#+0?', 'cuyXؓAd5[=w>*Spwe._', '', 0, '?'),
(';*1\Zn4', 'wp-includes/js/wp-emoji-loader.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji-loader.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>6j??A', 'n(S~!gyaAH1O%', '', 0, '?'),
('<XfuZ^`x', 'wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wvw:g,Ɉ*Oi', 'wgXCK$`5Vqt/!Q>', '', 0, '?'),
('<Ґp\r˟', 'wp-content/plugins/elementor/modules/system-info/reporters/plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{}aiq{', 'Iú2`*QYȐח3b^!', '', 0, '?'),
('<,MR-zjFD@', 'wp-content/plugins/elementor/core/common/modules/connect/apps/common-app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/common-app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2'',(ѕ!', 'fe;Eu`t2?Ð=', '', 0, '?'),
('</GŞ@̿=', 'wp-includes/css/dist/edit-site/posts-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 9{?L\0O', 'e*&}>X3ާMhmǫݠ囊', '', 0, '?'),
('</+Ípv\n|', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nkZ0\\\ZҐv/', '/%Vw	kZguK=#pSa&9<', '', 0, '?'),
('<0O4Qd&''', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ruby.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ruby.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l@?/&A׭t', '?P\n Bň9IpEO\\ޗ', '', 0, '?'),
('<3w,9oG', 'wp-content/plugins/elementor-pro/assets/js/preview.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preview.min.js', 0, 'һ*˃b', 'һ*˃b', '8o[{k{l''!BI*k<', '', 0, '?'),
('<5vCwPV!S', 'wp-content/plugins/wp-optimize/optimizations/trash.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/trash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۓvbF', 'G-;b?SjMtds2c0m)G', '', 0, '?'),
('<8#Uk@:BB.', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/plugin.code.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/plugin.code.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';KUvȇ[8	', '~1M}@[2\n:\\z)HW6Ý؀', '', 0, '?'),
('<FPz22~', 'wp-includes/js/imgareaselect/imgareaselect.css', '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/imgareaselect.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}(()3󵕯', 'q!ݿJӇi\nE5s!\r%', '', 0, '?'),
('<Ly2C-''', 'wp-content/plugins/elementor/assets/js/e-react-promotions.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-react-promotions.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ߎΊs7)', 'lҳ}]nmD/', '', 0, '?'),
('<YD-A''|)', 'wp-content/plugins/wordfence/views/user/disabled-application-passwords.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/user/disabled-application-passwords.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%tZ)♟V', 'G͌rA{\r`\rY}~hJd', '', 0, '?'),
('<Z1Du;,S', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rCԼhG', '<ڂWf.l90\r@@Ru', '', 0, '?'),
('<r6Ɨ͹>', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFilterError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFilterError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BR^t0', 'pl`{{/,fw	Z''|', '', 0, '?'),
('<|q|xܲ\\zZ{', 'wp-includes/blocks/page-list/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I-e"`Cʰo', 'xx_̎d㟢`V*u', '', 0, '?'),
('<9uj!$', 'wp-admin/css/install.css', '/home/binawebp/omsrislb.my/wp-admin/css/install.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':|>o7jڡ}', 'uři==SbVKL&pv6', '', 0, '?'),
('<nҠܫ', 'wp-includes/SimplePie/src/Cache/BaseDataCache.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/BaseDataCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UU:ǙNDP', '0ߜAz\nesJN3L(lђ"', '', 0, '?'),
('<η~h\\', 'wp-content/plugins/elementor/assets/js/announcements-app.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/announcements-app.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^H;=', '2"\ZžR"C B_&[~ƌ=', '', 0, '?'),
('<7ZNlU4W', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nQ03򥻱', 'pEqˢe#Y0lf#\\a2o''zM', '', 0, '?'),
('<qV+})P]\\m', 'wp-content/plugins/elementor/vendor/composer/installed.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/installed.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' S$w98wR', 'A뛭W-Wd}fB(1d񝿭שH_X', '', 0, '?'),
('<ޤlK`i', 'wp-includes/blocks/embed/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AgL/Оg\n', 't#`B!I~{^!y|oâF', '', 0, '?'),
('</-zfC}', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/as_text_node.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/as_text_node.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g>~޼,M)J', 'Y+kI15/Rӏx]%oM\\', '', 0, '?'),
('<hj	44a2', 'wp-includes/js/utils.js', '/home/binawebp/omsrislb.my/wp-includes/js/utils.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2![pNI5', 'iII4*{FZanǠ)J,T&g', '', 0, '?'),
('<LZUʢǞEL\\', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-images.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-images.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^\Z5_m', '<1*DK]dn<_.J', '', 0, '?'),
('<u꿖\ZܜY^', 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j<]@	4', '\r]"!''sg=zķQ2NK', '', 0, '?'),
('<֧/@es+Cvy', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/FactoryDefinitionHelper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/FactoryDefinitionHelper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.FLc\\,', '崁%آ_I0+ U-7[A', '', 0, '?'),
('<֮7*iy\Za', 'wp-content/plugins/elementor/assets/js/styleguide.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r,1ɗA#ir', 'LA,2̮8aJ"p[', '', 0, '?'),
('=|bYIdf', 'wp-content/plugins/elementor-pro/modules/wp-cli/theme-builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/theme-builder.php', 0, 'z(v9^8', 'z(v9^8', 'hmi~?VT}&ur\r[DlcV', '', 0, '?'),
('=Jǰja}LIZ', 'wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nFj\0g', 'JLwIt~מ\ZF]PfsPw?', '', 0, '?'),
('=>/lzՃ6\n', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-base.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-base.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '־"FW''', 'gFUOMk0932\Z!m 5+4\rW', '', 0, '?'),
('=}8w}Wm', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv.po', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv.po', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>?=iMC&Ot(', 'ٮw#Jc@/F3-^cVnܖ', '', 0, '?'),
('=f;Vdl"', 'wp-admin/css/code-editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/code-editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z.y^Ji*', '{ I^`\0<<', '', 0, '?'),
('=	]}*<.', 'wp-content/plugins/wordfence/views/waf/waf-install-manual.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-install-manual.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pmQynRPqؙ', 'l,\\d."bִlzw\\E', '', 0, '?'),
('=2%)^ςv\0', 'wp-content/plugins/elementor-pro/modules/screenshots/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/screenshots/module.php', 0, 'H''\neg:S44B', 'H''\neg:S44B', 'W;i$--jHn HK"8px', '', 0, '?'),
('=55]tG{', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/drools.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/drools.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x 4IA.c=', 'K\\\nu>M*{x\0,S$(ف', '', 0, '?'),
('=F_j1r.', 'wp-includes/Requests/src/Transport.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Transport.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r\Z\0D''', 'bKt1#ֱfEX{KGGMг', '', 0, '?'),
('=S6aXo,2', 'wp-content/plugins/wordfence/vendor/autoload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7ln_pBH5!5=(', '3-g,ӌ=$g7Ӫ:V10h', '', 0, '?'),
('=fuA><Th@', 'wp-includes/js/jquery/ui/progressbar.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/progressbar.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dya%xa|', 'M\\ص28DϋO\0e4', '', 0, '?'),
('=NŻt\n=l', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5#Gvwk]', '#MjcP\\(;K.', '', 0, '?'),
('=k[4 =', 'wp-includes/comment-template.php', '/home/binawebp/omsrislb.my/wp-includes/comment-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɢ~TM4#?-Df', '>XfK\00lR&#7$i26', '', 0, '?'),
('=59', 'wp-content/plugins/elementor/core/settings/base/model.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/model.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kjv}?', '?*.vlOX$jRÙ', '', 0, '?'),
('=aS>Tw\rjS#ܾ', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-04.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-04.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':w3JQf!"R;', 'Qzs%?4', '', 0, '?'),
('=Ө\0E', 'wp-includes/blocks/verse/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eʰAT[', '7;(@{\n>4	3-.+', '', 0, '?'),
('=`;z7', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthentification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthentification.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Nر"Qph8', '*k~N4o۟PFHiN', '', 0, '?'),
('=QKI}U峫ib', 'wp-includes/blocks/accordion-item/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?ZQk:^8', '.:q-Adc(>', '', 0, '?'),
('=;{e65', 'wp-includes/js/jquery/ui/effect-pulsate.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-pulsate.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(*&b', 'A^}>t:,}1', '', 0, '?'),
('="%bYD:', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-clojure.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-clojure.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+Du\rJ', 'GmuE87\ngJT>|', '', 0, '?'),
('=⒜W~1_', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/FactoryException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/FactoryException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|mj5\\3h', 'A\\/l^&\nT܀0ܬ4''\r', '', 0, '?'),
('="C0x	?Ei40', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/makefile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/makefile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[r/Po9,', 'XƉMڢ+mk\03M:fk#^', '', 0, '?'),
('=F혣ÆK&', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3|xwJuTV', 'i,0@hz<RQwKdh"', '', 0, '?'),
('=噄\nAK(l', 'wp-includes/js/dist/keyboard-shortcuts.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/keyboard-shortcuts.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' .ΎC̺tGs$', 'q5%6:۬<IH%k6A', '', 0, '?'),
('=:?V7U', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AbstractExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AbstractExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E<\r7Te', 'dz2=evxk)dL,/\neI', '', 0, '?'),
('=a0&', 'wp-includes/js/jquery/ui/effect-slide.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-slide.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/1ɿ', '<V&g򎪆f:Saʥl', '', 0, '?'),
('=f/)', 'wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag-report.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag-report.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zf\0\n9-@', ']XK]\nz7"4l3', '', 0, '?'),
('>g^Q8Nyc{', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-fill.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-fill.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#@DWNo#z4J', 'xyLv\r)5!83Fy', '', 0, '?'),
('>[ g3d', 'wp-includes/blocks/spacer/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&PG>uY7', 's<f7''7$`~H\r|J@', '', 0, '?'),
('>x,l̮KQ0', 'wp-content/plugins/elementor/assets/js/513d3f05d575dabcdc35.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/513d3f05d575dabcdc35.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''NQKo', '9ԄDYj+<> ', '', 0, '?'),
('>+ 16LR#ѽ', 'wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y95`', 'SA-4|	j$p,Ndr>\0F\\<', '', 0, '?'),
('>,	\0~th', 'wp-content/plugins/wordfence/views/onboarding/registration-prompt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/registration-prompt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<e@e,cM\nE', '8n#ng+I4hr0Ek', '', 0, '?'),
('>5ˏ.y2Q[ڣ1', 'wp-includes/blocks/block.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/block.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݮhOl', 's$P/P.]KeV"Uxf', '', 0, '?'),
('>=+	^SΉFޯ', 'wp-content/plugins/wp-optimize/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't<Rϕ.z;9', ' Ëf4EƆIǏAFFf', '', 0, '?'),
('>GOjPlB', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$]\\', 'ؚx"o*I\nQjT(G\Z.\Z', '', 0, '?'),
('>I''@`kg܂R', 'wp-content/themes/twentytwentythree/templates/blog-alternative.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/blog-alternative.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=\r/Ns', 'a06b)~=~4vH[Bf', '', 0, '?'),
('>Nu`q?', 'wp-content/plugins/elementor/changelog.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/changelog.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~J؋)D', '^Ҽj-t/)a2v', '', 0, '?'),
('>Ut3bi3', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/base-context.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/base-context.js', 0, 'T*?F|', 'T*?F|', 'P,5y;+|\Z2BmAae]L', '', 0, '?'),
('>Vnh?i', 'wp-content/plugins/elementor/includes/settings/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2tH|%gY\\', 'l4չq;w /!]9(H', '', 0, '?'),
('>dY4Q\n%', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sWGID', 'z%Dcm,O#vtxE@*', '', 0, '?'),
('>hЩXX*v1', 'wp-includes/theme-compat/comments.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UҴ\0', 'z;h| txȘ 碉\\bd!ori>jr', '', 0, '?'),
('>qQa{ipe', 'wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-promotion-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-promotion-menu-item.php', 0, 'gV	(', 'gV	(', '.m-.-$>\\zq@~Mt#Y$', '', 0, '?'),
('>ql+m\05Ħ"^', 'wp-includes/js/customize-preview.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KTjl6Rw', '$nKXa5);s2aT', '', 0, '?'),
('>t	C^ao', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_454545_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_454545_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J։އ>>n', '0\nwcYg/,Ɵ!}f', '', 0, '?'),
('>uʸ!4N2', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',;L''dee', '+GT}m)*[c5ZN-v>', '', 0, '?'),
('>vb<m-`ѪS[', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ޙ3b£thS', 'ߤa"f.{?4l#E=.RC˙', '', 0, '?'),
('>wB8aNK[Xc\r', 'wp-content/plugins/elementor/assets/css/frontend-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{Kvr|CӪ', '-Dbr+lwaFcQXl', '', 0, '?'),
('>z2	ې<\\', 'wp-content/plugins/elementor/includes/controls/button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|YpMԓ', '>X7%= rGLϞX', '', 0, '?'),
('>K/IA-v8P', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$M>Ѵ|8޴', 'f$eL#"3P4_~Ac47', '', 0, '?'),
('>Mإ^H{b', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('>puL3Ij^bo', 'wp-includes/blocks/comments-pagination/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nUlQo7', ';)&4BIHE1DΤ*Ӗ', '', 0, '?'),
('>*nҺsɠ', 'wp-content/plugins/elementor/assets/js/editor-modules.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-modules.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j$ijB', 'Z\0AtqKx׌Zgf^u2', '', 0, '?'),
('>SW`ik', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{߈i ð', 'ߪѢq:mw"<by y', '', 0, '?'),
('>ot+', 'wp-includes/blocks/post-terms/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_f''z<+', 'i|b)ұ2HS$Cm,T6', '', 0, '?'),
('>X\rbڟ$W', 'wp-includes/class-wp-image-editor-gd.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-image-editor-gd.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2 {1z#', 'eq}eq!CUIǘw7\0', '', 0, '?'),
('>%H', 'wp-includes/blocks/template-part/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '74͞K^(ӑ9', 'S1>ۄfIZZ3Pi*', '', 0, '?'),
('>+t0L', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button_bar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button_bar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nff}', 'JCUOKnb?6i_Vu$}', '', 0, '?'),
('>DJɷ\n', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/MacroNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/MacroNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/ō76', '^Avlj6VlX}:6S# ', '', 0, '?'),
('>k&Wjև	.D', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F1N2', 'h''@-ɘvx=)LA?', '', 0, '?'),
('>Gf@Tម;D', 'wp-includes/blocks/cover/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AǯDHx\r', 'U~8r3}L&<oST.2%', '', 0, '?'),
('>h\n(zpI', 'wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.js', 0, 'so&t}\\', 'so&t}\\', '꠩''Ym\rkԛaAլ..)n', '', 0, '?'),
('>oI15@h', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/admin-style.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/admin-style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Il''d%x', '\rH^! `\0l2c.;dN+󪶄\0C', '', 0, '?'),
('>3wn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tex.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tex.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o7i0b+I@Z', '΋\ZKakX#Y9jun0', '', 0, '?'),
('>7C{@.U"', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G/!(~', 'C#D\0806`^DGlzN6\r>5', '', 0, '?'),
('>وky\nrz', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling.svg', 0, 'jW*18$2#f', 'jW*18$2#f', 'Ku̟<	V`ԏIF<', '', 0, '?'),
('>OR{7%!	bn', 'wp-content/plugins/elementor/assets/js/packages/query/query.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4[[8]Lڱ)7', '[&>}8	,a8¿dح>.Rb', '', 0, '?'),
('?WZBDN13', 'wp-includes/blocks/audio/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f_04a', 's8!20ڠ/%Q?Sv', '', 0, '?'),
('?p|Ro', 'wp-includes/blocks/separator/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' tEo?@{', 'kL#Ga^	,І\rF''\ng:}FLz', '', 0, '?'),
('?JT&', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc_disabled.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc_disabled.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǐ#a]2', '[8lYckl	u#KVn', '', 0, '?'),
('?*E\n[~p:y@sc', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-vars.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-vars.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z,*-"', 'Sh@y~^g>sT/zl,7', '', 0, '?'),
('?.xH/on	', 'wp-content/plugins/code-snippets/dist/editor-themes/duotone-light.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/duotone-light.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HM?>:`P!C', ')\r(dm2Qm8MRS', '', 0, '?'),
('?.P\nyS', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/datatables.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/datatables.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '瑈>L1p', 'V9<g	`1]NA7˽Hhʷ-ݶQ', '', 0, '?'),
('?PZ=~6|"', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionArray.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionArray.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Nٶs~?	T', 'Zu"ܠ0,r&!g<#$U)', '', 0, '?'),
('?U''_l.p', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o>B	IN-y', 'hl[(l~QuFM	', '', 0, '?'),
('?W*5>oRwK', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':)YZ8/)', '8@Ѐ})XX<DeA', '', 0, '?'),
('?Yvq_ۮXO', 'wp-content/plugins/wordfence/images/sort_both.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_both.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%BQxSV.D', '6"@Xg''W7wgJq', '', 0, '?'),
('?]P.12b', 'wp-includes/js/tinymce/plugins/textcolor/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/textcolor/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%i3f', '(ELb[K!sӊnĲ', '', 0, '?'),
('?e.EJggFN', 'wp-content/plugins/elementor/includes/compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĪNY+UWv', '\n/FN%''ɀٻjj꘬d', '', 0, '?'),
('?hh:z͏qZiV', 'wp-includes/blocks/post-author-biography.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y:j\\{Ls', '2 ǜMu)%A_k2z', '', 0, '?'),
('? uuj2', 'wp-content/plugins/elementor/assets/css/admin-bar.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-bar.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0frxa<!4', 'G+MOqzU}?b3$', '', 0, '?'),
('?94bROk\n', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-url.php', 0, 'oTo', 'oTo', '''|&Ly_09С<;\\oؙ', '', 0, '?'),
('?oGYmq', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IsӞ\Zڕ[~', 'Ë7O ]>I<K?0r-0a"5', '', 0, '?'),
('?ʬ8Sdj', 'wp-content/plugins/code-snippets/dist/editor-themes/hopscotch.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/hopscotch.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8@ G֞IBj', 'ėɾD]kTaqi^kPX', '', 0, '?'),
('?8vß(D', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/simple_html_dom.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/simple_html_dom.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r蜉/G\rK8wf', 'V)/MGjgfM̊SMUzW', '', 0, '?'),
('?=@M$#P7', 'wp-includes/js/dist/html-entities.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/html-entities.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!BhfB-', '5LW/XGPL\\''', '', 0, '?'),
('?VeoP', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.murI1G', 'Lr7D@yɂ]NK(tiG9Tm=', '', 0, '?'),
('?ӆ|G', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-wollok.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-wollok.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʖ%DSfى', '\0HkNDivǖ3', '', 0, '?'),
('?ŏ%G%#', 'wp-content/plugins/elementor/core/role-manager/role-manager-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/role-manager/role-manager-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EYC&ׁoR', '8X`z3jͼQf#gx8NK', '', 0, '?'),
('?	9&Q)F2', 'wp-content/plugins/elementor/assets/js/056b8f3bbbcabf026cd1.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/056b8f3bbbcabf026cd1.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']^h2QK?G2q6', '4`-1cj-Z8.>`', '', 0, '?'),
('?+\\kM@vL?<', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/AbstractNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/AbstractNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z:Ga;}e', 'XZuh*MW8m.>9,~)E\0', '', 0, '?'),
('?:(Q&s78', 'wp-content/plugins/elementor/assets/images/app/site-editor/footer.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/footer.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4g{Vk6Fzk', 'i#B@"ўoenRnhVElW', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('@\08(<:t#1S', 'wp-includes/css/dist/block-editor/default-editor-styles.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b\ZTw_b', 'HUw؃n׭AÑe', '', 0, '?'),
('@-f;', 'wp-content/plugins/elementor-pro/modules/theme-builder/files/css/template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/files/css/template.php', 0, '^poΠP', '^poΠP', '&ǗzgYGA2)nu8Q', '', 0, '?'),
('@pޠ3DF\0', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PQ;0#4b2', '	jh9qKr;5XVPe%@լ0', '', 0, '?'),
('@һ=-OB0', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qis]C6L0', '\\B)cXŻڂgn', '', 0, '?'),
('@@0(Pv', 'wp-content/plugins/elementor/core/base/base-object.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/base-object.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'acSYE3', 'D\Z]ؑ$9 eV$tF\\', '', 0, '?'),
('@&N\n_9)O', 'wp-content/plugins/elementor/vendor/composer/autoload_namespaces.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_namespaces.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"@~Ǵ[@A', 'ЬKql:~ҝ٤Bu$*Vz)', '', 0, '?'),
('@&編}Au', 'wp-includes/Requests/src/Exception/Http/Status413.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status413.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'е$=WfaPw', 'חrMHݜy4߮8J', '', 0, '?'),
('@VK$~`*+c0', 'wp-includes/block-patterns/query-medium-posts.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-medium-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<UVn', '#l.Cv*;!4f', '', 0, '?'),
('@V$K<1*', 'wp-includes/css/jquery-ui-dialog.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H:DΒMwld', 'ˍ''y	TLuˇF	5:[xD	', '', 0, '?'),
('@[?0c\\wǶ[', 'wp-content/plugins/elementor/data/v2/base/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9˅;œ-$K', '?vBOb49_޺ǻľ', '', 0, '?'),
('@h볹3אz2zl', 'wp-includes/css/dist/edit-post/classic.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hi(+p]8	ĺ', '	6lͩ+T\n݃Bf]1', '', 0, '?'),
('@k/I?T,', 'wp-includes/js/jquery/ui/datepicker.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/datepicker.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-̵.WA^', '܍"֙#l8I.\n>f', '', 0, '?'),
('@xJ$u\rZw', 'wp-content/plugins/elementor-pro/modules/animated-headline/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/animated-headline/module.php', 0, 'q0ⴝ^b	ۂv,', 'q0ⴝ^b	ۂv,', 'l}I44ifەSZQI8WN', '', 0, '?'),
('@̘9#Ly(', 'wp-includes/images/arrow-pointer-blue.png', '/home/binawebp/omsrislb.my/wp-includes/images/arrow-pointer-blue.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wb·*L[', 'fbZD1.Vaw4l?pG^{', '', 0, '?'),
('@.̴`0\\[', 'wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BR{YO', '嬐''"ӴG/~w{;xo|', '', 0, '?'),
('@:VS', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mBmCeA:_', '^C$־hW~+\06@', '', 0, '?'),
('@&BBXǍVTC)', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EndsWithBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EndsWithBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tŸw0.OA', 'tHNؚ?\\uyXZ=C', '', 0, '?'),
('@#Lۤ)', 'wp-content/plugins/elementor/assets/js/ai-media-library.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-media-library.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KM~c5@s', 'MgAb\\B|!G}{/ی?3', '', 0, '?'),
('@+JZi`', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/InvokerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/InvokerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9:".KU', '<aA%Db\rhX!K', '', 0, '?'),
('@|˨g4R\\', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tB7Çm}7fK', 'rjb To\n|]Ǚ''L', '', 0, '?'),
('@jsx%@"', 'wp-content/plugins/elementor/includes/widgets/read-more.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/read-more.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@T\rϗ(z', '\r3!?\Z*u1K''ƣ;', '', 0, '?'),
('@@=	G?7', 'wp-content/plugins/elementor/includes/controls/base-ui.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-ui.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FLR{Ȓ!', 'ه7۩s։=c%*''', '', 0, '?'),
('@CE''O', 'wp-includes/css/dist/widgets/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q	D\r', ')w)\0`}o>~AsꪦD`(', '', 0, '?'),
('@\Z!zrWp', 'wp-content/plugins/wordfence/views/waf/option-rules.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/option-rules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')\0QN#$|', 'tϷ\0\re(xTn_CQ=K2UC', '', 0, '?'),
('@4j*Tǳ', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't*(pQ)M', '5i#Tp=T+ZNJ\\', '', 0, '?'),
('@XD\n\nRNt', 'wp-admin/images/menu.png', '/home/binawebp/omsrislb.my/wp-admin/images/menu.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r9#dY`	', 'lIE/(p\0pnT-Oz"],=`', '', 0, '?'),
('@ȯ&Oo', 'wp-content/plugins/wordfence/lib/noc1.key', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/noc1.key', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9eb\0PO', '_ujP-KOAܫ', '', 0, '?'),
('@`>%Ec', 'wp-content/plugins/elementor/assets/js/new-template.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/new-template.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$fjτX', 'b=cۇCl\0DS6r\r', '', 0, '?'),
('@&]ibP%+''', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-powershell.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-powershell.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!f&PƝ;eEۈ', '=nzxBƙ\nU', '', 0, '?'),
('@L߯7٭kقE', 'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`30h~ݻh', 'ZR''Zw$߃_ɐxT{-`', '', 0, '?'),
('@;5XVOZ', 'wp-admin/images/mask.png', '/home/binawebp/omsrislb.my/wp-admin/images/mask.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g~"J䩎', '/<sԡ)''.1jknK9Q', '', 0, '?'),
('@$7\\@-7(', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthDigest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthDigest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZYU7', 'qN\\`]lxZu.cnzl', '', 0, '?'),
('@mOW', 'wp-admin/admin-header.php', '/home/binawebp/omsrislb.my/wp-admin/admin-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J3)BGCE', 'ܔ5 G~כ\0WZoӃ5\0', '', 0, '?'),
('@tR>GHhס', 'wp-admin/css/revisions-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/revisions-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U`PY=}h/', 'x(fw?kms8cmď', '', 0, '?'),
('@A\rBpթ', 'wp-content/plugins/wp-optimize/js/sortable/sortable.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[_uwR', '_"ݭHe\\{М.', '', 0, '?'),
('@sZ^qv', 'wp-admin/images/media-button-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/media-button-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#WI\\?', '<:tnkbwi&	R\Z', '', 0, '?'),
('@+T΄''٤', 'wp-includes/ID3/module.audio.flac.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.flac.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@pL@E{', 'ּ3t46$ay!֦ȓڲh#{', '', 0, '?'),
('AlA~i^uØ', 'wp-admin/css/customize-nav-menus.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':<EC]R', 'N^|7\r-l8QɫVV', '', 0, '?'),
('A}Q6<', 'wp-content/plugins/elementskit-lite/helpers/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/helpers/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p^\\!', '7pWݻXM2\ntRWi\\qh', '', 0, '?'),
('AE[`', 'wp-includes/js/thickbox/thickbox.js', '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/thickbox.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5(Or[_ب$/', 'yEV\nh\ZCe~l3JD97roV\rd', '', 0, '?'),
('Ar -U#''', 'wp-content/plugins/elementor/assets/css/templates/frontend.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^jЦq{(K', 'B enT㆔aELU3֕[', '', 0, '?'),
('A@\nװK/G7ޞ', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversPreview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversPreview.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fø%:umHoT', 'Ldd_R8<M"Fi|GD''', '', 0, '?'),
('A%0?''٭o', 'wp-content/plugins/elementskit-lite/modules/widget-builder/live-action.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/live-action.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>.j*E7Zg7\n', ' }tie}0!T܅(j>8T', '', 0, '?'),
('A(Xo]蛲L(V', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/TextDumper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/TextDumper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~ϭqؓr+', '#jn"iKy4h\n&\0Ni7Ep', '', 0, '?'),
('A*=7V(=9', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditorShortcuts.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditorShortcuts.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')7o\Z|\n	~V_vrac', 'W\07ZA+%(k׵Q0ޙ', '', 0, '?'),
('A+~/Ję4$Y*', 'wp-includes/block-supports/spacing.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/spacing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0m%wz', 'լ5+''-KKzhV \\MMF3PW', '', 0, '?'),
('A,tw ''dߞ', 'wp-content/plugins/elementor/core/kits/views/trash-kit-confirmation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/views/trash-kit-confirmation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~x+`Q,', 'u{me1Ě_0 RXb;', '', 0, '?'),
('A7R1:', 'wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z雇I', 'EF2,@|sD☢tg|mnf$Ύ', '', 0, '?'),
('A;ت\Zܦz', 'wp-includes/sodium_compat/lib/constants.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/constants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{#l>m', 'ٹmc(l''mtˣ[gW', '', 0, '?'),
('A<"}7Kb߂', 'wp-content/plugins/elementor/assets/css/common.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I	ؗRL_a', '*&`uL>$S<r$', '', 0, '?'),
('AB!=B2\r', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(Ѷඃd8<7', '#^ƷwMf//3&go', '', 0, '?'),
('AK<jgsr', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4Kb(\\pB-', 'ճ* ʰ	[q˜Pk', '', 0, '?'),
('AM>\n^P@g', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&k	A5', 'L$3eR4ڥ1G=\r', '', 0, '?'),
('AN]vy?t%]', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-drools.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-drools.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VݰG<=u,0', 'O|@^`d2FQ@0`4Z>=ޒ', '', 0, '?'),
('A_e.阧''B\\', 'wp-includes/blocks/navigation/view-modal.min.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view-modal.min.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9NR>.', '/W"\r_W@F|=', '', 0, '?'),
('Aa@JŁ', 'wp-includes/js/tinymce/plugins/colorpicker/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/colorpicker/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' Cȭ?d{׭V', 'BR\0!䄚Q''5w', '', 0, '?'),
('Amԑ<\0RVeUP', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-element-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-element-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X(F?xb[>', '\Ze3J?SI.~>3TQ', '', 0, '?'),
('Asvg4U', 'wp-includes/js/dist/nux.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/nux.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',j<b_h&yպ', 'f^yiOREyxc9FS', '', 0, '?'),
('AzT,VzR!cg', 'wp-content/plugins/elementor/includes/controls/icon.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/icon.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n.Mk', 'ptQR*d}>"/ch0TV', '', 0, '?'),
('A{& V>Νs', 'wp-admin/css/login-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/login-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.:Mۀ=%$Wi', 'Y3l%f''Q[]y''d|{b', '', 0, '?'),
('A+''s*_fJ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gHL%DԄ,', '.C0am I*x!SK', '', 0, '?'),
('A/xp)', 'wp-content/plugins/elementor/assets/css/templates/apple-webkit.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/apple-webkit.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z'')0<j', 'o.*e̲_rgۺ>&=', '', 0, '?'),
('A @Ϊ~X\02', 'wp-content/plugins/elementor/includes/user.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/user.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FS^=c<l-', '_rq\rPT(4]', '', 0, '?'),
('A8V,_OX4', 'wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v6<C=\Z7c', 'J>r)<pYJ(Dl0', '', 0, '?'),
('A^F''$', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-06.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-06.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M3Nc(', 'ތ֙ϼ<Ddّf$b{Z!Ψ|D#', '', 0, '?'),
('A''D\n{W', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-java.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-java.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WwC', 'K!Xδ>;ZJ\Z', '', 0, '?'),
('Aȧ,-){S', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-url.php', 0, 'M''؃˞o=', 'M''؃˞o=', ']VQ,E[!]TФty', '', 0, '?'),
('AB:Ch*j%&', 'wp-content/plugins/wp-optimize/css/sortable/sortable.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/sortable/sortable.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' Lq@dr\\', '%wRI1\0dv}qt6', '', 0, '?'),
('A[.@,', 'wp-content/plugins/elementor/app/modules/kit-library/data/kits/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/kits/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ln5}}', 'Q`2jH\Z[rEDYhIԅa', '', 0, '?'),
('A_W1\n@WxH', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts-manager.php', 0, '''	\ZNVN+', '''	\ZNVN+', ';EBtA	U*A4xhL03#<', '', 0, '?'),
('Aػ#"j', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1t*9܋Ժ', '݋O)Zz;s<*]~', '', 0, '?'),
('A<!W.L-', 'wp-includes/Requests/src/Autoload.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[Ss@301rd', '܏<Bh=8MI-^:3<2', '', 0, '?'),
('AOر]	D', 'wp-content/plugins/wp-optimize/css/wp-optimize-global-4-1-1.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-global-4-1-1.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Avc.9j7V?', '/̡F7jmY"5]Økk(', '', 0, '?'),
('A[=$(0y', 'wp-content/plugins/elementor/includes/managers/skins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/skins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8&k#䃉`', '\0QUaoKgv E;9~"j+Z', '', 0, '?'),
('B^tpk!', 'wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R*LTG4%P', '-nFJ&TPo\\ϓ\\2', '', 0, '?'),
('Bȵ}6ۦRo=I', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-poopart-icon.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-poopart-icon.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0/h', 'ʪf0ui?+b`}EKL%fu', '', 0, '?'),
('B)O9\0i''U', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-glider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-glider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b''`qm3M', 'b>ʃOvCm,K\Zjȧk9y#2@F3n', '', 0, '?'),
('B:Q딍.v', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hqAi', '	q68xօ\\s\rN~.Zخ["', '', 0, '?'),
('B&g5', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	l#Y^=u', 'r=X,lU*F] ZQ[6qф', '', 0, '?'),
('BJOzD', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{1MRKE_/', '|qUUѿÎ|zG>*ۜ"I;', '', 0, '?'),
('BUjv\\ѣ(', 'wp-content/plugins/wordfence/views/common/license.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/license.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':8^r', 'fB-h^>AnH0\r&', '', 0, '?'),
('BYD?u9!C,', 'wp-content/plugins/elementor/includes/libraries/bfi-thumb/bfi-thumb.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/libraries/bfi-thumb/bfi-thumb.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l:u"T<h', '[\\tcEԋLN%;,', '', 0, '?'),
('B^˅{vk.p', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd SudGct	', 'y`DJ>Ch,>P', '', 0, '?'),
('BkJ&;bg]E', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-python.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-python.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3`TհD%	', 'Opv6X##J)3."w!', '', 0, '?'),
('BqQ$wT1', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H?%dvCV[', '>G .zLŚͳ<yiq', '', 0, '?'),
('Bs塘TL=', 'wp-includes/blocks/calendar/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϛQOJB-', 'z)#6j1LTG[r,', '', 0, '?'),
('Bu?")3{.', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`4w25', 'AgoWH"hEl4t\\C D3g', '', 0, '?'),
('BvU~U4j`', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IymuK_', 'pY;RƮGy!#nmR', '', 0, '?'),
('ByBmyM|m', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/restore_noise.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/restore_noise.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[>ා-j.7C', 'r&fp2M(Țn$@Iv"DG', '', 0, '?'),
('B+I', 'wp-content/plugins/elementor/assets/js/packages/session/session.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z''}f΃', 'O6Hvqt*Ң5', '', 0, '?'),
('B3hA7V', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FiJ!xw', 'mZP.c&2%QAK	DA', '', 0, '?'),
('Bj)qDS', 'wp-admin/install-helper.php', '/home/binawebp/omsrislb.my/wp-admin/install-helper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't%v-ܴ', 'f3sL,tʇwO7O4ɵ>', '', 0, '?'),
('Bx		~', 'wp-content/themes/twentytwentythree/patterns/call-to-action.php', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/call-to-action.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B9;llRŀ', 'pSe8XiH֯&.g@F9B}', '', 0, '?'),
('BQaU%', 'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-knownfile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RՅ-e_', '3?<P0\r^τX` t{#', '', 0, '?'),
('B`g&	C1', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ћ#	S)8Ʋ*', 'k*;">c/"}@j]`t''', '', 0, '?'),
('B~fTzؕmE8', 'wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R''V F', 'k0&՚PCs2F_~8', '', 0, '?'),
('BȱJ$]fi=3', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#鬋Ɗ"', '^\Z`G}N,NBo@ս', '', 0, '?'),
('BϵH@x/', 'wp-content/plugins/wordfence/waf/pomo/po.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/po.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B[!wHȱV\nIl\0', ' YoDu/L[FjQR', '', 0, '?'),
('BkP', 'wp-includes/SimplePie/src/Content/Type/Sniffer.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Content/Type/Sniffer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BW5\0{\r', ' LS+OU0<%;r#ta:;L@;', '', 0, '?'),
('B_Qfe9JA', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/title-widget-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/title-widget-base.php', 0, 'ҟrisf|', 'ҟrisf|', 'Վ86O_\\\\Z/=p/<ӟA <+', '', 0, '?'),
('B ?W௛', 'wp-includes/SimplePie/library/SimplePie/File.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xZ||\0Z`c', '1ŪPǢ]=fHb\\?cŐ+t', '', 0, '?'),
('B俿zܗ1zãb:', 'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '13˭7', 'HI|Gf8Ӓs\nCq}', '', 0, '?'),
('BPXW6', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm9N2ų[', '=*tzv''W\nKRlx7', '', 0, '?'),
('Bc\0lM0\\', 'wp-content/plugins/elementor-pro/modules/assets-manager/classes/font-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/classes/font-base.php', 0, 'HNn<6Ԛֲ', 'HNn<6Ԛֲ', 'Hz}p-U`!y', '', 0, '?'),
('BO9[wM7{\r', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/dynamic-value-provider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/dynamic-value-provider.php', 0, '''Ƽ0u	 ͍', '''Ƽ0u	 ͍', 'tĐE}rf?RbHD&՟\nG.{', '', 0, '?'),
('Cc;', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounce.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounce.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=懕"XJ:', 'Xк6V\r\Z(m[A2o', '', 0, '?'),
('C	PC?qvjod2', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/snippets.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/snippets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h$6_p', 'zD=V˕t^egf;cS|ݩK*', '', 0, '?'),
('C񋀙]\\"z', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-hover.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-hover.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\\06#w', '~:_ N?d~''AQxF', '', 0, '?'),
('C4hH]?v''$:', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Rm!_+\nY\nP', '>`܃#]	u7HV:''p6', '', 0, '?'),
('Cz+Z+Ļs/@', 'wp-content/plugins/elementor-pro/modules/forms/classes/drip-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/drip-handler.php', 0, 'tBi pʶ', 'tBi pʶ', 'QW-jo0I戸|#9d', '', 0, '?'),
('C.<}j<T', 'wp-content/plugins/elementor/assets/lib/animations/styles/shake.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/shake.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D\\PiUNT\\l0', '=~5}n9<d+<%4pF%`FH Fl', '', 0, '?'),
('C>߬PfTlsz', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y4d@0߀,Gq', 'KՊA`D|_K', '', 0, '?'),
('CG([wJ$V_', 'wp-content/plugins/elementor-pro/modules/forms/widgets/form.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/widgets/form.php', 0, 'UaU', 'UaU', 'Lc5MѸ-fvE|r ;̘', '', 0, '?'),
('CKJ6LAMkV', 'wp-includes/blocks/post-date.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǰ l\0''z', ')XCq0؝A7V\Z=', '', 0, '?'),
('C_v5=dB\0)', 'wp-includes/css/dist/preferences/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?^qyy[H', ',=n縠N"ZƷ;"ذq', '', 0, '?'),
('CbtmZg', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-title.php', 0, '=RRz', '=RRz', 'I7 ick}|	J\\JT\\', '', 0, '?'),
('CpwM;ﱉҝ(', 'wp-content/plugins/elementor-pro/modules/mega-menu/widgets/mega-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/mega-menu/widgets/mega-menu.php', 0, 'g=!~C%gV', 'g=!~C%gV', '|IRuLWDp"W8ܲ8W.', '', 0, '?'),
('CwΈ\\!jb', 'wp-content/plugins/elementor/modules/elementor-counter/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/elementor-counter/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '66bVے', '7ϋ2=L`<t\Z9#', '', 0, '?'),
('CciFh.n7', 'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ժC!`g$	', 'pD>7a%Ze6è>Y}:`', '', 0, '?'),
('C\\>7,jmK', 'wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-empty-view-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-empty-view-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?C(oM҂.*', 'F@dˏA`{vΘ0<҈fP=', '', 0, '?'),
('CIS7<', 'wp-content/plugins/wordfence/modules/login-security/views/page/page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ш>\\gǡ$c', 'iiGCNFL)7%ʙ', '', 0, '?'),
('Cf''Q\n28J45', 'wp-content/plugins/code-snippets/vendor/composer/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']_#D\0', '\Z ے%4~N~Gh!b:wɌ''', '', 0, '?'),
('Cms\nX]KT', 'wp-includes/blocks/search/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؙ\nR$|f', '@rP7d˼*yeW߂/%rrq', '', 0, '?'),
('C/@lY2}', 'wp-includes/css/dist/format-library/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K4:^"@j', 'M/ay,[At*쒱r+S', '', 0, '?'),
('CؚTR!vF{', 'wp-includes/customize/class-wp-customize-nav-menu-item-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-item-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm#mI:ċh', 'O=\rfnn[V=oANmۺ', '', 0, '?'),
('C!y6㋼', 'wp-includes/blocks/buttons/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&/&&ݣ4h', 'K}?,GQYCA\\ I$1', '', 0, '?'),
('C崾=P?', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0e}|\rqH9', 'hձ[aJ:lRα;MTZ;E.', '', 0, '?'),
('CunCXw&', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/js/ekit-widget-builder-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/js/ekit-widget-builder-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GJ:\rVU', '2MPtb-vZ0\\', '', 0, '?'),
('Cs\\\ns''m', 'wp-content/plugins/wordfence/lib/menu_tools_whois.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_whois.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*5DO7ZY%', 'x..$ô(EϷX	Q', '', 0, '?'),
('D''%S6>{', 'wp-includes/js/dist/customize-widgets.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/customize-widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƁQŤ#O', '߽1E''ʟvE]n:jd', '', 0, '?'),
('DAya', 'wp-content/plugins/elementor/core/document-types/page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/document-types/page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']޾.;dLQ', '\0ߒtNo!tAjP_w', '', 0, '?'),
('D9\0ޟ(Н', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`^גl*-9=', '^\r;%	QpȠ8^', '', 0, '?'),
('D	(,|b?L', 'wp-includes/blocks/query-pagination-numbers/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e*l:\\w', 'w9C1''$IN+3ں$s', '', 0, '?'),
('Dm\nzHS', 'wp-includes/images/crystal/document.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/document.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''^csD3T\\', 'gt( Ŏk`5͒JM5:j', '', 0, '?'),
('D\ZN9Wr}MK', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-time.php', 0, 'bq5ПBNPEs', 'bq5ПBNPEs', ' elG:#', '', 0, '?'),
('D"_lynB+', 'wp-content/cache/wpo-cache/omsrislb.my/index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/index.html', 0, 'j@^qS|', 'j@^qS|', 'UCO׍<OT!x\\b', '', 0, '?'),
('D#q{ťԇb', 'wp-includes/css/dist/customize-widgets/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ejsV~Zm#', '%o3n+z&Azuq\ZJv', '', 0, '?'),
('D$DC٠^C-;', 'wp-content/plugins/wp-optimize/js/jszip/jszip.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/jszip/jszip.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+?dQ', 'm6XR\rj;w1]}Nԙ', '', 0, '?'),
('D.:\0SR8', 'wp-includes/ID3/module.audio-video.asf.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.asf.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A0XwUt1fq', '	nWp:Up*@ZzX$}lD', '', 0, '?'),
('D4V&}H43', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/theme-support.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/theme-support.php', 0, 'mRDx7Ė\Z', 'mRDx7Ė\Z', ';/wf\n"F<c:\ZkNl\r', '', 0, '?'),
('D6mer{pKO', 'wp-includes/locale.php', '/home/binawebp/omsrislb.my/wp-includes/locale.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ʋ\04)oybU^', '<6n''J_	S%GVJ', '', 0, '?'),
('DNsǇJ:L', 'wp-content/plugins/wp-optimize/templates/minify/html-settings-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/html-settings-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RI@8wZ', ';?\07eI<0<QA''}(W+', '', 0, '?'),
('DQ#unU\\ @<', 'wp-includes/blocks/page-list/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2밈LvV\n', '.R7U	1H+''C Nqܰmb', '', 0, '?'),
('DU}<޴D5Y', 'wp-includes/block-editor.php', '/home/binawebp/omsrislb.my/wp-includes/block-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6^C2,R2_', '2+vZHٵc}ÒU=', '', 0, '?'),
('DV\\/', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˵	Me%', '\ZH9HNWGR#', '', 0, '?'),
('D\\7@;^|', 'wp-includes/class-wp-navigation-fallback.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-navigation-fallback.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fy%wP@', '`k8dlA[{^+(', '', 0, '?'),
('D`aO"Y%7Z', 'wp-includes/blocks/comments-pagination/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TDN\0-', 'ZKkgq9ys%L1', '', 0, '?'),
('Dad6+"2J', 'wp-content/plugins/wp-optimize/js/wpo-images-view.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpo-images-view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=g*Z}l', 'j9dudcʊy.yV', '', 0, '?'),
('Dmo"a', 'wp-includes/blocks/gallery/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ދl>nqyW', 'ɹa߿Kۘn͓+nb', '', 0, '?'),
('Dp\0n}~', 'wp-content/plugins/elementor-pro/assets/js/elements-handlers.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/elements-handlers.js', 0, '83cg^', '83cg^', 'OF*5ݦu"5\nLPqi%', '', 0, '?'),
('DxhfcF', 'wp-content/plugins/wp-optimize/includes/class-wpo-image-utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-image-utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3ɻO:wk0', '%zXt3_˟uQ_Meks', '', 0, '?'),
('Du\rɲ\Z', 'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aի Lqw	', 'r_iQ	aR+', '', 0, '?'),
('D`\0BQz-E', 'wp-content/plugins/elementor/core/wp-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/wp-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T(ٝhwWiQ', 'uEURK\0#\rqܿQ>', '', 0, '?'),
('D)bak{', 'wp-admin/includes/admin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4=ҩA', '0V{]֊Aj˫.%2\ZxM5z o ', '', 0, '?'),
('DfR?֌!', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uUҀ', '(lʥS|l>\0p8rC4p+', '', 0, '?'),
('Dmv=jh', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-spacerat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-spacerat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ޙd;Ȫ4', '${>&iڤAɻ8mqKeA.', '', 0, '?'),
('DX?j', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':;|$NF\\j', '$}όյ0܎ȓ/c~rY/', '', 0, '?'),
('D#-`o''', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/HttpAuth.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/HttpAuth.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x$E$|SU', 'Ť|~:F;Uh:ɠu)H', '', 0, '?'),
('Dd݆t}"I]', 'wp-content/plugins/code-snippets/js/hooks/useSnippets.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useSnippets.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ಁƟulն', '&\rܾ\r <<\r#ɪnc?t&', '', 0, '?'),
('Df PQb]', 'wp-content/plugins/elementor-pro/modules/theme-elements/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/module.php', 0, 'A+$Cݭ=Q0', 'A+$Cݭ=Q0', '#(31:ݽ''. ھ0_', '', 0, '?'),
('DVds$>d+\n', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z@+YF~)Z', 'ҧUY-cD\Z@bqd@	d', '', 0, '?'),
('DГϖ϶~GUQ', 'wp-content/plugins/elementor/assets/images/unlock-sticky.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/unlock-sticky.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\ݪv"><S', 'TyNҠlcj==aD\\M ', '', 0, '?'),
('DHЊ''#gS', 'wp-content/plugins/elementskit-lite/libs/xs-migration/migration-contract.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/migration-contract.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PSk+銙Z', '~9Cqonh>-|=)cKɋ|o篊', '', 0, '?'),
('D]&&9!Jԥ', 'wp-content/plugins/elementor/core/frontend/render-mode-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/render-mode-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<=#<M(՟J', '(]5+˽[eVbO#όSWџ', '', 0, '?'),
('D6Zz\nc.&', 'wp-content/plugins/elementor/modules/nested-elements/controls/control-nested-repeater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-elements/controls/control-nested-repeater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.y!T"N', '@ISx8G_˰fY>Y', '', 0, '?'),
('Dչ$Oa', 'wp-admin/css/colors/ectoplasm/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EiJJm^?\nRE', 'gP9}(.ISQnafa[', '', 0, '?'),
('DAfTS', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1b$+pqj', 'cm+a|,>dd8l-bCV	B', '', 0, '?'),
('D#虞*b', 'wp-includes/class-wp-block-parser-block.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-parser-block.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q\ZJ*o2', 'Ϝ\r\rD YgԘ', '', 0, '?'),
('DT[-U', 'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-textarea.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=q(tݣ˻', 'atÁ}(0oß%3pu~ĥ', '', 0, '?'),
('D5\n''\\~W', 'wp-includes/category.php', '/home/binawebp/omsrislb.my/wp-includes/category.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}Vr". e', 'pW" z9MOy+{S7sF', '', 0, '?'),
('DLu3axB?', 'wp-content/plugins/elementor/includes/controls/groups/background.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/background.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Ӱmojfcf9', 'b\0y	8w`HX(6.p[Q~b}z', '', 0, '?'),
('DC tI#', 'wp-content/plugins/elementor/includes/widgets/audio.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/audio.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%䗡zCvтN', 'T؊FܺROƷ#)\Z+', '', 0, '?'),
('E4D''BI_#s', 'wp-includes/blocks/tag-cloud/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H(ܽS', '3&G)%ːHIjb`em', '', 0, '?'),
('EjzE', 'wp-content/plugins/elementor-pro/modules/forms/fields/upload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/upload.php', 0, '1j]`@', '1j]`@', 'ٽ+OhID+lkp-', '', 0, '?'),
('E,zr $7˪b', 'wp-content/plugins/wp-optimize/images/our-other-plugins/aios-logo-wide-sm.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/aios-logo-wide-sm.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƭ}d#Xځ', 'F*uZNa:ܴ\n4D#3', '', 0, '?'),
('ESċc', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ֽKeˀ', '0^uFqv2|Dka42S', '', 0, '?'),
('E#-v376Ť', 'wp-content/plugins/wordfence/wordfence.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/wordfence.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ''',89|', 'GTϯ-"(μ)ś$<B', '', 0, '?'),
('E3Ǩan', 'wp-content/plugins/wp-optimize/css/sortable/sortable-4-1-1.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/sortable/sortable-4-1-1.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?g\Z*)R~\\I', 'bqRH''Ǭ8KKwϞCeL', '', 0, '?'),
('E4fu\r#R:k!jgh', 'wp-includes/js/wp-list-revisions.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-list-revisions.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}\Zۦ_8K', ']\ro8Y6)ryW?Ybz(', '', 0, '?'),
('E5;tR$L', 'wp-includes/js/dist/element.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/element.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6fz͈d/', '''H"J}{2\nӤf~JF', '', 0, '?'),
('EW@h3+', 'wp-content/plugins/code-snippets/dist/edit.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k*\nDoHr_8T&', '''T#teX/\\_$\rYTvKΣF', '', 0, '?'),
('Eh@aq', 'wp-includes/session.php', '/home/binawebp/omsrislb.my/wp-includes/session.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NRM<\\>', '}k+8MU=<;tI*,4#', '', 0, '?'),
('EsM_b789.', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/PathValidator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/PathValidator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FS	.mo+\n', ',>m;.gY-w:r', '', 0, '?'),
('Evm1U~AHj', 'wp-admin/js/password-toggle.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/password-toggle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j"»V', 'nߗ"q{KuKZK\r1^', '', 0, '?'),
('Ey$nK͡㖰', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{ͯk.!', '0.c\n \Z\nʲ\\*O%	', '', 0, '?'),
('E*n7viۣ', 'wp-content/plugins/elementor-pro/modules/library/wp-widgets/elementor-library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/wp-widgets/elementor-library.php', 0, '7_K\0$Q-', '7_K\0$Q-', 's*N4גg?D''1m^,3C', '', 0, '?'),
('E(zRA1;eNqD3', 'wp-content/plugins/wordfence/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2eª\\og', ' oMJ#A|ߎ(;6R\n', '', 0, '?'),
('E	b;(?~w', 'wp-content/plugins/elementor/includes/maintenance.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/maintenance.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D|uOεA', 'b/^cʰ`;wL6g\Z %t', '', 0, '?'),
('EՍ$x#& u', 'wp-includes/blocks/term-count/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#1IǶ_ADd', '6U{\\ 4EoT_x̹B]~[@R', '', 0, '?'),
('E}~M-]a', 'wp-admin/css/widgets.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/widgets.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[@6	ֵ9\n', '@`T~\rN,!kL', '', 0, '?'),
('Es=]=a', 'wp-includes/blocks/post-template/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r[q''qf', '8Ml}7o.\r`R9}', '', 0, '?'),
('EY#\0U\rI', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__get.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__get.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X/nH+PI5', 'g?\0#%: gfhôuAİ{I3', '', 0, '?'),
('EV,%,SM=', 'wp-admin/ms-edit.php', '/home/binawebp/omsrislb.my/wp-admin/ms-edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P3\n7|L?MtA', 'acsc\Z"VL\\њ', '', 0, '?'),
('EҸ&+f6', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M)&z^', '\Z<rvLmtȓ΢uV(', '', 0, '?'),
('E\ZLZp-', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0 Fuα#9\0', 'DO?D_1:oow(T', '', 0, '?'),
('EwBdRy,6', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kNuHG7', '_^*ZV!@cM;', '', 0, '?'),
('E䠌gxڈ', 'wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0:R\\J,O', 'Mr 0YQ4mlijtjw3~', '', 0, '?'),
('Eci<b0', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NCe/!~ ', 'uV&1F8'')@1:', '', 0, '?'),
('EB3A-\r&!T', 'wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '͓/qa)^=f?', 'Ձ	e?zcZ\nG', '', 0, '?'),
('EE~BS', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-teleporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-teleporter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'trv5Gr]m', '@e9R>F\ZENYW;_}z"', '', 0, '?'),
('FHȝle#', 'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l,r%^x%', 'Y=_b|ʧ&f,<', '', 0, '?'),
('FypyoCK	$', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U5Ϫ(;T', 'nB-5PɲGsλg#"e', '', 0, '?'),
('F\rxw~\rܱ\n', 'wp-includes/widgets/class-wp-widget-search.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-search.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IS4&kD', ' iu6#IB3fA\\\n<WPAA', '', 0, '?'),
('F,6<mIq\nN', 'wp-content/plugins/elementor/modules/wp-cli/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',z&ܱ܅M-{e', ']>*dCi=7Snq4', '', 0, '?'),
('F1+\Z#+d{w{', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.D6pir`fw=', '2KJ73x2M2&+LL', '', 0, '?'),
('FCW.3\ZU', 'wp-includes/js/jquery/ui/checkboxradio.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/checkboxradio.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ރx>.&m', 'ju,+Z "MzЃ>v0', '', 0, '?'),
('FDZ`NBr', 'wp-content/plugins/elementor-pro/assets/js/admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/admin.js', 0, 'Jz%', 'Jz%', '5/cD,nL\rH?qi6', '', 0, '?'),
('FH30m:s', 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xR	YXݤ', 'm\Zcĭ][^Pw', '', 0, '?'),
('FWRKlA', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H0n=3희\0G"', '$Nrzm%jRO	HK)wba+', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('F`M߸cN!', 'wp-includes/blocks/image/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#茺0L', '=sB=2qJ/R	G5', '', 0, '?'),
('FkTL)9IF', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-file-sorter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-file-sorter.php', 0, 'J]۵}', 'J]۵}', 'Bq^\\%ךXjj\\25 r', '', 0, '?'),
('FtH6`yېֿ`[', 'wp-includes/blocks/button.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%K?K[', 'wY[0(yoAnZ\\7FǳPBv@', '', 0, '?'),
('Fw	fpx<Ϫ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/class-ai1wmue-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/class-ai1wmue-settings.php', 0, '>FkOoLs=W', '>FkOoLs=W', '6p浊Eم0%hjjƳ', '', 0, '?'),
('Fx}C%?,Z', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B:%w	Y5', 'D\ZKLwܣILɤ_xgLd;K', '', 0, '?'),
('F|wZQ,O', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6?\n	:{Q%', 'ZIK/Iw¥OvyEBi\\$G&', '', 0, '?'),
('F}-v>iõP\nV', 'wp-content/plugins/wordfence/js/wfpopover.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfpopover.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R:RF_CFR', 'lݛ92̋!f/Ř!RGO8', '', 0, '?'),
('Ff^84', 'wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-post.php', 0, '%"P%gp"', '%"P%gp"', 'Di^̓)r#8JɊ^WM#?\r3', '', 0, '?'),
('Fˆ1e|z', 'wp-content/plugins/wordfence/css/license/response.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/response.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c@oER''⿭M', 'qWej^X^?ʒJم|~', '', 0, '?'),
('FvC\ZQkm', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/elementor-faulty-css.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/elementor-faulty-css.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U`XV86S', 'Buo,/-pC2̸UӊT', '', 0, '?'),
('F\\vԶObЌ^{', 'wp-content/plugins/elementor/assets/js/common.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#tK>wԪb~', 'Ǽ ;TyInS+b0;*:', '', 0, '?'),
('FO{1)ă;[', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sparql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sparql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	S"jk4By', 'T''Ίc}#a\ZFgeFme', '', 0, '?'),
('FPEʾr?0?', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_callback.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_callback.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O%ݛBg&g!', '[$i7ml	c\nZ,', '', 0, '?'),
('F\\C?Z', 'wp-includes/css/customize-preview-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'މګd3', '~''[z{:LĀN7A	', '', 0, '?'),
('F{(\ZD9i', 'wp-content/plugins/wordfence/views/tools/options-group-audit-log.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tools/options-group-audit-log.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yX^zK', 'q\Z|ada', '', 0, '?'),
('FVnhL3<o<', 'wp-content/plugins/elementor/assets/images/app/site-editor/single-post.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/single-post.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%0m\rHg(', 'N e]IsGic]cQRAy\ZB', '', 0, '?'),
('Fgx<lbj%ԋ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DO%I7s7', '{u52UJ`\\`@oB>{lY \\', '', 0, '?'),
('FÃ\\Ofg', 'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1vR', 'N3G''`+R>P]Eγg/b?UX', '', 0, '?'),
('F''B/4{J{w', 'wp-admin/js/edit-comments.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/edit-comments.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xr١', 'lɏNg(tQdP@fCU', '', 0, '?'),
('FPV'',Wa', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rhtml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rhtml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wƜ6BX3g}l', '\n9ugy2Lyc+42oi|', '', 0, '?'),
('F?C;$H\r\r', 'wp-admin/css/color-picker.css', '/home/binawebp/omsrislb.my/wp-admin/css/color-picker.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h&rZ"M', 'Mf\\>\ZT`+X5', '', 0, '?'),
('FVOd%|u', 'wp-content/plugins/wordfence/images/wordfence-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wordfence-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p]j-', '8#̄(8O"	+h"Fb', '', 0, '?'),
('Fϯh+ͫ\\le@', 'wp-content/plugins/elementor/assets/js/admin-modules.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-modules.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('G\0iaPHz9\09S', 'wp-includes/blocks/loginout/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S	:ז_bM', 'yT5m ZV#!:Z', '', 0, '?'),
('G;?p', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasAttribute.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasAttribute.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uw¥FF$', '''I.g1V16UX>ԡz@', '', 0, '?'),
('GI2Bxf!''', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k瑿reUB]', 'yIpQ)<5Oo-9jWSz[,', '', 0, '?'),
('G	\n\Z s6\0QB', 'wp-includes/blocks/details/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm*cavSGbɦ', '΁})?un4;[lwڜ=', '', 0, '?'),
('G\nl\rrid%0+	', 'wp-content/plugins/elementor-pro/assets/js/qunit-tests.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/qunit-tests.min.js', 0, 'E;BF1\0:}9', 'E;BF1\0:}9', 'bmz8\nIv՜ƽ}(R-|t\\', '', 0, '?'),
('G%pϵw', 'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6*;+囨', 'KfTV{SBK	J\n1*', '', 0, '?'),
('Gbs; "Za', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BnueA', 'F\\\Zf\0;v]%%', '', 0, '?'),
('Gب(,;:', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>`$N2:', '\rȋrҳR|LkV@$\n', '', 0, '?'),
('G u:', 'wp-content/plugins/elementor/core/dynamic-tags/tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/tag.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OaZ2!Jg', '&(J!|P5<\0N_\0Xi', '', 0, '?'),
('G"<ţ*)؍n', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/clojure.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/clojure.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L#NaSjr.B', 'k C_&_/sTWZj`#pԚ', '', 0, '?'),
('G$0;)IT?*', 'wp-includes/class-wp-block-metadata-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-metadata-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r?҅!', 'NkE7.ѵ$g*h6bw\0', '', 0, '?'),
('G''/&`0', 'wp-content/plugins/elementor/modules/home/transformations/filter-sidebar-promotion-by-license.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-sidebar-promotion-by-license.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dz*xc', ',f \nay^m#֊Q%', '', 0, '?'),
('G6U2\01RJ', 'wp-admin/js/theme.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/theme.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`Rcًt6P#', 'uU~a&_ :C>xƫ ', '', 0, '?'),
('G:Z]Y!tI"', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jI78{rP', 'UkZM=OEwDw |I;', '', 0, '?'),
('G<-Ƶ@rg', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-database-information.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-database-information.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KT \rB|ƘaM', 'ne5Om^&!бچtLƋe', '', 0, '?'),
('G=ɥ$1hM', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/edge-sizes-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/edge-sizes-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8#g](SFT_', 'ytuJ@<ov', '', 0, '?'),
('GQ{)?R`)', 'wp-includes/blocks/post-comments-form/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1{ⱄk_Bv(', 'k-\n!5<s+LTy3w', '', 0, '?'),
('Gm:MľVLЉ', 'wp-includes/js/tinymce/utils/editable_selects.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/editable_selects.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jq2I''J9E', 'vGjsf	ed&g+', '', 0, '?'),
('Guʭ', 'wp-includes/class-wp-meta-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-meta-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7ŋ:O	9,yR', ';Q~RK`+ءVA3op9', '', 0, '?'),
('Gu5aԯ', 'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B	iGON#h', '\r4"f3\Zv8|7pT[֚', '', 0, '?'),
('Gu^/1ՁS7', 'wp-includes/atomlib.php', '/home/binawebp/omsrislb.my/wp-includes/atomlib.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!_wm}a', 'm{TZG/Iu)<''Ѩ!', '', 0, '?'),
('G9q=ʥ[3?a', 'wp-admin/images/bubble_bg-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/bubble_bg-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[bLPor', 'GJ{B-r$u] ]E.\02%k', '', 0, '?'),
('G=u\nˮ\0V}', 'wp-includes/blocks/avatar.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kHe9Ͱ', 'B`kEkx`29{(*)', '', 0, '?'),
('Gi\ZP2A|ucļ', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/ud-logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/ud-logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CjMѓ''ː\\', 'wyB1btW"l%t)Qp,Jb.', '', 0, '?'),
('G7\ZI&:x', 'wp-admin/edit-form-comment.php', '/home/binawebp/omsrislb.my/wp-admin/edit-form-comment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '){ 6Q89w/', ')M_)81䷫@=', '', 0, '?'),
('G`:&w|u.2', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-box-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-box-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZBKC`j/V', '/\nQakxZk9rz', '', 0, '?'),
('G4IsxI', 'wp-includes/blocks/post-comments-count/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"t)zq', 'G=UB0''hǯ>Og&fdآή>-', '', 0, '?'),
('Gr	ĽcdW', 'wp-content/plugins/code-snippets/php/settings/editor-preview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/editor-preview.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's&a}:F/^w', 'Q*&R7kW]}(VHU|', '', 0, '?'),
('G*js	u5', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.finderSelect.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.finderSelect.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K%g}B4ϧNW', 'Z\ry.9>\Z-&T+<r\rUKF', '', 0, '?'),
('H%6Bz', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FI\Z_', 'N\Z]''ޘx,ypqLJ~.', '', 0, '?'),
('H$ynR-', 'wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9+ۀ[o6.}|_#', '"o(QHf	=NՐzUq;Ro\0', '', 0, '?'),
('Hv7X\Zs|', 'wp-content/plugins/wp-optimize/images/notices/new_year.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/new_year.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=uNwta^\r0', 'ri!2Z:djvt~q', '', 0, '?'),
('Hflԡ_', 'wp-content/plugins/wp-optimize/templates/minify/font-settings-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/font-settings-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݯB,ݮE3', 'W Ab$ڙĲj#\nC', '', 0, '?'),
('H\ZIj"\r"+[A', 'wp-content/plugins/elementor/data/v2/base/endpoint/index/sub-index-endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint/index/sub-index-endpoint.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cÅLfMI', '挠X׃!4	vkh\n', '', 0, '?'),
('H\Z\rI?+; ', 'wp-includes/SimplePie/src/Caption.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Caption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ŭjzY_̆', 'r3ў=`|cyu8햟۝i\n', '', 0, '?'),
('H"J6jbu', 'wp-content/plugins/elementor/modules/ai/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yͻlڄy{/', 'OSYҤ9&n^\0_>Aqcbե', '', 0, '?'),
('H%`c >i', 'wp-content/plugins/elementor/assets/js/packages/store/store.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y9!Z<ݬHu', 'džf`[ĺ(n(*g{', '', 0, '?'),
('H&0Q)ϻ5bLv', 'wp-content/plugins/elementskit-lite/widgets/header-info/header-info-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-info/header-info-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(#95Lη', 'ĝ/,=*Q9=U{̳TmHI', '', 0, '?'),
('H+E~}1Q', 'wp-includes/js/wp-util.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-util.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӆ\0NT5~]', 'Plf zHCqDN>t\r0xF', '', 0, '?'),
('H=3P;T~', 'wp-includes/blocks/separator/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EȪh', 'אZȽn_6{Nn;FM>un"', '', 0, '?'),
('HAf,$F-', 'wp-admin/css/customize-nav-menus-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>p)k', '+:|F]>\ZՓ~]$#`', '', 0, '?'),
('HD" $vAڧKX', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o6@', 'HmYxiSXn,f=E', '', 0, '?'),
('HFjcw Uwj', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-info.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-info.php', 0, '@j$R/kz', '@j$R/kz', ' ''{@GnZ(ۨ|ZNn^:', '', 0, '?'),
('HGh''xR~\n', 'wp-admin/js/customize-nav-menus.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/customize-nav-menus.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!p%01kh', 'O>5ݺ4Zޚ3Fo&02', '', 0, '?'),
('HOw>Ufky;.e', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StringLoaderExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StringLoaderExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	WH]l1', 'fIeЗ[DxbV_', '', 0, '?'),
('HQ^^t:S|A', 'wp-includes/PHPMailer/DSNConfigurator.php', '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/DSNConfigurator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2D-]x:&s', 'G3(g>8$	θ퀡ɿ8m', '', 0, '?'),
('H`\\ rYC', 'wp-admin/includes/class-theme-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-theme-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!$ڞ\Z\ZGϧ', '-F,BQwZ*ip+', '', 0, '?'),
('Hcv>]|H''', 'wp-includes/blocks/site-title/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sǎp&T^l', '`	*3Uev''t	ukU9r', '', 0, '?'),
('Hh׳IaB', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '͜7KOw\0#\Z0', 'ـt	iW	h_Qp؇sS+', '', 0, '?'),
('H{R%|+E', 'wp-content/cache/wpo-cache/omsrislb.my/about/index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/about/index.html', 0, '3Ω4w=ar?', '3Ω4w=ar?', '\0Oƭ֜c-e	82_1', '', 0, '?'),
('H|\0`B*Q', 'wp-includes/blocks/post-navigation-link/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lʈs6]', '}PĂʯ}/2F', '', 0, '?'),
('H|''Yf', 'wp-includes/blocks/post-comments-form/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '쮛9\n.ha=8', 'b?C=P\nEHgpE', '', 0, '?'),
('H|1p{Ajm$''', 'wp-content/plugins/elementor/assets/js/packages/store/store.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_+c>na', 'PP[rOY#mC	ki', '', 0, '?'),
('HbZ\08P|T/P', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',{*cHX(kw4', 'IB!Jd~s\nI*uy3?=9G', '', 0, '?'),
('H2ltsle', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('H;ǅE?\rLk', 'wp-content/plugins/elementor/assets/js/lightbox.74688eb10c7852662847.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/lightbox.74688eb10c7852662847.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p9/x', '0M#ȦꨇÚ>$&', '', 0, '?'),
('Hc84rUrr', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(X%kex{F\r', '޽kZbsN7>0ɾ{Ip', '', 0, '?'),
('HY6oD{LH', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V~D;[`d', '߿\n"KL\Z6''5czdw', '', 0, '?'),
('HýiZU,HL', 'wp-admin/includes/meta-boxes.php', '/home/binawebp/omsrislb.my/wp-admin/includes/meta-boxes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F5UR', 'i[OWg/)~TRF&Hh.,	=', '', 0, '?'),
('HCTp(^l', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O;[ 9w.k9', '^+B@܎\\Ӭ@.E0s|', '', 0, '?'),
('Hp9Kd1S', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>"r7Y', 'Rkwfvw|f&+(0ޅZ', '', 0, '?'),
('H\r?F˸YՉj', 'wp-content/plugins/elementor-pro/assets/js/paypal-button.3d0d5af7df85963df32c.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/paypal-button.3d0d5af7df85963df32c.bundle.min.js', 0, '$c8di!''', '$c8di!''', '	V8j\ZEn7V \\vM*ө', '', 0, '?'),
('H0."', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/json/icons.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/json/icons.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '];) ', 'S٨v`eM%\\H\nB', '', 0, '?'),
('I>.>WJ[x', 'wp-content/plugins/wp-optimize/templates/cache/browser-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/browser-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?|Gd\n7`l', 'jOx|ؑTƔX3a\nq', '', 0, '?'),
('I\r8p:́	ޞ}`\Z', 'wp-includes/blocks/query-pagination/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R8Hɢ^M{', '#s(ȲWm"\ZZO˛Puk\\p', '', 0, '?'),
('IW9aW3(', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZS>Q:jaG', 'p D~Tp6^,C~', '', 0, '?'),
('I\Zc]%Q', 'wp-content/plugins/wordfence/css/license/free-global.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/free-global.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fc<r@=\Z+R', '"\nI"{Gm8~<>|]ɨk/', '', 0, '?'),
('I J8Ѓ1zC]Y:', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Availability.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Availability.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Bx1r	 ', 'DAcܤ_;^\ZKg5K߻d=e', '', 0, '?'),
('I.,m}}N1v^\0d', 'wp-content/plugins/code-snippets/dist/editor-themes/cobalt.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/cobalt.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QYT͹t0E', '\\iS$[D^(o6!,UVE', '', 0, '?'),
('I0S$2TB*', 'wp-includes/widgets/class-wp-widget-calendar.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-calendar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pv:2hv', '}\Z))$G@U(\rJ@ÃI', '', 0, '?'),
('I6.:\n(i\0B', 'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')Z)*jD', 'z7cb{9\ZJ0ӣ7}"ϽR[\n[', '', 0, '?'),
('I6U\r73p', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h<|7b', '_^F";+r&Z~ӦQ|5', '', 0, '?'),
('I@<Tx)7\Z', 'wp-content/plugins/elementor/includes/controls/base-multiple.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-multiple.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V''#֭yhm''LYi', 'J^́GBYG(-q+Vƾ', '', 0, '?'),
('I@s9RuZy~', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2_.vmI\Z', 'WBauTieAEV-zaX9{Z', '', 0, '?'),
('ICoú3', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*tP>_i''', 'w/0Yn7MnrZ^V', '', 0, '?'),
('IHi>-\r˟	m', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-by-author.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-by-author.php', 0, '~\ZdmvD8Y8', '~\ZdmvD8Y8', ' aP 뚕ꫣaie"\\', '', 0, '?'),
('ITocBɟz(H', 'wp-content/plugins/elementor/assets/js/onboarding.cb1850dab52d5cd9ce5b.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/onboarding.cb1850dab52d5cd9ce5b.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8TG7GƙQ', 'Du>SCuk=ݣr3', '', 0, '?'),
('IYAxDv\0B', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0b''cs.Yon+V', 'kH1lܻ#Ozpod׶EC', '', 0, '?'),
('Ia	Y+?oe2e', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#G؟V5Ȯ', 'K !Ĳ", %]\rw', '', 0, '?'),
('IfP4İ@UV', 'wp-content/plugins/elementor-pro/modules/page-transitions/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/page-transitions/module.php', 0, 'Ʒ/|3iZ', 'Ʒ/|3iZ', 'V@N6H\Z-yOsJ8]lUj|', '', 0, '?'),
('Iu$j=sŗa', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&JIC{!wXZ', 'v}/ACK!''98:,~۠O', '', 0, '?'),
('Iwؼ6', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oiWVA[l', '|{(9~9ȭ5v', '', 0, '?'),
('Ii"\0Dغ', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/emailkit-logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/emailkit-logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=@$z~fF', '>	C\n)dp`6* ~jls5*', '', 0, '?'),
('Id`Bp4̆P', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-tabbr.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-tabbr.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nIV^', '<a5\\Ep\ZDhdr\0\Z', '', 0, '?'),
('IN)p:<', 'wp-includes/js/dist/development/react-refresh-runtime.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-runtime.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\M(gɌ#', '?l\\^	=nC6}T7', '', 0, '?'),
('I:Bs#@', 'wp-blog-header.php', '/home/binawebp/omsrislb.my/wp-blog-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_BZF1y)', ';\Z/\\btI͝hw', '', 0, '?'),
('I''pǴgp', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^qiwͮ', 'h6s֗P]C|ԩʈ', '', 0, '?'),
('I|.a^u', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-textarea.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-textarea.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a\rU[ŅkP9', 'Xd;RXHlޘW>\ZH)UЍ', '', 0, '?'),
('I&{;-H', 'wp-includes/blocks/site-logo/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NyC$l', 'F^@pۤ%CY<!3\r', '', 0, '?'),
('IԬlv0O', 'wp-includes/js/dist/core-data.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-data.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nYYN)', '	4Xtj68CO4=H?=', '', 0, '?'),
('IPEXtFH%', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Lv[c)?', 'Ch!݀F$}wd7b(!pIF.L', '', 0, '?'),
('I8߽T\Z0', 'wp-includes/blocks/list/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wl(>߻Z', ' /Zw=uiKwr$VϞ', '', 0, '?'),
('IأbHg\nC9e', 'wp-content/plugins/wp-optimize/templates/minify/asset-preload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/asset-preload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	`sb\r''', 'O}=pU╿)M&t7y"\n^-', '', 0, '?'),
('I>V]TTbW', 'wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sx.\Zs', 'bN׮%t>[ITk\0wA', '', 0, '?'),
('I~\nx|1', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/info/ob-landing.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/info/ob-landing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iʊ́VO', 'b,l&׻:ʽxh-0>g%d)', '', 0, '?'),
('IoD9_', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/import/pro.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/import/pro.php', 0, 'zNqB', 'zNqB', 'K S\n?5|͚LK]Q''', '', 0, '?'),
('IV/6s', 'wp-admin/js/editor-expand.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/editor-expand.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N~"( J0Ko\r', 'gN{U/j<}o<_', '', 0, '?'),
('I!OԞHFʟE', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z@$U8', '%Pk+$尙Mb@<eXO', '', 0, '?'),
('IJkضKX', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-schemas.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-schemas.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z<E`Lu', 'r@&PQ\ZnhCe6qXRzZ''>jS', '', 0, '?'),
('I2SB)9~', 'wp-content/plugins/elementor/includes/base/widget-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/widget-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',93<%	', 'f\Z.m\\Z[>d}yhy', '', 0, '?'),
('IH{|Q(W*p', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r1NزUs-', '\0\\r@jچm\rgSo''`aN', '', 0, '?'),
('J%.~ql', 'wp-includes/class-wp-text-diff-renderer-table.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-text-diff-renderer-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&|uEQe', ',Ix{R&ב]cjp,RLwN', '', 0, '?'),
('JҴဖ`\rQ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseAndBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseAndBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nJ>"*p-n', 'єYZ*Bc\0b<4@9U^$9RW', '', 0, '?'),
('J	ˠ\nhBTizg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/devices.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/devices.svg', 0, 'A>y`Ξ^?M\0', 'A>y`Ξ^?M\0', 'x3	+o{|''mOFzF', '', 0, '?'),
('Jf3?_rC', 'wp-admin/images/w-logo-white.png', '/home/binawebp/omsrislb.my/wp-admin/images/w-logo-white.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nJvۢ~y\\', 'nD _;!GםcV0M9i=', '', 0, '?'),
('JE[7U\Z~', 'wp-includes/js/plupload/handlers.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/handlers.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aa]/ T', 'mksD<@}kmX)', '', 0, '?'),
('Jw6ԑ`e', 'wp-content/themes/twentytwentythree/patterns/post-meta.php', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/post-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cq\0v', 'MBt=T&p8~&HphSX.tlVS', '', 0, '?'),
('J8EDh+F', 'wp-admin/js/site-health.js', '/home/binawebp/omsrislb.my/wp-admin/js/site-health.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f"-1', 'j*w鼸PCsr\rq3', '', 0, '?'),
('J<dҠzk}0', 'wp-includes/SimplePie/library/SimplePie/IRI.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/IRI.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '΂nIz{2}yx''', 'NޖZH+0Eb[', '', 0, '?'),
('JR\nf55?', 'wp-content/plugins/elementor/modules/styleguide/controls/switcher.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/styleguide/controls/switcher.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʷ3l', '''CR/R4\0o{Z*8"?P', '', 0, '?'),
('JdaT믫JHOTy', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.5.{f', 'G!`3ҟIr;pq/ RW', '', 0, '?'),
('JexU', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/appendChild.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/appendChild.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\0sm9', '	mA+ߜq:&8iD|ơz', '', 0, '?'),
('Jg<z)ٗr ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/textile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/textile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l"\n#5A	TR9', 'vH%$:?ޅ%Ţ7iE?', '', 0, '?'),
('Jg\\''ot]', 'wp-content/plugins/wp-optimize/css/admin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/admin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0WMCEɤ', 'OOުjfG\rtp4C+[ȯ', '', 0, '?'),
('Jj\0pmw㚉b(', 'wp-includes/blocks/code/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z	mEJ', 'w($썎B.}e-', '', 0, '?'),
('JltaDȺM', 'wp-content/plugins/elementor/app/app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԵR4', '&Ng5Ǧr*\0cBZJ\Z', '', 0, '?'),
('Jl1', 'wp-content/plugins/wordfence/models/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E"xK{8dS', 'C''r9@Kކtw#@k', '', 0, '?'),
('Jx̾+h', 'wp-content/plugins/elementor/modules/notes/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notes/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':#O";wM|\n', 'M(.+;//tX}', '', 0, '?'),
('J{ֹZi^ùxI', 'wp-admin/media-new.php', '/home/binawebp/omsrislb.my/wp-admin/media-new.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8q;Ȋ.G', 'ܓT\no_]zZ[\0', '', 0, '?'),
('J&Wa-F0', 'wp-content/plugins/elementor/includes/widgets/common-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/common-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yY7F\0J6', '#F5Mj\\rXS<QS\Zʕ', '', 0, '?'),
('Jl[2Ƈ&7#', 'wp-content/plugins/elementor/assets/js/app-packages.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-packages.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('J3		x#', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/DeleteButton.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/DeleteButton.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%ij', 'ggȜ\0-J04f񳖽', '', 0, '?'),
('Jx', 'wp-content/plugins/elementor/assets/css/widget-divider-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-divider-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cUoLnҟ:T', '-J}~~TD>dN\nαsu*{', '', 0, '?'),
('J;<C{߫N', 'wp-includes/blocks/spacer/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&PG>uY7', 's<f7''7$`~H\r|J@', '', 0, '?'),
('JP6ulENNΆЉ.', 'wp-content/plugins/wordfence/css/wfselect2.min.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wfselect2.min.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zi''Rh', 'o-:ʔ0csuѹQ7', '', 0, '?'),
('Jլ4\rn', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J\\c7yxгl', '~qV*''1]3^m', '', 0, '?'),
('JƲŔ(E', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';b\r5E', '61E)\riJK஫/@̋e*', '', 0, '?'),
('J<U=ܒLXuh', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsx.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsx.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rEU {\ZoZ', '\rJ)DXPʧG!F\nnf', '', 0, '?'),
('J򾁬OhsDؾ', 'wp-includes/js/zxcvbn.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/zxcvbn.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|	#PV	/{M_', 'vXI9n1e6C\\.p+"K', '', 0, '?'),
('J#tW}$', 'wp-content/plugins/elementor/includes/controls/exit-animation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/exit-animation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1=$k\0G)(', '7zhY658{"oK', '', 0, '?'),
('J6ؕ\Zo', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/example.index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/example.index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RSUq;', 'uݚX"V"bd3`%d', '', 0, '?'),
('KrG9x	_', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[س96~\0|q', 'Ky:rYK1c@8[d', '', 0, '?'),
('K{7eB', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-common.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-common.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '񚹮0~', '%]9qDJQ](4n|	ZTe', '', 0, '?'),
('Kߺb', 'wp-content/plugins/wordfence/lib/compat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>zxC}', 'Nܓ#dtB!"M՞==@o', '', 0, '?'),
('K3SeR>Ӈcb', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/NoConverter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/NoConverter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S.3|F׆+', '%\0H/سSܫ|OJQQc', '', 0, '?'),
('KwE3VajW', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFilter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFilter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mbuOb.{Y8h', 'xPiiZS2P?z;u?̯', '', 0, '?'),
('K,:XmH/saN', 'wp-content/plugins/elementor/assets/js/editor-environment-v2.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-environment-v2.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C˜myf', '{<F''ƅa9p;kF', '', 0, '?'),
('K0\rܐcn', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rop(90Dz', '$$OVf.i{\\O8p3', '', 0, '?'),
('K7\\2A/=,', 'wp-content/plugins/elementor-pro/assets/js/code-highlight.28a979661569ddbbf60d.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/code-highlight.28a979661569ddbbf60d.bundle.min.js', 0, '%<5+}', '%<5+}', '~6Eρ"9}zΜwoStx', '', 0, '?'),
('K>^[PF1h:', 'wp-includes/blocks/social-link.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/32+aktY', 'va&\\B`0qnqd=', '', 0, '?'),
('KBb}l;', 'wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mBWT\\_', 'IqoS»5W޻{SJ8h', '', 0, '?'),
('KKOfSdiB0Ov', 'wp-content/plugins/wordfence/views/scanner/scanner-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scanner-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2vt', '9`N>ɞ9:A\0L', '', 0, '?'),
('KLʡr7''Pݥ,8:', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm2.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm2.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>K!`sѓs(%', '\nk|lDsggn#Ke[O', '', 0, '?'),
('KLX\rѴM', 'wp-includes/SimplePie/src/Misc.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Misc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a+f?Q;̻켓U', ':.yEi!~Hec$_E', '', 0, '?'),
('KN5V1iII{', 'wp-content/plugins/wp-optimize/templates/modal.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/modal.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y>-`g^5', 'ubzI\ZfK.\rtOA#/W', '', 0, '?'),
('K]v	`', 'wp-content/plugins/wp-optimize/changelog.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/changelog.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&!A-`e', '"qyhP\ZG\rWcuPdKH', '', 0, '?'),
('KmFz$%"gąS', 'wp-content/plugins/elementor/core/app/app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q*ʱD', 'gFH	~纎odl5b#', '', 0, '?'),
('KnҋD&sRWU(', 'wp-admin/css/farbtastic.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#^:G(:k\n', '47Vf /DW3p', '', 0, '?'),
('Ka@QaWզ1Y', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_charset.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_charset.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{ҜT؝\ZM|5', 'ȯeS|khNl 0', '', 0, '?'),
('K 7*<̴2$Ti', 'wp-content/plugins/elementor/includes/controls/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!	,dH{NNlȜ', 'gSVȅ3R\\d\0&9|', '', 0, '?'),
('KDLu뫌Y', 'wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-menu-item.php', 0, '&J1B\0ӣm', '&J1B\0ӣm', '$Fms5ޏb=O''c[J\Z550s\\S', '', 0, '?'),
('KcG5U&]:', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rh:n:9Z', '0lͯϞuYϱ\ZV.Rؑ|', '', 0, '?'),
('K,aϥ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/PowerBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/PowerBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=0ey|R㕥', '>n)T}ʵNzih9]QEfθI=', '', 0, '?'),
('KR	wAe', 'wp-includes/blocks/latest-posts/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pi)F', 'UK<v*#)#7H>鼛', '', 0, '?'),
('Kc#2s/("', 'wp-includes/widgets/class-wp-widget-pages.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-pages.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rLZTtϛR', '*"#倮U8c*[j''', '', 0, '?'),
('K<H<7E,l', 'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-brute-force.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jg_G~y1', '.Ґ%\\z"|dK*', '', 0, '?'),
('K+@{2!u9', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/category-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/category-image.php', 0, 'oݜXȁV%', 'oݜXȁV%', 'lދ5!Ēӫ\Z\n36*D~wY', '', 0, '?'),
('K\r\\Uz\Z:''', 'wp-includes/sodium_compat/namespaced/Core/ChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V*F谯<l', '®RlUwzankGt3', '', 0, '?'),
('KopNd_1', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\eQz~F', '\n7\r  ĺ''c5i+H', '', 0, '?'),
('K]Cl7:D\0', 'wp-admin/js/widgets/media-audio-widget.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-audio-widget.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P IM;p8vn[S', '9jlxBeH:y%}c	TP_', '', 0, '?'),
('Kǉ\r[\\ᖘ4Iċx0', 'wp-content/plugins/elementor/assets/js/packages/session/session.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fhSfkSEY?G', '27EHcSVC''w!\r:f&{', '', 0, '?'),
('KLx<CHe\Z', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-ENĂۛ(\nn', 'Ѭ}^EF>ڂB', '', 0, '?'),
('K<HtH', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z|a+AZY߳	', 'M铡Zd/f7~\n]Yaw', '', 0, '?'),
('KОǎ{^TGwG', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/responses/query-failed-response.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/responses/query-failed-response.php', 0, 'š3zjA\0', 'š3zjA\0', 'ɤiN}*\0p\07', '', 0, '?'),
('Ky]!YeD', 'wp-content/plugins/elementor/includes/controls/switcher.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/switcher.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!9G9z/C', 'aL\nTQ+7˫.3dߞ\Z4XQ', '', 0, '?'),
('K䧿11!M', 'wp-content/plugins/elementor/includes/editor-templates/navigator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/navigator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''uyZN\0Q', '+ywT]݉*"y_	"C AMغ', '', 0, '?'),
('KL])', 'wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DK">9', '<\rj!9R5~-6,zL,', '', 0, '?'),
('KՃ?=L"8c\n', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-author-display-name.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-author-display-name.php', 0, '@oӣmUo', '@oӣmUo', ',x&FN~`#_\nɎp', '', 0, '?'),
('K7b{ru&MXD', 'wp-includes/css/dist/block-library/editor-elements-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c|$\0{o', '$2iQf~'':Sr4:A>', '', 0, '?'),
('K4ַ̀&*	', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r,b''n6zd', '{ԍWq]؆t\\`!f{)', '', 0, '?'),
('K>W:*>.', 'wp-content/plugins/elementor-pro/modules/call-to-action/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/call-to-action/module.php', 0, 'EFPm', 'EFPm', 'cR~s?P\0\Z<vlC\n[i>7o', '', 0, '?'),
('K *;ܼnc', 'wp-includes/blocks/calendar/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&%k.Yː}', '\n\\\nF4\Z\nT]b6Z{w', '', 0, '?'),
('K	pN+C', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-properties.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-properties.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm-8', '\nSym+B!&vjHso8\n,', '', 0, '?'),
('KW&\0\0K\06G', 'wp-admin/js/set-post-thumbnail.js', '/home/binawebp/omsrislb.my/wp-admin/js/set-post-thumbnail.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':1N(xlX''', 'v9\n{lK~q#>ߦ J`~', '', 0, '?'),
('KK+2	aeZe', 'wp-includes/class-walker-comment.php', '/home/binawebp/omsrislb.my/wp-includes/class-walker-comment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-3eⵇb4V', 'b4K,}ţ<m i ӥu1G', '', 0, '?'),
('LĐFHmDi', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/NodeVisitorInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/NodeVisitorInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C[(5py', 'RjzAC&t`''r{@OXs,', '', 0, '?'),
('Lb>oOj*6', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EosCg.h#;a`', '\rӃEQŹio?,ԜUP>k4', '', 0, '?'),
('L<#\Z}', 'wp-includes/js/tinymce/skins/lightgray/img/loader.gif', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/loader.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9KM:Tf9', ';TO`(6,skZcR+', '', 0, '?'),
('L2\\Bs288', 'wp-content/plugins/elementor/assets/js/dev-tools.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/dev-tools.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	urBM', 'UrQhITx×t\01', '', 0, '?'),
('L#/۰*3\r', 'wp-admin/includes/class-wp-terms-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-terms-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"d\n \\`cF', 'Mu@\ZhНs1N6B~ ', '', 0, '?'),
('L(n9[2C6', 'wp-includes/js/zxcvbn-async.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/zxcvbn-async.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E\nO\\Yb', '''FP\Z/G\nJ\\B\ZIT', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('L)\\9CQ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__isset.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__isset.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r|V:AR', '}uοb\n\n"6 NaVQrNJ3+', '', 0, '?'),
('L,XQ 4yg', 'wp-content/plugins/elementskit-lite/libs/forms/forms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w։(', 'AHp;o\0@<(''@v', '', 0, '?'),
('L68^mkc3', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rust.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rust.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e==\rf~:Ў', 'Cʫez\nJ^ lb	rcqGM', '', 0, '?'),
('LDJ:.INF\n', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ChainLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ChainLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iSf/L', 'Ȼa`럫u6r(R`e\Z', '', 0, '?'),
('LJt%] *O', 'wp-includes/SimplePie/library/SimplePie/Cache/MySQL.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/MySQL.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p/l1HQZ', '/p55Oo4\n\Zg]S\n>v', '', 0, '?'),
('LJEvDhaOIȞ', 'wp-includes/Requests/src/Ipv6.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Ipv6.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'njr', 'jE-/"/\0U\Z5\\', '', 0, '?'),
('LR7QToG|{', 'wp-content/plugins/wordfence/lib/viewFullActivityLog.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/viewFullActivityLog.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#\\F\rvC', 'X74u\rt{MlׄqT}', '', 0, '?'),
('LT"C~[~Uс', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/referer-extra.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/referer-extra.php', 0, 'PM!i z-<	', 'PM!i z-<	', ' BӭOG4`vOmN,\r', '', 0, '?'),
('L[bz{y?\\ ', 'wp-content/plugins/elementor/core/behaviors/interfaces/lock-behavior.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/behaviors/interfaces/lock-behavior.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{7zPd5W', 'q3WxA,piB/@)-x[<݀', '', 0, '?'),
('Lap8gV,g', 'wp-includes/js/dist/vendor/react-dom.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-dom.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>P2mH݈', '\0>h*>8Kh/ҖZSRU[', '', 0, '?'),
('LbM*,CX*', 'wp-content/plugins/code-snippets/php/admin-menus/class-manage-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-manage-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U^;{V', 'ǠGFK)Hs2+', '', 0, '?'),
('LclA笤', 'wp-content/plugins/elementor/vendor/composer/platform_check.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/platform_check.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`Jzn~', 'DaBtDͨͳmTd=u䤧	+', '', 0, '?'),
('Lm-@n', 'wp-content/cache/wpo-cache/omsrislb.my/contact/mobile.index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/contact/mobile.index.html', 0, ')4t#%d/', ')4t#%d/', 'u>+w\n_ɲ%ɘ$B6Prgߖ', '', 0, '?'),
('LnZ4zEMbD', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĵt-$d1\n*', '#^锾P͜A[}`lS2o@', '', 0, '?'),
('Lo*Cn{?', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/form-submissions-promotion-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/form-submissions-promotion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c}R<$\n=Xu', 'S}\\#,saDZLeÃWG', '', 0, '?'),
('LsЇś\nc}>K', 'wp-includes/css/editor.css', '/home/binawebp/omsrislb.my/wp-includes/css/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8ב!,7+', ']l)Ž$Fg$GS:x#0-', '', 0, '?'),
('LzZ#<', 'wp-includes/class-wp-locale-switcher.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-locale-switcher.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',cw8RF\\', 'dyI&4(6+{ჹ', '', 0, '?'),
('Lz	6hQW7', 'wp-content/plugins/elementor/modules/system-info/reporters/mu-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/mu-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dO3}?', '"r1TxZe,4\ZYAqTm:', '', 0, '?'),
('Lջ˻vMlWd', 'wp-includes/blocks/pullquote/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N)$tO2', 'O|1UAg\\\r:Jj/L[E', '', 0, '?'),
('LkO@po', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-minicolors.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-minicolors.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$Y؍r+', 'Վzc@X~LSNFޅ\r', '', 0, '?'),
('L)DdOm5@E', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|)YKK\Z', '>H(edb0̳]21Odp+', '', 0, '?'),
('Lc Ƿqse]!x', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n\rE/A', 'K6\0-{*-O|xOr..', '', 0, '?'),
('L;5.P)fN', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r7O^Bo*', ')]r`Xk&a6`Pյ(', '', 0, '?'),
('L&pǉ\Z:Br8', 'wp-content/plugins/elementor/assets/js/editor-notifications.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-notifications.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qT\nfe\0B', 'FL0;,%''8o7v0}L', '', 0, '?'),
('Let"pc(	e', 'wp-includes/wp-db.php', '/home/binawebp/omsrislb.my/wp-includes/wp-db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qafq@.Ro', 't\\K(ɮX''[&xl', '', 0, '?'),
('LEgF9', 'wp-includes/blocks/post-featured-image/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʡM_k"#*', 'TFkN9o+*G>N֩ڤ}', '', 0, '?'),
('Lƾ>%T\\nv"l', 'wp-includes/js/dist/script-modules/block-library/query/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/query/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i[I,HN', 'yq?Kbh8B>_O	k75Tŀ', '', 0, '?'),
('L|-\Z)', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/base.php', 0, '#6v:Z', '#6v:Z', ',иԐ[<ǏBM''zҩn', '', 0, '?'),
('L\0o3[', 'wp-content/plugins/elementor-pro/modules/forms/actions/webhook.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/webhook.php', 0, 'ag', 'ag', 'Q/0<Q0W2`2sҐ', '', 0, '?'),
('L"vT̱L', 'wp-includes/blocks/comments-pagination-next/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-next/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̅azaC?', '[Cy9׊`''#F/J0C', '', 0, '?'),
('L\r%{', 'wp-includes/blocks/social-link/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h&v;c2z', 'uz98YPuL?q;', '', 0, '?'),
('L	şf{Vgk', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Installer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Installer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '꿉`BԾ%', 'KYl;~^bNSN4h', '', 0, '?'),
('L꿈a.}fd?I', 'wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.fc9d01c2cd0ef46d20fd.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.fc9d01c2cd0ef46d20fd.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mu[b¡#0A', '[9.mǀأ<\r\r}g)N_9j', '', 0, '?'),
('LtX@;]Gw', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasSomeBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasSomeBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}D%)o', 'gפ{E@\ZLz4sFB', '', 0, '?'),
('L봈ڒA#uPܾ', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/render-mode-template-preview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/render-mode-template-preview.php', 0, 'Sكz3{|%', 'Sكz3{|%', 'fwwf\ZRi.h!rԬLHYOT&', '', 0, '?'),
('L+qV;hY', 'wp-includes/fonts/dashicons.woff2', '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MN:''ʤȹ', 'J!XLl`eOsH', '', 0, '?'),
('L>tN', 'wp-admin/css/colors/blue/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݺCNC:7Xj', '6e?dxZzWPR1jt', '', 0, '?'),
('L)7a4\n ', 'wp-content/plugins/elementor/assets/css/templates/widget-image-gallery-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-gallery-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r{,O\\]', '[;3TH2hBKQ', '', 0, '?'),
('Lp{>p]3', 'wp-content/plugins/elementor/modules/kit-elements-defaults/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1BY%%	1j', 'G,܆?q<xXv^NbH', '', 0, '?'),
('L)a$D-ӮJ', 'wp-includes/js/tinymce/plugins/wplink/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wplink/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RpZ:=', 'bڢ\nS@7/6,ash', '', 0, '?'),
('MVsllLJ*', 'wp-content/plugins/elementskit-lite/widgets/video/parts/video-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/video/parts/video-button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dʹ܅ņVmƝ=', 'Pt=\n<Y!#D;', '', 0, '?'),
('MRH]Zf,қ', 'wp-content/plugins/code-snippets/dist/edit.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$3޻v_\r', '=\ZW:\ZEQ-2!$/o', '', 0, '?'),
('MS ţ`t', 'wp-content/plugins/wp-optimize/images/features/auto-optimize.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/auto-optimize.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+>nqa9', 'M^I ҽK	|e"O0\Z,洄', '', 0, '?'),
('Muh|\nX3', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AssignNameExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AssignNameExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%tߴ''@O_', 'a1<''S|u15|\0+', '', 0, '?'),
('Mx1ǋTmR_2o', 'wp-content/plugins/wordfence/views/dashboard/global-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/global-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˫''m`0>+#', 'pPv?ZFQQcj', '', 0, '?'),
('MRNE/ҤV', 'wp-includes/SimplePie/library/SimplePie/Misc.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Misc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u2m!Jfn(hn', 'Su[g]@ᝦ&O-O|"', '', 0, '?'),
('M&u\ZQG-', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-scale-up.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-scale-up.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p*,n', '$^D?ASC?&=T׉"Fi t_0e', '', 0, '?'),
('M1q0>Kw׈', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xquery.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xquery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rC?A]=', 'V PP](+f$(66	"_', '', 0, '?'),
('M1/n̖Q', 'wp-includes/css/dist/components/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B6,+\0', '/\0Xec\Z[Xښm<mΆBs#', '', 0, '?'),
('M3ct~ī', 'wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\Z$]b', '=ڲ2m$9R	7>u+', '', 0, '?'),
('M6exQǥ$', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/InBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/InBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^HV)L[', '>F7O=̊]:Vz+ksm\ZXo', '', 0, '?'),
('M?,5*K*f', 'wp-admin/js/post.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/post.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n]˘N\nA%', 'ym	ͺ<RX0Jnu_', '', 0, '?'),
('M?9p6qZ-$', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditorToolbar.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditorToolbar.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}G%\nA(', '	G6<+RB_S&B', '', 0, '?'),
('ME<e!j', 'wp-content/plugins/elementor/assets/js/editor-document.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-document.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D]yĄ`\Z9N', 'M}!4%\\zBTG\0Oy\\#', '', 0, '?'),
('MW	:ي', 'wp-admin/images/align-none.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-none.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eqd2u\r', 'g(1X{ [].TA', '', 0, '?'),
('MYG\\tX/', 'wp-includes/customize/class-wp-customize-color-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-color-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"Y0g31Ʃl', 'bWCAh]T˩%Lb&A쭆q캏', '', 0, '?'),
('M\\sxТ^{)׸', 'wp-content/plugins/elementor-pro/modules/slides/widgets/slides.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/slides/widgets/slides.php', 0, '1uZv\rakHE', '1uZv\rakHE', '\ravZyX2e7/;7Y721"', '', 0, '?'),
('M^\0^̓c4]', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/commands.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/commands.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h2Ldx'';|', 'dC!TF3x֋Q;o', '', 0, '?'),
('Mafa.mEKI', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/InvalidParameterException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/InvalidParameterException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*@-C3\\\Z]', '}2#F''?9.mϯah', '', 0, '?'),
('Mc>\\FI}X', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '//.8r9', 'cx눭Z Q\0GvS\\ ', '', 0, '?'),
('Mg	g<&:', 'wp-content/plugins/elementskit-lite/modules/controls/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ٮ|4ǽrn|6', ')fld''E_[[\\6DR', '', 0, '?'),
('MvU%Lҵm', 'wp-includes/blocks/navigation/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wcf"?', 'jK\\iO.R7>KCDv', '', 0, '?'),
('MW;Hnd', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-n4s>r4', '\0G3U;\Zvw߷i+-*W', '', 0, '?'),
('MYyGr''', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Logger/LegacyHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Logger/LegacyHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';ztyg', 'HY11}>8^MNgW', '', 0, '?'),
('M%*M9븞', 'wp-includes/Requests/src/Exception/Http/Status412.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status412.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܖ[8?^FYT', 'rrm팰''JWxʅCR\Ze', '', 0, '?'),
('MPzQAp"M+', 'wp-includes/blocks/read-more/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uֶ.Yګ[', '3!xY?2=^&ɫF<No3L', '', 0, '?'),
('MMN>-qxC', 'wp-content/plugins/elementor/core/common/modules/connect/apps/base-app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/base-app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T"n>q', 'z^B["tO)ۄ$EzR', '', 0, '?'),
('MР\0A9Q+', 'wp-includes/js/admin-bar.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/admin-bar.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y()1 XE', ';9%#AWisAA\0!e4?', '', 0, '?'),
('ME՗:jΡ', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-dot.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-dot.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\0l)P', 'Ӎ\\SHTrZ!t}|`0', '', 0, '?'),
('M;C8Yyﲏ', 'wp-includes/js/twemoji.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/twemoji.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NPilMˣ3.', '''.vE?¡#\Z[(c', '', 0, '?'),
('M|[H4', 'wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N2J娳YB瘱', '\ZPL㨒ZitA7d', '', 0, '?'),
('MIfia`\0]-', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions-rows.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions-rows.js', 0, '''C6FXk\0', '''C6FXk\0', 'mXY-2 m?P~uՊm', '', 0, '?'),
('Mk,}rLֶ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-database.php', 0, '08A̯	''4', '08A̯	''4', 'F0s;GFjXٙxY', '', 0, '?'),
('MRBed', 'wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3~MsiG', '%''rx\Z5xec玎ҹq+/\nM\n', '', 0, '?'),
('MIMrD-', 'wp-includes/post-template.php', '/home/binawebp/omsrislb.my/wp-includes/post-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'íXJ=F', 'Ւl׶5Wm:c髼C', '', 0, '?'),
('MqJ;T0}ۇ', 'wp-content/plugins/elementor/includes/controls/tabs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/tabs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G\ZK7}G]L', 'H\r78ܠh&tk/a<־U*', '', 0, '?'),
('N\n^%<q', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/bbtheme.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/bbtheme.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q/\\jg_', 'd77M6 Qx,\0I]l6', '', 0, '?'),
('N37uwWb4n', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$`ٌۘ$r', 'Y`ãfYg{#]))GC=8', '', 0, '?'),
('NiYSwy', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-contract.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-contract.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+_N(<gy+', 'Q^*14(t\rhi٤)', '', 0, '?'),
('N-#ZItr', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-django.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-django.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&r/9*ݳ', '=Jt7İ!fR;8\Zx', '', 0, '?'),
('N1ޖRP3A7', 'wp-includes/SimplePie/src/HTTP/Response.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Response.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ed[bT%ġS', '-R̙b#ȓXנ~\\cO', '', 0, '?'),
('N7A\0nnV֑', 'wp-content/plugins/wordfence/images/checkbox.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/checkbox.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"G\r6|􈘀''', 'y~`w(j~=뤼&ݴQ>`^x', '', 0, '?'),
('N=f>$KHT', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?G{g', 'ĀР<W;-\Z񀍙(C+,MUW6', '', 0, '?'),
('N@+.^\0.Rp-', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-01.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-01.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3<mPUi', 'Ϛo%(v''Ci]$8zcd', '', 0, '?'),
('NVˮmD', 'wp-content/plugins/elementor/core/utils/http.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/http.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؒ>҄1Kc6`', '+\ZOΝay#@#fQ{T\\-<', '', 0, '?'),
('Ni~	`WE', 'wp-content/plugins/wordfence/lib/wfAlerts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAlerts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5QǍgIcC7@', 'Ͻ8S\\v!!r5PE#', '', 0, '?'),
('No2''}+;W', 'wp-content/plugins/wp-optimize/images/notices/black_friday.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/black_friday.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`Pc(0w', '/aj/39/J,J^AbB', '', 0, '?'),
('Np@֑m/^_', 'wp-content/plugins/elementor/assets/lib/eicons/eicons.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/eicons.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z`r{', 'W\r^GZd''TZ!', '', 0, '?'),
('NrbRВ5B!wj', 'wp-includes/blocks/query-total/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z?%yjP', 'g5y YRe|՞I''n$RD {é#', '', 0, '?'),
('N|Jвznsw', 'wp-includes/pluggable-deprecated.php', '/home/binawebp/omsrislb.my/wp-includes/pluggable-deprecated.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	w\\O\n', '+Y	%U_7l:\rp', '', 0, '?'),
('N~ h[ƃRa@', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel.bd618e5f000147859de7.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel.bd618e5f000147859de7.bundle.js', 0, '+R Є>AP', '+R Є>AP', 'ޚ(\rR^R8~.ASb9', '', 0, '?'),
('N3j@pu5^', 'wp-includes/js/tinymce/skins/wordpress/images/more.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/more.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n\nm\0;˫z', '$vo^U A\0:\\Cu', '', 0, '?'),
('Nd!hqiG;', 'wp-content/plugins/elementor/modules/checklist/checklist-module-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/checklist-module-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ί	p', 'MgN0$dn9N;Kk!	e', '', 0, '?'),
('NzpḚ', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-src-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-src-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K[/o\0BI', '~v;Q=\0P&4#&', '', 0, '?'),
('N\\\n\\-]!O', 'wp-content/plugins/code-snippets/css/edit/_gpt.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_gpt.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B6NMK', 'cK߄_X}qEVkYPr', '', 0, '?'),
('N_w29x', 'wp-content/plugins/wp-optimize/images/features/more-settings.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/more-settings.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-+3~.KhNd2', '=kW#R|~&T+\0', '', 0, '?'),
('N966^', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')jG@-{bk!', 'рajfV,H?\\tF', '', 0, '?'),
('Nh_BH\Z\0c', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@#V,aq|Mg', '0^ª#vp< ,xI+,\\', '', 0, '?'),
('NHV}4G', 'wp-admin/css/customize-widgets-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e<#9', 'WC:lYD9]GIm愽\ZPQ&\Zb!3,', '', 0, '?'),
('NUBya ', 'wp-includes/blocks/columns/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rr4{6G', 'yU47"!''R@rOk<=NI\n~UX', '', 0, '?'),
('O	S#Yiv', 'wp-admin/includes/class-wp-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gnozZV', 'RmE4eጪ9pǻ\\2c\nL-', '', 0, '?'),
('Oth`\0Tbg''', 'wp-content/plugins/elementor/includes/managers/controls.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/controls.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''ҮsP!', 'G]%ߧ́V58P%ҩ,4>', '', 0, '?'),
('OҽPT^4~B', 'wp-includes/css/dist/editor/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P#^d;̓_8', 'Fiykt''!*ҪhdxN', '', 0, '?'),
('O =(:<	1F', 'wp-includes/class-wp-feed-cache-transient.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-feed-cache-transient.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3N(y2"gB', 'gVϭ/''hI|-a~n', '', 0, '?'),
('O&[C"1[k', 'wp-content/plugins/elementor/core/editor/loader/editor-base-loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/editor-base-loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A|8}Y', 'dpU1ѝմehYGOO9	(', '', 0, '?'),
('O&κL{dR99', 'wp-content/plugins/elementor/assets/js/wp-audio.c91cab3152c3f241f266.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/wp-audio.c91cab3152c3f241f266.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-ʦn~\Z', 'axAaZFCTi?GVlla', '', 0, '?'),
('O+V;\0}yUC1', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of-term.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of-term.php', 0, 'yh$Þ(F;K\n\r', 'yh$Þ(F;K\n\r', 'SSӹNmC/?j,J[]ha%|', '', 0, '?'),
('O+[IBmm''', 'wp-content/plugins/wordfence/images/wf-central-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wf-central-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q(VѤ', '\0{\rߘJ/ ^+,S', '', 0, '?'),
('O2ɂH!֒[=', 'wp-includes/blocks/pattern/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/pattern/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C9', '3D?eϞG>ŐZ1x~6{X', '', 0, '?'),
('O4ǳWQ\0R', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ǈ"Cix', 'x眪!}\ZWd', '', 0, '?'),
('O=u}u\0p''', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c_cpp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c_cpp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n!ϰcŽX:d', '~5wN}Y?RH*àcv+㘀)', '', 0, '?'),
('ONK$.eC9', 'wp-content/backuply/index.html', '/home/binawebp/omsrislb.my/wp-content/backuply/index.html', 0, 'f~\n', 'f~\n', '#xx=\r"Y*7', '', 0, '?'),
('OO~],M=d', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uW\n͖C[^l7', 'H''2SNG"{=*dh', '', 0, '?'),
('OQݠ8W|f$|', 'wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z 82lܡ', 'Q\nʈfs93IwM2`p0Ri', '', 0, '?'),
('OSYWz!8ʣj', 'wp-content/plugins/wordfence/views/gdpr/banner.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/gdpr/banner.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>69!Gz>S', 'ZQa̿|꣞`!C2CK%#l', '', 0, '?'),
('O_	:-Hv', 'wp-includes/js/dist/vendor/react-jsx-runtime.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-jsx-runtime.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4[[8]Lڱ)7', '[&>}8	,a8¿dح>.Rb', '', 0, '?'),
('O_HilM=Q	AY', 'wp-content/plugins/elementskit-lite/modules/widget-builder/cpt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/cpt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ,\rPq\n1P', 'G|hl11</<~p', '', 0, '?'),
('OlqCcێ', 'wp-admin/css/forms-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/forms-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0yKXJ(', 'jZ*@y=٪A7Xv;8Ϗ:', '', 0, '?'),
('Om-\\AmR\\ub', 'wp-content/plugins/elementor-pro/modules/forms/submissions/actions/save-to-database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/actions/save-to-database.php', 0, '`9ۮiy:rs>', '`9ۮiy:rs>', 'N<(30-u(o}Se1>"2v', '', 0, '?'),
('Otþ|!a]', 'wp-includes/blocks/code/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q\ZQ響', ' $\r$gI`@+9\rmf', '', 0, '?'),
('OvtvJ㟕', 'wp-content/plugins/elementor/modules/lazyload/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/lazyload/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~!nȁ', 'Ǌ<:I1 fSq)Ԇc"', '', 0, '?'),
('O潼m$݋&_', 'wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/MaW', 'dJ[PrMV\ZCmX', '', 0, '?'),
('Ok/	', 'wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.js', 0, 'J;2;''*:?', 'J;2;''*:?', 'fwmlґ;-', '', 0, '?'),
('O\\P5{R', 'wp-admin/plugins.php', '/home/binawebp/omsrislb.my/wp-admin/plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's$[f=\ZC', 'x8Wt\n/]yhtoWU', '', 0, '?'),
('OfP١C(kJ', 'wp-content/plugins/elementor/modules/compatibility-tag/base-module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[{^''Tw', 'riBJp_y,č*~(&ǋq', '', 0, '?'),
('OMxگx3T', 'wp-content/plugins/elementor-pro/core/integrations/exceptions/action-validation-failed-exception.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/exceptions/action-validation-failed-exception.php', 0, 'TEf''\Zv\\', 'TEf''\Zv\\', 'kM0qPIL''UA34~', '', 0, '?'),
('O&r蓏 ', 'wp-admin/freedoms.php', '/home/binawebp/omsrislb.my/wp-admin/freedoms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"@J1˜Sf', '1ӥJKp@', '', 0, '?'),
('O83Jcll', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';wTux>TN!', '	&}&>a`&}y3^b=', '', 0, '?'),
('ORrD?', 'wp-admin/js/postbox.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/postbox.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qq\0&?;i\Z', '&1km(>]S:Y''', '', 0, '?'),
('OLtSKEpv', 'wp-content/plugins/elementskit-lite/modules/header-footer/cpt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/cpt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'цcF<', 'Φqps؋wPXڍ[#ꋂ" |4', '', 0, '?'),
('O\0D&6', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/box-shadow-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/box-shadow-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm9䭈>`y', '8Ϧ9\\MXX]=!Cbwh}Q\\\\', '', 0, '?'),
('O#vILM\Z(]', 'wp-content/plugins/elementor/modules/system-info/system-info-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/system-info-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<2]K4s-Qm', '''K&}99z', '', 0, '?'),
('Oy k	b', 'wp-admin/css/customize-nav-menus-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/]h"lfal', '/EԂo?]m>FJOSt', '', 0, '?'),
('O}|6\nzk%_', 'wp-content/plugins/elementor/assets/css/app-base.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':he\nX', 'p\ZuC\0M.;}\rHoRs', '', 0, '?'),
('OHI!K!0[', 'wp-content/plugins/wordfence/lib/menu_scanner_options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_scanner_options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'drmQ?NدE', '0z!_N\\×\n~N|dsm', '', 0, '?'),
('O*m_)8_3', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'agRfn1', '#}l{X>}v?XBmD', '', 0, '?'),
('OOM_K7n', 'wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B:W@N', 'aHlqQH5Vh|7hfKN4', '', 0, '?'),
('OhuG&\0L', 'wp-includes/Text/Diff/Engine/native.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/native.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KjJB', '5lݲUgoK\\c-F`A{^{', '', 0, '?'),
('PHZ`=', 'wp-includes/blocks/pullquote/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'υ V9ϻl', 'HjxwY"b&c\\T&1C', '', 0, '?'),
('Pbw=i', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\\ZIw5AlLۢ', 'K{8fl7sRh嗋I', '', 0, '?'),
('P	nIYB3|yp', 'wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W\ng)4bAw', '0ZȆJ76M\\..6qü_', '', 0, '?'),
('P/:̮҉H', 'wp-content/plugins/wordfence/waf/pomo/streams.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/streams.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"xx!3W', '\r,&ɩ!:xl[', '', 0, '?'),
('P\np)<l', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8#)oq\0\\', ':x㴦cAoӣP\nmo$meƍ', '', 0, '?'),
('PE۫7r|oI6>', 'wp-includes/js/backbone.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/backbone.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[\\.C8G', '9(,"g)\0:7bMh', '', 0, '?'),
('P NtD݌n"', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yK] ', 'b}"ozV(\rV''QuIv', '', 0, '?'),
('P''(?+z$', 'wp-admin/js/postbox.js', '/home/binawebp/omsrislb.my/wp-admin/js/postbox.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H>j`d\n"', 'Ťp=RyYY-Qi', '', 0, '?'),
('P, JRղ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z7?Wv(', '(vfLGV\0E\rx.vTX', '', 0, '?'),
('P-k\nFJ7+yP', 'wp-content/themes/twentytwentythree/templates/index.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/index.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$p:zt@', ':;T;Dj\03MdւG', '', 0, '?'),
('P.QOcg|', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tǱi`', 'ۡlzUSMn^)%* ', '', 0, '?'),
('P73o	\0=', 'wp-admin/js/word-count.js', '/home/binawebp/omsrislb.my/wp-admin/js/word-count.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rffB)', '6j,AުǭsDeCz&\n', '', 0, '?'),
('P97\\&Ͱ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*)e!', 'tz|"xM\0wgn\\\Z\r\Zb_J', '', 0, '?'),
('PJ~]; `y', 'wp-includes/widgets/class-wp-widget-media-image.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZD`_=z', '	G3MX1]ݤId/+|AG/', '', 0, '?'),
('PK2I)', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yw5(nbm', 'm!`~:-\n&3@N[9d\r', '', 0, '?'),
('PLot\0aJmbc', 'wp-content/plugins/elementor/assets/js/admin-modules.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-modules.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tsc1g\0ā', 'Q4I찢 ''|\\A,Ɗt$0', '', 0, '?'),
('PLF^9R6zp', 'wp-includes/blocks/navigation-submenu/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fH2Xm.W', '\Z(f)gWNVy!qܹzg%', '', 0, '?'),
('PNB7AGd 6h', 'wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gfڜOX', 'e,y}~E-,\r2.ue:x[', '', 0, '?'),
('PV7-\0%\n', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-shadough.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-shadough.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/=HĈ[j\r', '\n\\''+''h(ŜJE', '', 0, '?'),
('PYgG(Ȁz', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#=VGMGf', '''cf\Z5uɩ+NIv鍛,_@lx', '', 0, '?'),
('PvgIxSP', 'wp-content/plugins/elementor/core/common/modules/finder/categories/site.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/site.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@lG`RiK]', '.܄RfM?FIZdRZ ', '', 0, '?'),
('P}vAz>01,', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInputException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInputException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e/ׇ+@zҟ', 'Ȏ"`e6㊥A{GZ6[juP', '', 0, '?'),
('Pto޶Suh`G', 'wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']<5b:r:', 'E|Z\npJQscZ<', '', 0, '?'),
('Pizta}a', 'wp-admin/users.php', '/home/binawebp/omsrislb.my/wp-admin/users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uwɠeTE', 'ahPe0]o% Eװs76.(', '', 0, '?'),
('P&KLՒt4', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/get_display_size.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/get_display_size.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a>E?Ylq', '/x?ٜ:Ύ[K_x3=CeY0o4', '', 0, '?'),
('Pn0Ig&@', 'wp-content/plugins/elementor/modules/dev-tools/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/dev-tools/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"|q4W"R{co', '&F@I]Uedn"s#@YKw', '', 0, '?'),
('P`,\ZcU뱶)', 'wp-content/plugins/elementor/core/common/modules/event-tracker/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/data/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\)"9^rX', '9\r_[}<^~W}P!&~y', '', 0, '?'),
('Ph~P', 'wp-includes/blocks/page-list/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@؛^}b', 'oMp+pxȻy#\rD-9h=', '', 0, '?'),
('PиVI5Ryr', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/FontAwesome.otf', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/FontAwesome.otf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r'']>\\v\\2\ZM', 'qoO$K]g3nÒѐ~(R', '', 0, '?'),
('PߖP:߸\0|%B', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-php.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-php.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pŔM,5~', 'rjp߰i[鴕ҳwM	u7;', '', 0, '?'),
('P\neu"', 'wp-includes/sodium_compat/lib/php72compat.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php72compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&F:B\nj|-', '\n1mkssAogp', '', 0, '?'),
('P@;b<\nc', 'wp-includes/class-wp-oembed-controller.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-oembed-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vGwEJW&', '-#&{̡6e`C+E''\\', '', 0, '?'),
('PM\ZI̸ݭY`r', 'wp-content/plugins/wordfence/lib/wfHelperString.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfHelperString.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')`E', 'OMCn=O5hKE,q`*', '', 0, '?'),
('Pˏ%z', 'wp-content/plugins/elementor-pro/core/integrations/integrations-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/integrations-manager.php', 0, 'IRNt\\`\\Kr', 'IRNt\\`\\Kr', 'C{2=Mu\r	\rklZa}a', '', 0, '?'),
('P3ɮ''My', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/ContainerRuntimeLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/ContainerRuntimeLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nlƹ'',\\!', 'bSPx1")bi\07ma', '', 0, '?'),
('PJ2NBh;8', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebP.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebP.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SzrwVR', '*h@ȝBPYAD8̓sKNt\06', '', 0, '?'),
('Pݸ ׯl14', 'wp-content/plugins/elementor-pro/modules/hotspot/widgets/hotspot.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/hotspot/widgets/hotspot.php', 0, 'P߾&-''SRǗ', 'P߾&-''SRǗ', '-N\niPQLu/t,9Ga`7}', '', 0, '?'),
('P1$\\*C', 'wp-admin/images/stars-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/stars-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A#SMe.^', '[耿_(\rhYTqZ', '', 0, '?'),
('P0aRz= ', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3gkeͿݾ|h', 'Hzj鞨%p=ZiNAZ', '', 0, '?'),
('PZy7qXI9', 'wp-includes/blocks/post-author-biography/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's3Ahd~@_P', 'T|Pj4h(/ؗdll', '', 0, '?'),
('Q#!٭캶4', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2^fQmX', 'Zs%Չ̺C&ZXTjjq', '', 0, '?'),
('QJ)\ruCv\nQ', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/revert-runner-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/revert-runner-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=@0R$M', '}A X@&fѼ|孺bs', '', 0, '?'),
('Q''q;_W&t', 'wp-content/plugins/elementor/modules/link-in-bio/widgets/link-in-bio.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/widgets/link-in-bio.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'λ;\ZN', '3$ӭ\\BDҋXF3', '', 0, '?'),
('Q;(Mp*', 'wp-admin/js/widgets/media-widgets.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dG\\)n', 'UU0n-՟b&NEc\\5Ɠׁ!', '', 0, '?'),
('Q=z=B9Ph', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/innertext.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/innertext.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$UHSI ΁', 'eh״h+v/c9-?m5Y`', '', 0, '?'),
('Q?ٟgL|ua', 'wp-includes/class-wp-textdomain-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-textdomain-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vkDf\\g', ':gt	[9Ɂ[Lv*^Lg', '', 0, '?'),
('QCȧ$9B)M', 'wp-includes/blocks/tag-cloud/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-lѤyN{', ']	^3c=G5\n'',', '', 0, '?'),
('QR;\rA#A*q`', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ScssCssSource.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ScssCssSource.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"!͓7u`+q', '>U''}s&<<.ӳc\nkʡ()*', '', 0, '?'),
('QT*fP.', 'wp-admin/includes/file.php', '/home/binawebp/omsrislb.my/wp-admin/includes/file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\U J|`C', 'g''gYfecCbaW&@', '', 0, '?'),
('QY1TlVr<', 'wp-includes/js/customize-views.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-views.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6õd9F', 'h$i?VARUdH', '', 0, '?'),
('Qn3X?A\Z-', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-title.php', 0, 'mj@	ҍ', 'mj@	ҍ', '{>U7,i_m^H\07)ʏ', '', 0, '?'),
('QqPOQJ', 'wp-includes/fonts/class-wp-font-face.php', '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-face.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݪ(Ui>Ss', 'M-)ڧA>J\r.ȃ&om)z+', '', 0, '?'),
('QuoPX\0Sڞ', 'wp-admin/images/bubble_bg.gif', '/home/binawebp/omsrislb.my/wp-admin/images/bubble_bg.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~g<ćI0', '''+uW`-AS''}S~Sb', '', 0, '?'),
('Q&vi늛{', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/notices.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/notices.php', 0, '@d^N*"W', '@d^N*"W', 'c}%b#cϝPJĳyhȜ-', '', 0, '?'),
('Q7d', 'wp-includes/SimplePie/src/Sanitize.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Sanitize.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`\\Ƚ~3֪-P', '¯eB8@d@o5ҼoJHá!j ', '', 0, '?'),
('QcmuX\Z3B+X', 'wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$mR_`W6\0', 's)W?PӎB*?xBZdɗeZٞ{', '', 0, '?'),
('QXgI?S~)', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')Vnbɰ2v\0a', '#r^sspzm-+d?UL6Ac', '', 0, '?'),
('Q$.`+G', 'wp-content/plugins/wordfence/js/wfglobal.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfglobal.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ow{	b@@=>', '\Z$u	s$-Ձi%߱:|', '', 0, '?'),
('QPA鐚z', 'wp-includes/blocks/columns/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rr4{6G', 'yU47"!''R@rOk<=NI\n~UX', '', 0, '?'),
('QP5ZwNia', 'wp-includes/blocks/quote/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uFӈ@T~S}', 'A3m{dIƐiw 	\rli', '', 0, '?'),
('Q6K4H', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i0\Z_c', 'SBYlMЪD撧}\Z+>#};', '', 0, '?'),
('Q%3_6 2', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZD>^.%-', '@VDez/o~HcEޝ:)]', '', 0, '?'),
('Qx̿Py''uE|', 'wp-includes/blocks/page-list/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5$1K@}<iO', '78X|ua\Zpv^qZ`', '', 0, '?'),
('Q-C-]C', 'wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E/i?ݶ83|E]', 'C#OKKؗB.FYƉ+EwFKY9.', '', 0, '?'),
('Q5ޱr^', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aqYžn_\0^G', 'c/%`ˠgKX䡀xٸ__H', '', 0, '?'),
('Q@9Few#+!', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NCó['', ,', 'Х҇HhFݥmPAmaexH', '', 0, '?'),
('Q9nb7\rnH/?0,', 'wp-includes/js/dist/private-apis.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/private-apis.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(V}lqPY3', 'Y\rNJ$8@\\\njd;̈́', '', 0, '?'),
('Q`8M8', 'wp-admin/press-this.php', '/home/binawebp/omsrislb.my/wp-admin/press-this.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':ƛ{tY[:g\Z', 'i>[t"{D[\r:gUlt:P,p', '', 0, '?'),
('Qp4V:(a6', 'wp-includes/js/dist/script-modules/interactivity/index.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/index.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*e	UF2', '{YR<R>>nдHKz', '', 0, '?'),
('Q0N̖,', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ω%>@:aS', 'xFº-}csU3,`ڈOt', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('QW+/XM<L', 'wp-includes/SimplePie/src/Cache/File.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']7|O', 'pU<ihFEu	ݽqF', '', 0, '?'),
('QKP`0l/n', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/module.php', 0, '#\Zq&8x', '#\Zq&8x', 'n4\n~%V6}B:d_IVhr', '', 0, '?'),
('Q_	fL]B', 'wp-content/plugins/wp-optimize/templates/admin-medialibrary-smush-column.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-medialibrary-smush-column.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yPZGW', 'sL\r̮*|?W#jODƍ]', '', 0, '?'),
('Q~K)0̹ϱ', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z鑯ة"\r', '- fvB!t`8rteY', '', 0, '?'),
('QG72C\ri', 'wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O5#Ѡ', 'ds2;{v01(''@O-H\r', '', 0, '?'),
('Q<''seݓ', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĐIRV;D', '@hA\0v>_}mL"g', '', 0, '?'),
('Q.ì\\XeOI', 'wp-content/plugins/wordfence/views/dashboard/options-group-general.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-general.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(t*-6ـX', 'mVdhI∂dTK{z\Z', '', 0, '?'),
('Qlg-', 'wp-admin/js/comment.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/comment.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%Xv4\nl', 'G}P8wCjIȀOKîX~3', '', 0, '?'),
('Rv5W6`ھ', 'wp-includes/css/dist/nux/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4ЦvW=W', ':IfrtY^&YN<A5=\\5', '', 0, '?'),
('R,VҕBW', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(V*(n"x#', '+{kHa􋞕f\0#E*&', '', 0, '?'),
('R3Us3}T', 'wp-includes/js/autosave.js', '/home/binawebp/omsrislb.my/wp-includes/js/autosave.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hr¥MLw', 'ƻw̆>rCh.:l', '', 0, '?'),
('R8yҞ綄', 'wp-includes/css/dist/block-editor/content-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' yx)iWztsm', '($%A\rJt>GR{Kԇxw@', '', 0, '?'),
('R8\0H', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c=?Ldij ', 'NR9qA_ϨZ]<8?X ', '', 0, '?'),
('R92~"wijX!\0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-apache_conf.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-apache_conf.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|بWHU', 'EϫMYFMl>O40n', '', 0, '?'),
('R<V\ZиE', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/author.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/author.php', 0, 'xI2ofXzK', 'xI2ofXzK', '\\fpz`QP4p>&', '', 0, '?'),
('RMTxߝwxVQ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__get.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__get.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'up*@', '%7Aͭ\rh;]:S&', '', 0, '?'),
('RQb7f |~ۓ(', 'wp-admin/js/widgets.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4>APPu4Ą', 'v5ᐪmє"-*~``Qg1F/', '', 0, '?'),
('RV`2 Fy%', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/templates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|Lh\Zbc1]wW', 'xB0Fef(̉gu', '', 0, '?'),
('R]w荓]r=', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/4.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/4.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0#]', 'Dڮ/bTEG䙁(F4', '', 0, '?'),
('RbQݼ )', 'wp-content/plugins/wp-optimize/images/our-other-plugins/easy-updates-manager-sm.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/easy-updates-manager-sm.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&<Ʌ	`', 'ɥqelR3ȃ?d', '', 0, '?'),
('RePHv3B*O', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=\n"ls[$Y_', 'QJbؔULr\0CŉE0Y', '', 0, '?'),
('RjqIӏ\ZY&', 'wp-includes/sodium_compat/src/Core/Curve25519/H.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/H.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0\rJ`X"8by', 'oHiYN3	>_J,S^', '', 0, '?'),
('R1?YVDt', 'wp-content/plugins/wordfence/lib/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E"xK{8dS', 'C''r9@Kކtw#@k', '', 0, '?'),
('Rb:ZKL', 'wp-admin/js/application-passwords.js', '/home/binawebp/omsrislb.my/wp-admin/js/application-passwords.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B"5pC\05P;.', '	>W̞66}{F+*CWVJ', '', 0, '?'),
('Rx4Mp@9u\n֊ p', 'wp-includes/images/wpspin.gif', '/home/binawebp/omsrislb.my/wp-includes/images/wpspin.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$n4H{', '-*znD,"aHKHrޱ~\Zy\Z%', '', 0, '?'),
('R|Rx/bzn9\0*J', 'wp-admin/includes/plugin-install.php', '/home/binawebp/omsrislb.my/wp-admin/includes/plugin-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i\0=tF/', 'p\Z!!(Z\\"IAM2q', '', 0, '?'),
('R.{8ID(', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-17.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-17.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S \nHw', 'UHt<B ?fD?h.u', '', 0, '?'),
('R[TG,', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DivisiblebyTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DivisiblebyTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`:/D', '!V:}ݰ(felѦ&Ңk:', '', 0, '?'),
('R\\SC|ju9A', 'wp-includes/js/media-grid.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-grid.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7	[%\rypl', '|?B"Woau,uBq%#', '', 0, '?'),
('R$$Vi>!', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/FloorDivBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/FloorDivBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r["@;n2', '"i*:[RBs~fsu', '', 0, '?'),
('R¥Leq	&', 'wp-admin/js/user-suggest.js', '/home/binawebp/omsrislb.my/wp-admin/js/user-suggest.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jl,f.Vh', '\ZԂ	8՜g\\ISグ6', '', 0, '?'),
('RQ8ë3άʉL', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/cross-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/cross-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fD''Z64R"', '\\%DU<e!VfhANƷ', '', 0, '?'),
('RsiW[%', 'wp-includes/SimplePie/library/SimplePie/XML/Declaration/Parser.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/XML/Declaration/Parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\roO0!k', 'yAy	v4.W2sF8h', '', 0, '?'),
('RܰoL8~\\lCR', 'wp-includes/blocks/audio/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z#@ϛ\0v', 'ͲCOR̋<l%n\ZS>*', '', 0, '?'),
('RʪQ ''gQ/', 'wp-content/plugins/elementor-pro/modules/forms/actions/slack.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/slack.php', 0, 'f~&X)oEC', 'f~&X)oEC', 'zT}YǂA)3\Z+=qk', '', 0, '?'),
('RH\r0!d?c&', 'wp-includes/widgets/class-wp-widget-categories.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-categories.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UWܹh', 'ùPΆ"lgX`@', '', 0, '?'),
('ROlv=h}X\nf', 'wp-content/plugins/elementor-pro/modules/forms/classes/rest-client.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/rest-client.php', 0, 'ѿC*́|3s', 'ѿC*́|3s', 'lKHgw\rzئuAO#J', '', 0, '?'),
('R^"8菰N[$', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_document.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_document.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FϷo%i', 'OJ:R?и#/xukXs}', '', 0, '?'),
('S?dxSَ@', 'wp-includes/blocks/query-pagination/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?k.׶*נ ', '؊rHL=]ؙ!_''d', '', 0, '?'),
('S''e^isυ/', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/services/conditions-config.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/services/conditions-config.js', 0, 'Ԭ\\+bp@', 'Ԭ\\+bp@', 'J-R!ϓ\\5J%@SNF', '', 0, '?'),
('SVf=1_Mwr>"J\n', 'wp-includes/blocks/comments-pagination/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"\Z?I{>', 'hY="f+ZƲ{<lm\0翦P).E', '', 0, '?'),
('S ŇCn4U', 'wp-content/plugins/elementskit-lite/config/widget-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/config/widget-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'awk,K!J', 'B+J<SIsl%m!8!\Z', '', 0, '?'),
('S!7Y*e4JS', 'wp-includes/blocks/comment-template/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\o(msZMU}', '[\0ƕhH#aBDsO', '', 0, '?'),
('S)I(4VA', 'wp-includes/blocks/accordion/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oJCX$R', 'pVNeBG!;', '', 0, '?'),
('S.FȫAj(:', 'wp-includes/js/hoverIntent.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/hoverIntent.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ң4K', 'z\\:Ǝ[4d`}{;ѕfxLԩ=', '', 0, '?'),
('S0־K/17u', 'wp-includes/js/jquery/ui/selectmenu.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectmenu.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ԧ_grm-', 'OB xuNB>q9Zx윚v', '', 0, '?'),
('S1YJ\nsL', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#Һ@e{=', 'Ԃ\Z''랙gԫQAUbM', '', 0, '?'),
('S9j86s+', 'wp-content/plugins/code-snippets/vendor/composer/autoload_classmap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_classmap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y7n0', '+1ݲ?jkZVHlw"0I', '', 0, '?'),
('SJʕJl', 'wp-content/plugins/elementor-pro/modules/forms/classes/mailerlite-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/mailerlite-handler.php', 0, ' T,t*(', ' T,t*(', '4e^FxH^5WdOra', '', 0, '?'),
('SVX\nX	', 'wp-content/plugins/code-snippets/php/admin-menus/class-admin-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-admin-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ƏAuv#\Zdf', '=z:kV53:h([''5J', '', 0, '?'),
('SX+71?-', 'wp-includes/js/jcrop/Jcrop.gif', '/home/binawebp/omsrislb.my/wp-includes/js/jcrop/Jcrop.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z7eQ%K', '!@X7JŃp3K;S*!L', '', 0, '?'),
('ScS1W^', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(%dX	Ba}', ';TFmrMgp}f#L(\ryv]$', '', 0, '?'),
('Sj~6{X', 'wp-admin/css/colors/modern/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kf@N@!', 'o''ձpy|&ia[kx!p/x', '', 0, '?'),
('St$KYb!Nx\r', 'wp-content/themes/twentytwentythree/style.css', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Nwȫ''LCPϳ48', '\rw\r=b1[֯"9', '', 0, '?'),
('SvdOcM', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-gallery.php', 0, 'hG013<rI', 'hG013<rI', 'Ѕ8n)R*9Fy7Q*(q:p', '', 0, '?'),
('Sx3igr)^FH', 'wp-content/plugins/elementor/modules/apps/admin-apps-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/admin-apps-page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cxg;w߷|', 'P@琸P/]i)Lܜ6', '', 0, '?'),
('SzWNKUS', 'wp-includes/blocks/calendar.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ad(GڧR*', 'rso?+vLATkѮ<؍', '', 0, '?'),
('SZc~2', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ہ.Exps', 'y\\,!3"̔͐([>v3', '', 0, '?'),
('SCi1ۭj', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tB@VdR40u', 'մ~U.ߗI֍8wɩ''', '', 0, '?'),
('Sp>WrYE', 'wp-comments-post.php', '/home/binawebp/omsrislb.my/wp-comments-post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AJ3^!@Dx', 'wsn8`wi', '', 0, '?'),
('S2b0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.fine-uploader.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.fine-uploader.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o+f7ȏR', '\nV&5k\n1ڼ\na ', '', 0, '?'),
('St J9G', 'wp-includes/css/dist/block-directory/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CF\Z$Ϣjd', 'kn>d''?uQBJ}R<,C', '', 0, '?'),
('S5*eT', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-es-ES.po', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-es-ES.po', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tw>h$ZB.', 'Q!x7(J<N%Բ诖{', '', 0, '?'),
('S\npލG%', 'wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']_#D\0', '\Z ے%4~N~Gh!b:wɌ''', '', 0, '?'),
('Se>9w {', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FlushTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FlushTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p7'' ', 'yxDR_`GsaX7?-i\r', '', 0, '?'),
('S(`J:&', 'wp-content/plugins/wp-optimize/templates/database/tables-body.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/tables-body.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PxS\nbW_t\\"', '[t≝'')cY_c0<	Hē0*', '', 0, '?'),
('Sϟе;oMi', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/GravInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/GravInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`y\r齬A', 'fp(/oD,ki!,1kAqv', '', 0, '?'),
('Sto', 'wp-includes/block-supports/aria-label.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/aria-label.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kp@K,25', 'K+-̧$"F`l_=', '', 0, '?'),
('S&az8Jض9', 'wp-includes/widgets.php', '/home/binawebp/omsrislb.my/wp-includes/widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z. >`/e', 'b3Ns&\ZB0?kĖ''\0ol', '', 0, '?'),
('Sl:>', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/breadcrumb.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/breadcrumb.php', 0, '\ZE搻?²7', '\ZE搻?²7', 'pXOjvx3$T''p.b', '', 0, '?'),
('S;YdIJW', 'wp-content/themes/twentytwentythree/templates/blank.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/blank.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0xzeF=', '\n#FV~0Q%*LFkR', '', 0, '?'),
('Stvg', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S@݁ܧ(#\ni', '''9tʑYֆڞr̽!贬eۓu2', '', 0, '?'),
('St@Kē', 'wp-content/plugins/elementor/assets/css/widget-nested-tabs-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-tabs-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W-nZT LD', 'ٴLaDSbʄKU]؇bCa`', '', 0, '?'),
('S\r''~y2', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H-yY<i.', 'ڋ4Sĥ>l:aKW2RR(', '', 0, '?'),
('SzW+ϋY&IÇUA', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/6.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/6.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tM2P3b', 'FCQ|{ۃ._7J%g_pP', '', 0, '?'),
('T	gSP.', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GTIZmAI', '&r~0i%c~0"W!e', '', 0, '?'),
('TfQꣲ՚<<', 'wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+%|]#(<.', '-uten8?Z8;;14qa4I{jA', '', 0, '?'),
('Tr~W]', 'wp-includes/class-wp-comment.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-comment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F&B\n42~/q', '"*c=6;ޡDPiose', '', 0, '?'),
('T\Zj@8_Ԣ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/EnterProfileNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/EnterProfileNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I]ퟓ|Ir\rVZ', '/u2rY9pYjWU`)od''G', '', 0, '?'),
('TEkUOr', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ļ%n{', '\ZLYhCYfns0KPGZl>', '', 0, '?'),
('T)Un=', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j9޼t', 'p!-єBՅIӏ	 "֬', '', 0, '?'),
('T/fUjݵ :', 'wp-content/plugins/elementor/core/common/modules/ajax/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/ajax/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʶij<c', 'ʸܠP9P /oLU_\n4', '', 0, '?'),
('T0a%s2}', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/my-account.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/my-account.php', 0, 'LO01a%u{:', 'LO01a%u{:', '9(WT0$	~\\Vv{', '', 0, '?'),
('T29\rVdII', 'wp-content/plugins/elementor/modules/global-classes/global-classes-css.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes-css.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Z"y(Mu', 'Vzd$\\jgsOʴ-', '', 0, '?'),
('T6K?s 7(', 'wp-includes/customize/class-wp-customize-sidebar-section.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-sidebar-section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VjBرq', '{#i`\0j` pǍ+fF', '', 0, '?'),
('T:(KZ32', 'wp-admin/user/contribute.php', '/home/binawebp/omsrislb.my/wp-admin/user/contribute.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Eg	\\v', '&\0J<4\\Jq8Lq''', '', 0, '?'),
('T??:q׮Pah''', 'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nyn$<', 'Mʽ\r+CQ	RӼ_dW@M', '', 0, '?'),
('TMl', 'wp-admin/includes/class-wp-screen.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-screen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd<.׍lne', '`\nNIb!Ɏlx}\r8$G⹉?+', '', 0, '?'),
('TN<N6i>P', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_dark.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_dark.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rA}_H', 'u?s]Wu"u6ڶ', '', 0, '?'),
('TO_רwEϧ<v΍', 'wp-includes/blocks/navigation/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(POkد', 'd<ی#iGw\\eI!+Ne', '', 0, '?'),
('T\\NܣP', 'wp-content/plugins/wp-optimize/vendor/composer/include_paths.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/include_paths.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xNٝzZ`', 'KQ\0Xh>uHi5S	ܖ\r', '', 0, '?'),
('TcYĩ+[3N', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard-before.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard-before.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'º8̨\ZyT', 'hUxWs;G\Z@L<1=h', '', 0, '?'),
('Tn;3PS6', 'wp-includes/css/classic-themes.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/classic-themes.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZЗe|LZ', 'Uؚ`\0jAm\rǩ2##', '', 0, '?'),
('Tw=+6', 'wp-includes/js/tinymce/wp-tinymce.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/wp-tinymce.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')S0Fxrq', 'pevCk\r?	t,ڨ¢Sv!\ra', '', 0, '?'),
('T.o@Ψ2wvX', 'wp-includes/js/jcrop/jquery.Jcrop.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jcrop/jquery.Jcrop.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2FjGZvCQ\0`[', 'U=OmC5y}5\\|\0', '', 0, '?'),
('Tvm?,aT4', 'wp-includes/ID3/module.audio-video.quicktime.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.quicktime.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'έyT3К?JS', '!\ZoFGLAq#(ƃ݇phP', '', 0, '?'),
('Tϕ7F7E', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/GlobalsInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/GlobalsInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x.qW>J|', 'n`6=j0B4s+qw;(J', '', 0, '?'),
('TGJl6wwE', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/sanitize-class.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/sanitize-class.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"td p', 'hgd8\ZS\Z$ڰ<pdy1', '', 0, '?'),
('T\rfV+ j', 'wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gxXJTbx', 'fx/xG\n856	Z+', '', 0, '?'),
('T9Af$)S<~', 'wp-content/maintenance.php', '/home/binawebp/omsrislb.my/wp-content/maintenance.php', 0, 'xTtP', 'xTtP', '4w''sؕ*nUhsR-U', '', 0, '?'),
('T[zQ', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/widget-writer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/widget-writer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zc44F''9	s', '`4̀&9L˟_N*l4,ΐ\rf', '', 0, '?'),
('T`52z/>w', 'wp-includes/blocks/query-pagination/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?k.׶*נ ', '؊rHL=]ؙ!_''d', '', 0, '?'),
('Tdiu.wю', 'wp-content/uploads/wpo/logs/index.php', '/home/binawebp/omsrislb.my/wp-content/uploads/wpo/logs/index.php', 0, 'ij>ֱ ', 'ij>ֱ ', '[TnEjd($:!hΝ\0s><', '', 0, '?'),
('TZZP)ڏ', 'wp-content/plugins/elementor/modules/floating-buttons/base/widget-floating-bars-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/base/widget-floating-bars-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QњÉ\rWui]', '}B3~~G<)D~ttAv:#', '', 0, '?'),
('T,BE^ï#r', 'wp-content/plugins/elementor/core/debug/classes/theme-missing.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/theme-missing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y$pn|Ӭ', 'm",{LJ?SV|	BJs[yp+', '', 0, '?'),
('TړbIv}z5', 'wp-includes/blocks/avatar/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D||PyXG', '~_8x~5K<A{ؚe ', '', 0, '?'),
('T۸&7IJI', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/FontAwesome.otf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/FontAwesome.otf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r'']>\\v\\2\ZM', 'qoO$K]g3nÒѐ~(R', '', 0, '?'),
('T܌7`\0(', 'wp-includes/js/mediaelement/renderers/vimeo.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/renderers/vimeo.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C9YO', '+®-FVpݨIhtLiP%Ki6', '', 0, '?'),
('Tp{', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/less-1.7.5.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/less-1.7.5.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ApbOi\0', 'Lͮz;jƏyRͅ', '', 0, '?'),
('Tĭ98C', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/adding-nodes.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/adding-nodes.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`n4Y65K9', '!ƻ/:?~&i>cNI6y$H4K|', '', 0, '?'),
('T\Zs	|K^', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/base.php', 0, 'M3n뮁7''R-Rȿ-', 'M3n뮁7''R-Rȿ-', '¤؜ywҪʦmtqZsN', '', 0, '?'),
('TJ<IsPP*', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ExtendsPreviousDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ExtendsPreviousDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K$⾚7X', '/\ZʳX7haQ*u`lYƗ', '', 0, '?'),
('Tag,2I`', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_VJ^G`-I', ';y?r(6|"<AwpN=Xf6', '', 0, '?'),
('T^>;V ', 'wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L\naqYp	F', 'K&IOk4.;ZCC+yOEdPr', '', 0, '?'),
('T\\7t', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-date.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-date.php', 0, 'Ħ"EVg', 'Ħ"EVg', '8e^R~_q:F,甦s@{', '', 0, '?'),
('U	\0ALL''h', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrowFunctionExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrowFunctionExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>eeQWMnU', '$T c+]oЏg؂', '', 0, '?'),
('U0z\rӃ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';W;-կ', 'd\rsڑ97m<C	KP=', '', 0, '?'),
('U2YRF1w', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migration.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migration.php', 0, '5(_is', '5(_is', 'Qq.[`Bx\04d]k\r0', '', 0, '?'),
('U7>b~\Z"<', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/front-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/front-page.php', 0, 'Q[/xXuȗX', 'Q[/xXuȗX', 'Μ=\Z.Mė\Z(fr~oHқO', '', 0, '?'),
('U"	L4]fƗpN', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/CompiledContainer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/CompiledContainer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F_x!VǍF', '_]<xixʾC%d2G(', '', 0, '?'),
('U/dʼ{\ZL', 'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';%Pۈxi', 'T2[cʠ-ƃF[?1m؞K[uZ', '', 0, '?'),
('U6P\\fx', 'wp-content/plugins/elementor/includes/controls/hidden.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/hidden.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z?Ur.b	', '1$!Z!9e{AnҍHë', '', 0, '?'),
('U?6wTQ+SM0ʹ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	l#Y^=u', 'r=X,lU*F] ZQ[6qф', '', 0, '?'),
('UA!~''zr,?', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdeisngkit-notice-logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdeisngkit-notice-logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[?}H22漆', '͓O$F[zq/c>?3,o^', '', 0, '?'),
('UI_Ym_', 'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PvBiY_', 'z\0H$yD7s{w5', '', 0, '?'),
('UXk%O@8', 'wp-includes/compat-utf8.php', '/home/binawebp/omsrislb.my/wp-includes/compat-utf8.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G(cY\nt`''', 'ogިTo(ʾeFp:<>a:', '', 0, '?'),
('UZRflxRS', 'wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'liJ*e', '/UYa(&M,j	?:L', '', 0, '?'),
('UmD3%x', 'wp-content/plugins/wordfence/languages/wordfence.pot', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/languages/wordfence.pot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V"&oZMQ', 'fmRzoT?d2p/(5', '', 0, '?'),
('UpWCL#', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M7H4EG', 'x*?R	wWDFY7AV{', '', 0, '?'),
('Upݽ5lu51', 'wp-content/themes/twentytwentythree/parts/comments.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/comments.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D''c2G5y', '2:`@Aqr\Z\r?,񵟞', '', 0, '?'),
('U.G\0h7K', 'wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{ǲ겊T', 's׷my([~MNԘ;i', '', 0, '?'),
('U9oy?gzWHW', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1I?&o=%v-\\', 'k^eܖ;0w.OU-R`(O?', '', 0, '?'),
('U۬pN', 'wp-content/plugins/code-snippets/dist/editor-themes/mdn-like.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/mdn-like.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '35ͦ', 'R)@%>$ACnkY)[u', '', 0, '?'),
('U"Ez@Zm_', 'wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+s>p(#', 'I/DvLҸHe_aԖhP', '', 0, '?'),
('U\r"`관i', 'wp-content/plugins/code-snippets/js/components/SnippetForm/page/Notices.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/page/Notices.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u{ηG>', 'JN~!ՈDi', '', 0, '?'),
('U5E+-\n', 'wp-content/plugins/code-snippets/dist/manage.js', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NYn5=6|', 'd&.#+2[sb齖"', '', 0, '?'),
('Unɓb4lZ,I', 'wp-admin/css/about-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/about-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$.u4|{E', 'CnI\r{VMFW0n', '', 0, '?'),
('U˨1V؊2', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gOP҇č', '~8 ir\nPp\n25DahBzP', '', 0, '?'),
('U$i"u&9', 'wp-includes/images/crystal/video.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/video.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lڤ;=', 'S\rIU9_<f`&HYwu', '', 0, '?'),
('Un3ْ', 'wp-includes/js/dist/script-modules/block-library/navigation/view.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/navigation/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R&OO<!', 'NgV&(`<s󪠡?4&+', '', 0, '?'),
('UbQvcA\0', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{tAqȻSK', 'ͳu~w	JCbC~)0', '', 0, '?'),
('U3.qqRk_', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V\\"顋z[', 'Ee5&"Ǜ\n)3&5K3XPq', '', 0, '?'),
('U8R', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!&by$', 'F:|151,+u9"g9qjp', '', 0, '?'),
('U巌r̐$I-p', 'wp-content/plugins/elementor-pro/assets/js/lottie.630a998405ebf4420b6f.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/lottie.630a998405ebf4420b6f.bundle.js', 0, 'Ck\0J(_7', 'Ck\0J(_7', 'FtuZE<+n޴''ח\\C&', '', 0, '?'),
('UG&t_Tr', 'wp-includes/css/dist/commands/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'faxdC', 'J9\0ٷ(!P.gCCIR:Ɏ0', '', 0, '?'),
('U\0_-^r`B', 'wp-content/plugins/elementor/assets/js/styleguide.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jHL|tfn~', '=MZRJ5r_؀.AERn', '', 0, '?'),
('V\nKOZ7!JO', 'wp-includes/css/dist/block-library/editor-elements-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vHօ<Uj+@T', 'VLb4dopwXK', '', 0, '?'),
('VrLY''ԟ$', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	δѵ3l]\rE', 'N髼UP}''!7om-)~', '', 0, '?'),
('V\nU`_58', 'wp-includes/js/customize-base.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-base.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L妽uW?t', 'LIIM c$kƁd&@G', '', 0, '?'),
('V\nyݎpl3x', 'wp-includes/blocks/accordion-panel/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XP\0HF0:', 'KĒu&q2Y+-Q1Usa(JL', '', 0, '?'),
('V<7Gn', 'wp-includes/blocks/separator/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' tEo?@{', 'kL#Ga^	,І\rF''\ng:}FLz', '', 0, '?'),
('VXZӾ]@', 'wp-content/plugins/elementor/includes/managers/elements.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/elements.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ta^)F$ae6', 'KL$ZA^@z	%ukZj', '', 0, '?'),
('V\r3#J{', 'wp-includes/sodium_compat/composer.json', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X7{(G5', '5<HX0t>-', '', 0, '?'),
('VTd8>', 'wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php', '/home/binawebp/omsrislb.my/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o,I''+j', 'Jy"h9x+ruq?OYbGP<', '', 0, '?'),
('V!~.wzfv', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedPropertyError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedPropertyError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k $e', 'mݳ''xX+٪SeQ}>b0bs	', '', 0, '?'),
('V#7A@?)', 'wp-content/plugins/wordfence/views/unsupported-php/admin-message.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/unsupported-php/admin-message.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A	HRQ~', 'jZ=8<Oc-R=s.)4ƃ', '', 0, '?'),
('V''P+}\rа|}', 'wp-content/plugins/elementor/includes/settings/tools.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/tools.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd Ϛ', '~9viw&jVM&4', '', 0, '?'),
('V-PjO*%L,', 'wp-content/plugins/code-snippets/license.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oEZv\Z|Xo', 'k2!~W?''0Yf7Y{v', '', 0, '?'),
('V2L\0ۺ', 'wp-includes/js/jquery/ui/controlgroup.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/controlgroup.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<RvcH52', '(}f\n7-Qo6daέ/Px', '', 0, '?'),
('V:ڗ~3Aؑ', 'wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+fq(4Ȯ', 'k(\r(Njj''̣6./''', '', 0, '?'),
('V;Am)', 'wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0).j{!', '!8JfdkFw,kHLoM>"', '', 0, '?'),
('V?ONeZF\\', 'wp-includes/js/jquery/ui/accordion.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/accordion.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Ol\0}', 'o=/Z`LmBlcqκ~', '', 0, '?'),
('VD/BJX|', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/finding-html-elements.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/finding-html-elements.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nH3p', '3/q)wx@ *L̃\ZGl', '', 0, '?'),
('VGɛY匣', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd%RϮB)', 'Yisqq|O1', '', 0, '?'),
('VL67G^l%D5z3', 'wp-includes/default-widgets.php', '/home/binawebp/omsrislb.my/wp-includes/default-widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=MN,*Y|2$', '#	fix\ZYRR(@?h', '', 0, '?'),
('VW;z*(', 'wp-includes/blocks/navigation.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y~a7AE-e-o', '\rPL/H\\~o\rTZ$/', '', 0, '?'),
('VX-)ozhEY', 'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js', 0, '|%M|>', '|%M|>', '$dUZ7C<g}jeTUӥW', '', 0, '?'),
('Vi''Ruh:u', 'wp-includes/blocks/query-pagination-previous.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-previous.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vy3;H1&', 't0fLoM+Aa4,m&-', '', 0, '?'),
('VlJye', 'wp-content/plugins/wp-optimize/wp-optimize.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/wp-optimize.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',|B1u(', ':k?,=Eeq臔ai', '', 0, '?'),
('Vne!z0u1?', 'wp-includes/shortcodes.php', '/home/binawebp/omsrislb.my/wp-includes/shortcodes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$G??;PiQ', '\nw92`9`3*Sn\n3OT8', '', 0, '?'),
('VrmKEpj6', 'wp-admin/images/w-logo-blue.png', '/home/binawebp/omsrislb.my/wp-admin/images/w-logo-blue.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[NW_pw0', 'ޣ^Qt3HunU❻~''T2', '', 0, '?'),
('V}EzKiR', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/ekit_icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/ekit_icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`*\r~i69', 'H|12La''~ѷ	ZKv', '', 0, '?'),
('V_18o	Y<\Z<', 'wp-content/plugins/elementor/core/breakpoints/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/breakpoints/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zThN[qVEu', '>&F+޲N<Op^]jhH3', '', 0, '?'),
('V4=<8X', 'wp-content/plugins/elementor/core/settings/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H1?~܌^H<', 'mhC@u"\0/N-i\r?4I}', '', 0, '?'),
('V댏$x', 'wp-admin/js/post.js', '/home/binawebp/omsrislb.my/wp-admin/js/post.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#@S1', 'Wi[WkyKb۝R]Kf{', '', 0, '?'),
('VP,Y`H#', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__set.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__set.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǩu봱m$;', 'G\\?5mqn+S]&DDU', '', 0, '?'),
('V}br@	\\', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/BACKERS.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/BACKERS.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+;53@}\04', 'Ҵ73ſ=Z*\r:''|Su)', '', 0, '?'),
('Vrz(nol*', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OU0!ubG|', 'h]%I 	I\0|1V~\n`', '', 0, '?'),
('V\Z-Řڂ5', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-input.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-input.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H|K]+%`', '2Xe0h\\\0(6_p,', '', 0, '?'),
('VkWxff', 'wp-content/plugins/wp-optimize/templates/database/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\6JynP', 'hEW<_8?>&R$n', '', 0, '?'),
('VÄnͲ$mqh', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϷN=|Уwu', '$,oo]҇fY{B\\\0Q_n', '', 0, '?'),
('VBhKFR	?', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tAg', '{*f\nI컐RM\r".XJ0@cõ', '', 0, '?'),
('V_AhEBZGZG', 'wp-content/plugins/elementor-pro/modules/forms/classes/getresponse-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/getresponse-handler.php', 0, '''UD	XpCG', '''UD	XpCG', '	@Cd\\t!''\Z9lg	,', '', 0, '?'),
('V׀''hĈ+:', 'wp-admin/includes/network.php', '/home/binawebp/omsrislb.my/wp-admin/includes/network.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q3QcLRPK#c', 'U*#Djl	f4(~<', '', 0, '?'),
('VuxpRcQ"', 'wp-includes/Requests/src/IdnaEncoder.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/IdnaEncoder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ދ}2ee', '}C\r0gN5#<W`+\0%Fds{Lrd', '', 0, '?'),
('Ws$8~Nȁ-@', 'wp-includes/js/mediaelement/mediaelementplayer.css', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1ĪL5!\n', 'o^:v\\mocTW[k', '', 0, '?'),
('W?:%'' ', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_before.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_before.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fҤ]B?2f/', 'k,&oA^mR\ZOG3~', '', 0, '?'),
('W&ִ )+ڱ', 'wp-admin/includes/class-plugin-installer-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-plugin-installer-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '¨7Ip0N~\Z', '9g8,7d] 䏨L!NS\r', '', 0, '?'),
('W8h!ɩkĉ''', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rRUb*\0''', 'x<sBZ2jRM''0%$i{ V', '', 0, '?'),
('WEhaAnYl', 'wp-content/plugins/wp-optimize/includes/class-updraft-logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʹqFf_<', 'i[1k\\5~\nƽPIOqt', '', 0, '?'),
('WORëC|<', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-soy_template.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-soy_template.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qA=i,', 'ZOsELzB`\r8𢕋4Dhnd''', '', 0, '?'),
('WQf=''', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/Container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/Container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A =Ξ', '[$ί&ҪT>uxgOm', '', 0, '?'),
('WTnԎy^ޖ', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-title.php', 0, 'T΀]Vّ''[>', 'T΀]Vّ''[>', '33<G՚\n,3	dxj-M', '', 0, '?'),
('Wa#I=Є՟_', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/index.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/index.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'evI!kO~', '\07!X\05\0h`:dbAߊ\\-"5', '', 0, '?'),
('WcRhW4', 'wp-content/plugins/elementor/app/modules/onboarding/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/onboarding/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L=6u9VtI', '	"\\%"G|.O;ih2ы', '', 0, '?'),
('Wg,{', 'wp-content/plugins/code-snippets/php/strings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/strings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wg', 'P,HNވUfATQ)vB', '', 0, '?'),
('Ws{NhPr㼱', 'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_ips.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w964"ky', 'X"v-*3', '', 0, '?'),
('Wx\ZTa7{', 'wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1-ySkg', '4\ZH+*P`,汹҄|*Վp', '', 0, '?'),
('W{g- X''=n8', 'wp-admin/moderation.php', '/home/binawebp/omsrislb.my/wp-admin/moderation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZEVUu', 'Fq61<wt&b1', '', 0, '?'),
('W|u0aV.sP<;', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-typo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-typo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';pF0/5I)1o', 'Ujk~ؙ]vZ^IF', '', 0, '?'),
('W})Ӗ7e}59,', 'wp-admin/load-styles.php', '/home/binawebp/omsrislb.my/wp-admin/load-styles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2tm*GKt	', '\Z9..u0C8\rF~߀~sHM', '', 0, '?'),
('W@BŶ''1(', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kyA8c>:!:', 'wkMtul67#''GY$i	E', '', 0, '?'),
('WaH(', 'wp-content/plugins/wp-optimize/js/jszip/LICENSE.markdown', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/jszip/LICENSE.markdown', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(֔<*<a*]xa', 'σLP[>)лLd', '', 0, '?'),
('W) (v/31', 'wp-includes/html-api/class-wp-html-processor-state.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-processor-state.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '﬑фY>', '''Lci~^`(\rbwtp*v', '', 0, '?'),
('WLjN/@Ϣư', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T	nrk', ';\\Xځ/0;QP.B4\Z', '', 0, '?'),
('W*dg1N', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dracula.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dracula.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GK(t)', '\0-#ԱհHm;c', '', 0, '?'),
('W֕2#\035İT', 'wp-content/plugins/elementskit-lite/widgets/image-box/image-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-box/image-box.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uh\0?Z@eMJbƄ@', '5tjnv''_uU\0', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('W:K$q', 'wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>:R-㵲"H', 'pMdL=EӸA1z"⠘~㙳L=', '', 0, '?'),
('WKG=,sg', 'wp-content/plugins/code-snippets/php/class-list-table.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' #hs#MwG', 'r	27wLM?8kG;Nnȸ', '', 0, '?'),
('Wy>DB2b', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-settings-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-settings-controller.php', 0, 'Ml#P"V', 'Ml#P"V', 'Ց1fypO뒳\n', '', 0, '?'),
('Wx\n?H)i', 'wp-content/plugins/elementor/app/modules/kit-library/data/taxonomies/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/taxonomies/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FBZßA', 'Ul&<Qmw Ƿ.V\rܼAY', '', 0, '?'),
('W̶޸iHQ*};', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vk`hvJ^c!}', '^ۀ2C<.\r(Nt+ZU9B4', '', 0, '?'),
('W0z\Zge', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`]R?=:', 'śݾ_1Vn@\n?~ABS<>%X', '', 0, '?'),
('WIÛe-psz', 'wp-content/plugins/elementor/vendor/composer/autoload_classmap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_classmap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rf1n *#', '̸48\n95)Ι$=tU1\n', '', 0, '?'),
('Xǧ|$_`I\n', 'wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-empty-view-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-empty-view-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oM.J/', 'yu&*TRf0I4zh', '', 0, '?'),
('X׈^.kC', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Imagick.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Imagick.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Z5`r\0', '4Tn[h(nrS.=)БMbG!', '', 0, '?'),
('XP6VV', 'wp-content/plugins/elementskit-lite/libs/framework/assets/js/frontend-script.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/js/frontend-script.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ab2ۈfXo h', 'lTujd$V_dVAdi}%μo', '', 0, '?'),
('Xѣ.I:A', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jack.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jack.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?9#:?', 'Z,Pm1B3N`2Z2*-', '', 0, '?'),
('X eKLzE~', 'wp-content/plugins/code-snippets/dist/manage-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e~;X', 'l?_o''\ZvpS{]F''IiBOx#&', '', 0, '?'),
('X+\07oU4^SU', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-monokai.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-monokai.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ċ*yG=_Gh	', '\0	Ͻ]߃TTr4WvAΌ', '', 0, '?'),
('X,ECj$_8I0', 'wp-includes/images/smilies/icon_cool.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_cool.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n`ivj.', '事F9;2_	$$~LOa6_', '', 0, '?'),
('X.[R.l=\Z', 'wp-content/plugins/elementor-pro/modules/forms/actions/email.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/email.php', 0, '|Zg3	Zt\Z', '|Zg3	Zt\Z', 'a`b\0*gjZSp2FulA;', '', 0, '?'),
('X0d!Ģ:4,ÿ', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/select2.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/select2.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.\rn4', '_`a(f_.ż~uw', '', 0, '?'),
('X6aOɲ\0''Z\0', 'wp-content/plugins/elementor-pro/core/database/base-migration.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/base-migration.php', 0, 'F=FK-[tZg', 'F=FK-[tZg', 's5K,=i*gL', '', 0, '?'),
('XBAbv', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8RjMc', 'gy&\0xL$?.%\0\n֭', '', 0, '?'),
('XJ\nsp3t9!҈', 'wp-includes/style-engine/class-wp-style-engine.php', '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Onz\r.', '<ϼA9>nQ\0b̬a', '', 0, '?'),
('XKF}WQ#Q/A}', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/multi-props.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/multi-props.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǤV&Gݚ5', 'p4Bu[b	;8TK''?h', '', 0, '?'),
('XO4u*', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrayExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrayExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zevyeˣ', 'ˬW|49.j[%x*ń''ɫd6', '', 0, '?'),
('XTRDR\00', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dawn.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dawn.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wsr', '-\Z?,$L֑on5je\0ƥ', '', 0, '?'),
('XZ?מ6L帝 ', 'wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Preview.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Preview.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SZ}}bE^', '\n4K&Iv%HۺC|ɩ', '', 0, '?'),
('XZAʃ\nVa', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DY9D^', '/$|<HI]Te	0e', '', 0, '?'),
('X\\QDӨpHʯ', 'wp-content/plugins/elementor/assets/css/widget-accordion.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-accordion.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CdFB^3gs', 'Dl>w.nACRTiX(%', '', 0, '?'),
('Xa@|%[\Z@', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's-HRl\0', '45ҰRK&ˎvn/0-o!\niB5', '', 0, '?'),
('Xc8\rDz', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.strings.js', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('Xd,p8yD<;"q', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jLmrc', 'R/VN>ObΜw^k^''3', '', 0, '?'),
('Xg#m\rfj7m^', 'wp-includes/blocks/post-title.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vҼYr', 'olKJi<\0I&ysyR\r6.!', '', 0, '?'),
('Xj<\Z8s"2', 'wp-content/plugins/elementor/modules/floating-buttons/widgets/contact-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/widgets/contact-buttons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1^', 'o''2$o/OT\r?<!­|M%Mڰ', '', 0, '?'),
('XqZ\0OY', 'wp-includes/blocks/term-template/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n.#A0TD', 'xÆV,JntvȑI', '', 0, '?'),
('XrIvaS.y', 'wp-content/plugins/wp-optimize/images/features/optimize-individual.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/optimize-individual.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']>ͧaY$w|f', '7ҜB;=0za64˅fCz', '', 0, '?'),
('Xv!ZeT,;V?n', 'wp-content/plugins/elementor-pro/modules/notes/user/preferences.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/preferences.php', 0, 'EOd#\Z?', 'EOd#\Z?', '`E@e7_ABY9R\ZF֛e<', '', 0, '?'),
('X}wfIR', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9CບRUC&', 'y̤Pĩ\ZP˂bפTފr`', '', 0, '?'),
('X~݁}P,/', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-verilog.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-verilog.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P"ڞr\0', 'Eq`XD2yZ`}*,|', '', 0, '?'),
('X~''WF', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/transparent_bg.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/transparent_bg.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0f+#KMC8', '}Pt''\0x`+HmIS', '', 0, '?'),
('X}1<p	H', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H(l,>|', 'NyJ>j-fi֧bo	ϽBM', '', 0, '?'),
('X߭f2tGH|0', 'wp-content/plugins/elementor-pro/assets/js/mega-menu.6a41b17ca3362b2df95d.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu.6a41b17ca3362b2df95d.bundle.js', 0, '_k;[(\ro', '_k;[(\ro', 'Fl뙂ߍ)-b/j3(Ӕ', '', 0, '?'),
('X{)?Gw?', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/ConverterFactory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/ConverterFactory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B{7^~5G', ':y.p>~G8Lށ&K+HAt;', '', 0, '?'),
('X:8+˓2>V]8', 'wp-admin/images/sort-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/sort-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aìk:bтvFj', '''aK\0tGJBqXW*(J|1z[(', '', 0, '?'),
('XQΩ\0Yz5', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XEN:d', '\ZԸL(ňE d5f4~LWI<5ί', '', 0, '?'),
('Xi83qb|,\r', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f!ɎГ°', 'Fv^ZSu؞Łp\nCk', '', 0, '?'),
('Xr*pēDw', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/remove.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/remove.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"ԌW.*', 'ULC*~a_3Jll*kW', '', 0, '?'),
('Xx7򛋔}@Gb|', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/wp-color-picker-alpha.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/wp-color-picker-alpha.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';A%*Ol@;', ',tklL%fI/GNբmj:', '', 0, '?'),
('X2FGrmF', 'wp-includes/blocks/button/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.{_', '^SnQf@սmEl܁X{JN.', '', 0, '?'),
('X8d\07P''', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C83TOf-', '3h)v=3w~GcF+>z[', '', 0, '?'),
('X=l3&\r''', 'wp-content/plugins/elementor/app/modules/kit-library/kit-library-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/kit-library-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0/\0s', 'B~e?@3q	*<3<JYau׵', '', 0, '?'),
('XsYqePL', 'wp-includes/blocks/code/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@_Fx', '}\0-&k?lV=nf''V)', '', 0, '?'),
('X8+', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ocaml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ocaml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N5,v`', '(</\0z<?"i3	st', '', 0, '?'),
('Xx-K8[8', 'wp-content/plugins/elementor/assets/css/templates/lightbox.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/lightbox.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>\\yF4my', '(6dE\nRtrF/	f4C', '', 0, '?'),
('X2̤', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asciidoc.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asciidoc.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g6dZõk', 'j~$s	a~{X', '', 0, '?'),
('XGzX', 'wp-admin/includes/class-wp-upgrader.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-upgrader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܩhIm\rfvI', '"v+ue-IEIzĀUU', '', 0, '?'),
('X~Vzl!_]/-3', 'wp-content/plugins/wordfence/models/firewall/wfFirewall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/firewall/wfFirewall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XC#BsTb', '×GH5kӹrܰRR_x-', '', 0, '?'),
('Xʔ1^!ہK''c', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/JShrink.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/JShrink.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɬb|)ü', 'm$Gx\ZJָ)m´6', '', 0, '?'),
('Xk(DqțG', 'wp-includes/js/jquery/ui/slider.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/slider.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5|cWKxb', ' u/\\G؆#(,gMw+yțFT', '', 0, '?'),
('XN8jc', 'wp-includes/blocks/post-excerpt/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=u`6RB''', 'X9s3|ya,[a1', '', 0, '?'),
('X"m@Q|', 'wp-content/plugins/elementor/license.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"9sF:t\rG', 'F}ՌOX	##', '', 0, '?'),
('XoȜ%s!ܣ', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates.js', 0, 'ʱn!Dkn', 'ʱn!Dkn', 'mLtyǰxHSx,0],T΀v', '', 0, '?'),
('X[/iɒ!''', 'wp-content/plugins/elementor-pro/assets/js/form-submission-admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form-submission-admin.js', 0, '3!}w', '3!}w', ']SR1<{\nBض49', '', 0, '?'),
('X;BG4o', 'wp-content/plugins/elementor/modules/compatibility-tag/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wٟ$Vbg', 'TW}τWGi덛ňՁcuC[T', '', 0, '?'),
('X=2h4/{+', 'wp-includes/spl-autoload-compat.php', '/home/binawebp/omsrislb.my/wp-includes/spl-autoload-compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6u{t', ',Z\rM	>܅gp/	Z\Z#`!.', '', 0, '?'),
('XĈ''\r)', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l$~5B', '9PCmKj,#Du', '', 0, '?'),
('XTCW_^og', 'wp-admin/includes/class-wp-debug-data.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-debug-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yULϸքCK', 'oyCq>?w1g\nE4yۭX{', '', 0, '?'),
('XS7k9͐&', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-gradient-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-gradient-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ic?/6_', '#1Qqj4W誣\Zk%R''', '', 0, '?'),
('X` }$d', 'wp-content/plugins/code-snippets/vendor/composer/autoload_psr4.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_psr4.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(Khbɘ0M.@', 'y(HiL`U)eDRP', '', 0, '?'),
('X1ء k', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H&\np:.eDɊ', '\0xov@+cnY=1_cm1', '', 0, '?'),
('Y\0Qضx''@򷈯', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uJi.Gd', 'ij&G6d''\nzt(j c@V', '', 0, '?'),
('YH= fؚ', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%\0ZY', 'T2''[?9HHFQq&17', '', 0, '?'),
('YڿhOI', 'wp-content/plugins/elementor/assets/js/styleguide-app.a6e297c616479b98c03d.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app.a6e297c616479b98c03d.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B|e~', '\Z{/X#iT|e\0G |TF', '', 0, '?'),
('Y .Q&o,', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-image.php', 0, '"-8j', '"-8j', '7$SPw{uAu\Zj<hS', '', 0, '?'),
('Y(Kg\0_', 'wp-includes/js/dist/annotations.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/annotations.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dEɣm:)', '0JI%\rP4;|Hny=E', '', 0, '?'),
('Y,Qpgmu#e~', 'wp-includes/widgets/class-wp-nav-menu-widget.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-nav-menu-widget.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oDgI].op[', 'Uŋd#mdƂ26\rz,v*f', '', 0, '?'),
('Y/ޑ	\Z', 'wp-includes/js/dist/escape-html.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/escape-html.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ìn$4\r', 'D8U )`!!T?65', '', 0, '?'),
('Y?=v ', 'wp-content/plugins/elementor-pro/core/database/model-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/model-base.php', 0, 'f\nZ2C', 'f\nZ2C', 'w||LhUoDu6<Hي7Y', '', 0, '?'),
('YBt\n\ncݟ.vi', 'wp-content/plugins/wordfence/views/diagnostics/text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/diagnostics/text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '??5|HƗ', '|?(lcK}q{p}׃$KA2_AÔ', '', 0, '?'),
('YV29}D8', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CZ?@JN_ji<\Z', '<H"F@%1`7<	}', '', 0, '?'),
('Y`9bu0w0', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/TokenParserInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/TokenParserInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z%GLUi', '^ghY_"	h1Us', '', 0, '?'),
('Yk.V7CZwDH', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/export/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/export/templates.php', 0, '\n\nzԫS2Qt', '\n\nzԫS2Qt', 'U<緿Ν?w$F2\0Ţ', '', 0, '?'),
('YT\n*7v]PF#', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling_to.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling_to.svg', 0, '^ӱl+0d', '^ӱl+0d', '(^&")ig-}᯺Ix\\\nޝ', '', 0, '?'),
('YLah(', 'wp-admin/edit.php', '/home/binawebp/omsrislb.my/wp-admin/edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xBIjp', 'GXNcw/-w''i6J', '', 0, '?'),
('Yѿ~y\r~', 'wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.<z	', '|h"yڑFpd&9Sf||u', '', 0, '?'),
('Y,eAw`', 'wp-includes/images/media/archive.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/archive.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9h\0ìu', '\0Bb3'''')JG ](G9Pr2 s', '', 0, '?'),
('YCRZV.[]p', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/requirements.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/requirements.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')^b', 'h\\AGM|	]MUsT7\nè', '', 0, '?'),
('Y.ˠEd''', 'wp-includes/blocks/post-content/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q@EXbnpeН', 'V2, `\ZͯM&\\xFq[Ɵ', '', 0, '?'),
('YBWy	+BOmz', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#:N''DxN', '[_|А~E+~E(`_', '', 0, '?'),
('Y68H;%,_c\n', 'wp-includes/css/wp-auth-check.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r*QMA?H', '|`wZ\nՊM\rqۓX\n!U"', '', 0, '?'),
('Ya:لϭ2', 'wp-content/plugins/elementor/vendor/composer/autoload_real.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_real.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kc.&J}eW', '|\\ՈS|3.=''Z\n@uk', '', 0, '?'),
('YЙiz#OŭIˤ8', 'wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Γa7', 'NYk\\<|ƞ Z8y֝op', '', 0, '?'),
('Y	u@@', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/chosen.jquery.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/chosen.jquery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|I{{', 'Қ\Z?ki=,ANtN+/ ', '', 0, '?'),
('YRbc\0!ͥ', 'wp-content/plugins/code-snippets/js/components/SnippetForm/page/UpgradeDialog.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/page/UpgradeDialog.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UϖΙ\nk', 'J\Z0~ͶZh/S%\Z6.D;', '', 0, '?'),
('Y>$&7', 'wp-content/plugins/code-snippets/dist/editor-themes/base16-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/base16-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%>D~p,J#', 'P\0Iv D;D=K<jl', '', 0, '?'),
('Y\rO>-xdJ', 'wp-content/plugins/elementor/assets/js/counter.12335f45aaa79d244f24.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/counter.12335f45aaa79d244f24.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0`%?*=', 'C~5>hj!/h*ftX]u#fh\nv', '', 0, '?'),
('YJ|[DyY', 'wp-content/plugins/wordfence/waf/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E"xK{8dS', 'C''r9@Kކtw#@k', '', 0, '?'),
('Yx^z,U', 'wp-content/plugins/elementor/includes/widgets/icon.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/icon.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dZvT!֑`8#(', '|@4y7~	ҕ8*ZWkMq', '', 0, '?'),
('Yƥ2}c	''}', 'wp-content/plugins/elementskit-lite/widgets/heading/heading-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/heading-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*"ϑ''=NY?', '|oDS8+KX}9\Z:UU', '', 0, '?'),
('Y]ŞI', 'wp-includes/js/jquery/ui/effect-slide.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-slide.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm8+', 'IF\0a{|''(nJ/c\n-:G9', '', 0, '?'),
('YUL5Jޔv[', 'wp-includes/rest-api/search/class-wp-rest-search-handler.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-search-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' $[wLua', 'ˍ^ ;\0d2Œ43s.~$[Z"', '', 0, '?'),
('YE m$\n\Z,N', 'wp-content/plugins/code-snippets/dist/editor-themes/isotope.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/isotope.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J{͖Ƴ', '$sԤAhB LZLD#', '', 0, '?'),
('Z\0+JB\nR}', 'wp-content/plugins/elementor-pro/modules/payments/classes/stripe-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/classes/stripe-handler.php', 0, '̂fG[', '̂fG[', 'y]a\0(i>膝~A-', '', 0, '?'),
('Z核A@t', 'wp-includes/blocks/search/view.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ft sZ', 't띙8l"êK8@N1gY#x', '', 0, '?'),
('Z	̾>Qks\Z', 'wp-includes/SimplePie/src/File.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~T&\ZROu', '%f*rt1f[8Ttdy(''\0', '', 0, '?'),
('Z	o-Z', 'wp-content/plugins/elementor/assets/js/styleguide-app-initiator.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app-initiator.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/\r$يk3F', 'T\Z-V]ץ6&A l#', '', 0, '?'),
('Z\rdWKrg!te܈', 'wp-content/plugins/elementor/core/common/modules/finder/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qs=_nUYQJߏ', '\rxI	j%=9PU\rx6]z0yY', '', 0, '?'),
('Z1޵)=4^t', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformer-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformer-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '05eZ%OX|', ',\0PefWSEzu', '', 0, '?'),
('Z)?vz0F', 'wp-content/plugins/elementor/modules/usage/usage-reporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/usage/usage-reporter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~#mR\0(', 'Ea:{''Nнe˦', '', 0, '?'),
('Z4<n?e', 'wp-content/plugins/wordfence/lib/wfConfig.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfConfig.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\raAb', '{گX7o\\TPN4MB', '', 0, '?'),
('Z8z=Q~qV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dreamweaver.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dreamweaver.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SʈG(', 'K";ѱb(2EEJZG,uQEZ', '', 0, '?'),
('Z9}.Jk=', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8I\Z\nӣ', 'i>zR@kW6uky', '', 0, '?'),
('Z=`''{', 'wp-content/plugins/elementor/modules/promotions/promotion-data.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/promotion-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[îg4v2', 'R''>Tp|&kΪ\r:it!C	', '', 0, '?'),
('ZAPz', 'wp-includes/blocks/pullquote/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YcYl[', 'fn:+ug{kLq_KX', '', 0, '?'),
('ZD:-h${ma', 'wp-content/plugins/wordfence/images/sort_desc.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?զ)X?N', 'bEԚB#:(#=_(\Z|U#', '', 0, '?'),
('ZOd,\\\\ք', 'wp-content/plugins/code-snippets/js/types/wp/Term.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/Term.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',;p\rlb', 'T8Pt[pIs*(', '', 0, '?'),
('ZdkLşT', 'wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't5<7^Anr', 'k+QȺF4/rĳXj5', '', 0, '?'),
('Zu%=,#ǘ', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-translatepress-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-translatepress-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+\0F#l6r', 'BnS׵͋ڽ''_*C⒚cC', '', 0, '?'),
('Zx12KZ,', 'wp-includes/customize/class-wp-customize-header-image-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-header-image-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6+n\rS5X"', 'w,''ݑIVPXg\0', '', 0, '?'),
('Z~w/͇1ЅE', 'wp-content/plugins/code-snippets/js/types/Window.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/Window.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '["&Q-E:', 'vz@sx46-0%U@@3~FBP', '', 0, '?'),
('Z2@@`V;ՠ!', 'wp-content/plugins/elementor/modules/promotions/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N=\n0M8b', ';P\ZY4V>9BDrػ2&6	', '', 0, '?'),
('Z0s{\0GtZ', 'wp-includes/blocks/categories/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm!^̻lPâ', 'r)aӞhut׋\0+Ua', '', 0, '?'),
('ZUWoA', 'wp-includes/blocks/accordion-item/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']?2fMc&', '	6\\=8HgPI[\\4', '', 0, '?'),
('ZuBIY', 'wp-content/plugins/elementor/includes/shapes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/shapes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+?AK|j$jL', 'K?,\0O#c_uMV6Z', '', 0, '?'),
('Z\n@;o\\\\', 'wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':H''WŤF', 'U?\\M_,(G23AĠ5w\\', '', 0, '?'),
('Z_"~J', 'wp-includes/js/wp-custom-header.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-custom-header.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g,ﶸU', 'W#iԽMǟv(Q\rRC', '', 0, '?'),
('Z$>FZ9q[', 'wp-content/plugins/wp-optimize/js/wposmush-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wposmush-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2sƸ>Q[p', '	klmeQlH)$Omw<MiX', '', 0, '?'),
('ZяݒS', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l\Z^ZHG%O', 'mc;\ny㐲0,5F|=C', '', 0, '?'),
('Z.n^/Ӄ"*T', 'wp-includes/blocks/math/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k~댵kRtW|', '`C>Iԉg&}M\\<#\n', '', 0, '?'),
('Z %/Zz9', 'wp-admin/includes/taxonomy.php', '/home/binawebp/omsrislb.my/wp-admin/includes/taxonomy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-lw7A', '$2%\r\rKE|H>	', '', 0, '?'),
('Z\0Y æfg', 'wp-includes/js/crop/marqueeVert.gif', '/home/binawebp/omsrislb.my/wp-includes/js/crop/marqueeVert.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\09R', 'Kcg$e2\\p$1z`CkJ', '', 0, '?'),
('Z3X*Sd\0', 'wp-content/plugins/elementor/includes/embed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/embed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Of0lt%4', '$O$&z4h_aa5K\r', '', 0, '?'),
('Z먄qף0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '94x i', '\0Z?*Սޔb>{\0&f', '', 0, '?'),
('Z[,C\Z', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php', 0, 'җ-Dj0\nPL&\rg', 'җ-Dj0\nPL&\rg', '\Z[k$$Pq~	2=W{', '', 0, '?'),
('ZÆ8\Zf', 'wp-content/plugins/elementor/assets/css/app-base-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' [+vz y40', '`IEqn}rT˧?ַ@-x', '', 0, '?'),
('Zg?HHE=Sg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/disclamer.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/disclamer.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{MѷdϦ', '	>5n|}(z?W)jTcͩ&Ծ', '', 0, '?'),
('Z̥3,^CxTt', 'wp-content/plugins/elementor/assets/shapes/triangle.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lpʛ/57=', '{vHKGA F^G2', '', 0, '?'),
('Z\ZEڨ_.', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ɂ\rph.', '<uuHHs9GmH c`PVf kB@aG', '', 0, '?'),
('Z㥰_uҦk', 'wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nݱB^^4R', 'OjoxWߦd+Lĳ*', '', 0, '?'),
('Z*Է!"E\Z@', 'wp-includes/blocks/pullquote/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7^,m"-v', '++(x[iALF=h5&}`z', '', 0, '?'),
('ZRr(&b:-', 'wp-includes/css/dist/format-library/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' \nӔCb', 'Fc6X}t_Tնi-8~܁zX', '', 0, '?'),
('Z;LDmL', 'wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('Z=ӧrc"y', 'wp-includes/IXR/class-IXR-date.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IVdB+AJ?#', '{~(#\Z6u,?jk2`', '', 0, '?'),
('[hBxa):n', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/current-date-time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/current-date-time.php', 0, 'K?lngofe', 'K?lngofe', '81w&\Z/\n;cN:eu!', '', 0, '?'),
('[_[+ekb', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Colors.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Colors.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}}}Q$o', '냍3lB{Rz5`̱\\O̘', '', 0, '?'),
('[8E=1$', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6\ZJC-SZD', 'َ"P`h(R)󬀇X&$', '', 0, '?'),
('[Gea''i', 'wp-includes/js/jquery/ui/datepicker.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/datepicker.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':<R', ':*aD֬b&W/rBpm\\5{7Vl', '', 0, '?'),
('[hFZ,0', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-test-run.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-test-run.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h9j\0Y<x', 'F$!''QzGwϸ1lXn@\nRy{i', '', 0, '?'),
('[c]E0S!', 'wp-content/plugins/code-snippets/php/uninstall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/uninstall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/PDP)', '$w.ɬ0y#0Z~ăU', '', 0, '?'),
('[#p4F>m!', 'wp-content/plugins/elementor/assets/css/widget-rating-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-rating-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't\r*PX', '&gOdnµuV? v\rк4', '', 0, '?'),
('[(WcG', 'wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XWbK8i', '.775OnmgLI/we', '', 0, '?'),
('[1Xj]Ȋv', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';꘴@\nW', 'Jt-	\Z׮vG)E+*d<Q', '', 0, '?'),
('[5YNhKM', 'wp-includes/customize/class-wp-widget-area-customize-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-widget-area-customize-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T:''l),6P\Z', 'rH]yEwF/[0Z3["', '', 0, '?'),
('[9ڥjQփ;', 'wp-includes/SimplePie/library/SimplePie/Author.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Author.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	[v=GA2r', 'UF,O;7Y5V>Oڏj\r{7', '', 0, '?'),
('[9J=\nuE\0O\n\\P', 'wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'κ2}', '[,<XYyy~EJZ?6\r~ש', '', 0, '?'),
('[<1<ӟR', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '퉏F_ERw6', 'ŦM\\-|ߤʄ~$ӥr0ݼ', '', 0, '?'),
('[=YwK=', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__construct.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__construct.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2^{4Xv', 'D{@_țD$9A44ԏ', '', 0, '?'),
('[D/9uS''	en', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Η@PS+U$', 'O}]`j˃ѩC2iq.W', '', 0, '?'),
('[FY\n@d#b', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/CHANGELOG.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/CHANGELOG.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y8^e`{', ';^,s0.:V`', '', 0, '?'),
('[G]~$*2EX', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/TargetNotFoundException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/TargetNotFoundException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')SGagV', '|''_PCz,F{Sf2=', '', 0, '?'),
('[cç/Ķ\\FN_', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',M59/Dhh', 'G,Z`z2K9zR?:C4', '', 0, '?'),
('[f);snؐE', 'wp-content/plugins/wp-optimize/images/notices/sale_spring_24.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_spring_24.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '嫉;X]:\0q', 'N1c#>~ͳd+X];j87?', '', 0, '?'),
('[viph\\:', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-image.php', 0, ',@b!n/~D', ',@b!n/~D', '4a9G!Au#V}WjU', '', 0, '?'),
('[~jKX9_', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iVebP''d', 'I\\G6P>9AAɜ9=CץZ\r', '', 0, '?'),
('[<< Gvh', 'wp-admin/images/about-release-logo.svg', '/home/binawebp/omsrislb.my/wp-admin/images/about-release-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'odUvϼ"dO>', ' eN3@u<5\\Zt7iL', '', 0, '?'),
('[#ܧ\Z>]<', 'wp-admin/css/colors/ectoplasm/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\Sśm~£x', '\ZVa$h7hez8F?ܣO', '', 0, '?'),
('[>x;wn/tH', 'wp-includes/js/wp-emoji.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';b\Z', 'FW7ԩ*˾`-m|"	', '', 0, '?'),
('[CfYP', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' NO\r0"', 'oXTU\0k|e$&Lxhͽ\\OQh', '', 0, '?'),
('[J`X', 'wp-content/plugins/elementor/core/kits/documents/tabs/global-typography.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/global-typography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_]"E:', 'T/{l֋"]d7Xs\r1%$ܸ', '', 0, '?'),
('[xY}l}', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('[X_0+z', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/AbstractExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/AbstractExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U\r\Z/Il#^2', 'M_4 z:KZ^,', '', 0, '?'),
('[iH#$4V', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c3:U"Ov', '}&,$,[o1>oAJҝ>', '', 0, '?'),
('[A0b[BG', 'wp-content/plugins/wordfence/images/logos/shield-free.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-free.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm3k#^\Z\Z+W', 'Lmd1a ףM\\m(#p^1M', '', 0, '?'),
('[BX\nQc', 'wp-includes/blocks/file/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˚NtHRН6', '''yu2:ue2?1dc6t	 ', '', 0, '?'),
('[̖"ۼ5s,', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\BAi', 'Z\Zi05Nͺ-\\>o;B<z', '', 0, '?'),
('[ӽ$qjg_5', 'wp-includes/css/dist/block-library/editor-elements.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vHօ<Uj+@T', 'VLb4dopwXK', '', 0, '?'),
('[q,', 'wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's#L-؂q4Z', '{\0;\Z	5C|L(tI', '', 0, '?'),
('[c`I)"', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-stock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-stock.php', 0, '\r1@)"ZDe', '\r1@)"ZDe', 'qz6oLg}	)gPǍ7', '', 0, '?'),
('[h+NR/<08R', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_bf3030_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_bf3030_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eaj_gi(', ',B\Z=D3o# Z5E!', '', 0, '?'),
('[ꠏ|Koیb7', 'wp-admin/user/index.php', '/home/binawebp/omsrislb.my/wp-admin/user/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xCS6LC2!u', '`Ky2Mplξ"a\0אּtޡD', '', 0, '?'),
('[PSD,Z|7', 'wp-content/plugins/code-snippets/dist/editor-themes/solarized.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/solarized.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cV''anRM', 'O''،Bw[SY57#"', '', 0, '?'),
('[<ےRa*2', 'wp-content/plugins/elementor/includes/widgets/video.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/video.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RHqzʿ<i', 'VjnB#pfXoI𓣹r4W	\\', '', 0, '?'),
('\\%?>e8', 'wp-includes/class-wp-block-pattern-categories-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-pattern-categories-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Be|B', '}%*jAu!ךJXXhv>ٸ>', '', 0, '?'),
('\\9', 'wp-admin/ms-upgrade-network.php', '/home/binawebp/omsrislb.my/wp-admin/ms-upgrade-network.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qc8E%!', '	H_cQX̤ՏLsڭ', '', 0, '?'),
('\\P*''', 'wp-content/plugins/elementor/core/responsive/files/frontend.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/responsive/files/frontend.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\1:$ymRU&)', 'o+r)S]}	ܥ#4@,REz;~', '', 0, '?'),
('\\%Lulgj/', 'wp-content/plugins/elementor-pro/modules/blockquote/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/blockquote/module.php', 0, 'ҧS:Q];E', 'ҧS:Q];E', 'e\0\0\ZYd\n9StGxlY[`', '', 0, '?'),
('\\-l8%ʤK', 'wp-content/plugins/wordfence/js/jquery.tmpl.min.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.tmpl.min.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\}"7ڷDZ', '.IH\Zg\0H!7`gޠZzȄž6|', '', 0, '?'),
('\\4qn7}b2)y@', 'wp-includes/blocks/comment-date/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[nB}\Z9>?', '#$Et''UA3Pss*3\\?V\r', '', 0, '?'),
('\\=i*%6;', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\06m4', '3yUFivdHț,3[*''', '', 0, '?'),
('\\Dn%x7rU', 'wp-content/plugins/elementor/assets/js/floating-elements-modal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-elements-modal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ϋ4˕,', 'lx`<''#}S?J\Z5', '', 0, '?'),
('\\ELJ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NX#OTq', '*2HDѿ()/(''c\0đY', '', 0, '?'),
('\\Fv)o:R', 'wp-content/plugins/code-snippets/js/utils/Linter.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/Linter.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N&\r$\\', '~>Nhz{gP*Ӆ+[', '', 0, '?'),
('\\H:u3%Fw', 'wp-content/plugins/wordfence/views/waf/waf-install-success.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-install-success.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't2H$\n', '5(/PhJSZ"&]}rIp(-t', '', 0, '?'),
('\\L}Y~la', 'wp-includes/blocks/gallery/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3JDFĭ~2?', 'kRELMX]lf,*hOI{', '', 0, '?'),
('\\R$GO΄y', 'wp-includes/css/dist/block-editor/default-editor-styles.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(团', 'AoÙ#XC.ioM~0-l', '', 0, '?'),
('\\[i%Ͱ<e>', 'wp-includes/css/wp-pointer-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '޴y9YrQ', 'lۍ:p\nrA|%D\Zʩ&ڄJ', '', 0, '?'),
('\\gP7(U', 'wp-content/plugins/elementor/core/base/document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/document.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%8Zt\n)l', 'qt	8h2PКgη"uTl', '', 0, '?'),
('\\t2HhY*A~ٯ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܪ&0', '*.S0N7Z''	X9ￔGz*', '', 0, '?'),
('\\wNY>s\n', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/image-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/image-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i䪱&zJ', 'Ihcw)gArƟ0+`', '', 0, '?'),
('\\y+IǢѠ,@S', 'wp-content/plugins/elementor/includes/controls/font.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/font.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i]rYINs\r{', 'G:5;\n)a@ K1n<E', '', 0, '?'),
('\\}Q@qf', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/archive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/archive.php', 0, 'q>eum\r֗', 'q>eum\r֗', 'u*UcG囄S)縲nYCm0', '', 0, '?'),
('\\7Qo', 'wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|%;wQ8@', 'wi>6Ƭ4.NC\Z4IO', '', 0, '?'),
('\\adT@.', 'wp-content/plugins/elementor/includes/widgets/icon-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/icon-box.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۀPxcYr[\0', '$!xP屆ȝ\0}n""PN', '', 0, '?'),
('\\5L+s-', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e}D E', 'IYպ{7 a" jhEG~a愣=', '', 0, '?'),
('\\т?$̈́8', 'wp-admin/includes/dashboard.php', '/home/binawebp/omsrislb.my/wp-admin/includes/dashboard.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hm2;iS@ʒ]', 'lOW`''炟2.`"zJ<', '', 0, '?'),
('\\F''g+|"''', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4tI', 'ɏ<کZz0bkqn]', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('\\iosB9c', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceIterator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceIterator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 6)', '34B\\m=|}LL8ޏcd', '', 0, '?'),
('\\U~ɺſ(P', 'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js', 0, '+<IUpe', '+<IUpe', 'rlÎ&h1OysͺS', '', 0, '?'),
('\\\0>+Fb', 'wp-admin/revision.php', '/home/binawebp/omsrislb.my/wp-admin/revision.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2as6IQUġ', 'gCzsQVƢ]wq\n9챞e', '', 0, '?'),
('\\MSA\Z', 'wp-includes/blocks/term-template/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fYk2h0 Xn', 'j.:O((>I-@Gt', '', 0, '?'),
('\\L\rni', 'wp-includes/blocks/template-part/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[\Zu7 ', '%F.R8c@BLHg#YS	', '', 0, '?'),
('\\͗БUe:)', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}t?δ', 'i+9C 1		-1lp\rm', '', 0, '?'),
(']Tc7tSf', 'wp-content/plugins/wp-optimize/webp/class-wpo-htaccess-capabilities.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-htaccess-capabilities.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vAK{Oي}eC,Z', '}aݟ;`[Yc=Pa׹', '', 0, '?'),
(']P%A9L', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreContent.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreContent.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e~\0ē;^I', 'bXLЖNgcOy-q', '', 0, '?'),
(']J*ƒXRE', 'wp-includes/block-supports/dimensions.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/dimensions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uz/\Z;n''zQF', ':a.9=}`|nܽi{BWAhKL', '', 0, '?'),
(']4j^wˌ', 'wp-content/plugins/elementor/core/dynamic-tags/data-tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/data-tag.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!laeNP5{', '\Zh%\r{}Ѽ>M8<]ӻ(', '', 0, '?'),
(']jћlݥ', 'wp-content/plugins/wordfence/lib/wfCommonPasswords.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCommonPasswords.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n0e3DV)VE', 'w3)HOfM+w\\', '', 0, '?'),
(']	>!c<;S', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	l#Y^=u', 'r=X,lU*F] ZQ[6qф', '', 0, '?'),
('](R&!1;3', 'wp-includes/js/wp-ajax-response.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-ajax-response.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T`6Gf2(&\r', '\\''֠#/%z;^Wt)F', '', 0, '?'),
(']/vx|u!ͷ', 'wp-content/plugins/wordfence/css/jquery-ui.min.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui.min.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}O^0tGGQ', 'ٍ$rb=phxK5]8QRjn4', '', 0, '?'),
(']5*yI)>9', 'wp-includes/blocks/term-template/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c]^˛v&Sj', 'gP-\n1÷H;K@GJeiJ*r', '', 0, '?'),
('];u+F*vWj\n', 'wp-includes/blocks/post-author-biography/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|,PJpb', 'é~\nmxyDwcC''', '', 0, '?'),
(']B#2zbU/', 'wp-includes/Text/Diff.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Diff.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_UG@8\0h', 'Nk=%	C\\E.ʬS(D', '', 0, '?'),
(']L0eE"u ', 'wp-includes/js/mediaelement/mediaelement-migrate.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-migrate.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q0blz7', ';YR/(v0vsaDy', '', 0, '?'),
(']Ru@#WK', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BIGp8\\&', '\0SY|4|0Կ/I''2e(0x', '', 0, '?'),
(']WBt.y3M', 'wp-content/plugins/elementor/assets/images/app/site-editor/error-404.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/error-404.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '͇P)Ȋf', '.Þ"mrك|]`\\c', '', 0, '?'),
(']Wd<"=', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fؗRQy"]', '&Iiql~ӭ	JmD', '', 0, '?'),
('][>iIZGg!i', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b\0w?a&H', '/JxW#p˃F'';v|2', '', 0, '?'),
(']\\U4)\r|^]', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@6\ZDLP', 'KD~\\_gr];C\Z?', '', 0, '?'),
(']dt<Ma`UǼ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NATpG-An!', '`{Tjp[;<{/N\rww', '', 0, '?'),
(']pXGg%j\0}A', 'wp-content/plugins/elementor-pro/modules/wp-cli/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/module.php', 0, 'bU{U,\nc߱', 'bU{U,\nc߱', 'z_\\V!TZD`@;-pk', '', 0, '?'),
(']tmTϔl]Kk', 'wp-content/plugins/elementor/assets/css/editor.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')C{vcz9G', '	7`E-qc#', '', 0, '?'),
(']~>BIE3', 'wp-content/plugins/code-snippets/js/settings.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/settings.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$U)TԃƬ:ө', 'wHiW:e:<j''7܌͋', '', 0, '?'),
(']ӥfLF', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/combine-array-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/combine-array-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?H9|Ri4M', '̗ȕs0)đ4i8l̫ݜ_', '', 0, '?'),
(']nbx', 'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-query.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-query.php', 0, 'B٭w7Y*CrvS', 'B٭w7Y*CrvS', '84\\#b7QNqe^Ƶ', '', 0, '?'),
(']NJjӎe', 'wp-includes/widgets/class-wp-widget-media.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dLt<', 'L}Kf\\AR ŭ(si{U', '', 0, '?'),
(']qW?][lf', 'wp-content/plugins/elementskit-lite/widgets/accordion/accordion-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/accordion/accordion-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L.=?G&(F', '#si[7dZM)0QBS', '', 0, '?'),
(']A/?\Z^!S', 'wp-content/plugins/elementor-pro/modules/sticky/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/sticky/module.php', 0, '~F$uWiG', '~F$uWiG', ']tֻǒQ3i1~ޚY[1],', '', 0, '?'),
(']>tfdXzyy_(', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{߈i ð', 'ߪѢq:mw"<by y', '', 0, '?'),
(']PTkvt8A', 'wp-admin/network/menu.php', '/home/binawebp/omsrislb.my/wp-admin/network/menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';Čx9@J/', 'y;[>anQ!^y*^\r.},', '', 0, '?'),
(']*J', 'wp-content/plugins/wordfence/images/icons/email_go.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/email_go.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jEH).', '& qC1QU_.O31!&۴', '', 0, '?'),
(']%:;k9vn5', 'wp-includes/css/dist/admin-ui/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k1k;I*', ' f%ڞan7w*ں', '', 0, '?'),
(']"}[YR', 'wp-admin/css/edit-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/edit-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oCِ<4C', '4y33v~ĳU\\\r0Z]n', '', 0, '?'),
(']aDVr0$', 'wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q\\%Jېl[', 'bkiz*sjِ_l)', '', 0, '?'),
(']1WsM_`Zn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_aaaaaa_40x100.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_aaaaaa_40x100.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*Ds`"', 'z[큒r\\˖;5MmMtV', '', 0, '?'),
(']AѨQh=ة', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/multilang-class.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/multilang-class.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڳ\rq39ΌK', '|\Z)''"`z/C-,,i', '', 0, '?'),
(']L&[R', 'wp-includes/blocks/post-content/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B^{V5*M', 'lp[xu?æ\ZKW6dt}1W6oh`', '', 0, '?'),
(']4d9C<s3', 'wp-includes/blocks/video/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',X(yz', '(PLI>."<2ǽ(YR3s9', '', 0, '?'),
('^.Xfˣ)L', 'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '89"zzVv*]', 'ۆ%%l:Jf<bqPPt˯}ߝ"f', '', 0, '?'),
('^3T5&', 'wp-content/plugins/elementor/assets/images/a-default-svg.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/a-default-svg.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r-I]HGr.Ik', 'FX+M\r5#FY(;+M<ᅈO', '', 0, '?'),
('^9(-(Ųy 0q*', 'wp-admin/user/about.php', '/home/binawebp/omsrislb.my/wp-admin/user/about.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!N 93nDl', 'rR89<;9i1lZQoC#Y', '', 0, '?'),
('^@ղ{''_92', 'wp-admin/upgrade-functions.php', '/home/binawebp/omsrislb.my/wp-admin/upgrade-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[a@1.QZ', 'tˁ9{/yg1''uVl', '', 0, '?'),
('^E1Z~@,ϫfC', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/apache_conf.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/apache_conf.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-c9+_', '3D*4bY(,Rfw*wf[kg%z', '', 0, '?'),
('^H\0B|4@z', 'wp-includes/IXR/class-IXR-error.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-error.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g6"u\\''3b', '*?ۧU=?,]0=CZ-6Dq.G', '', 0, '?'),
('^U.iypG', 'wp-includes/js/mediaelement/mediaelementplayer-legacy.css', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer-legacy.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AVtFƣ', '2q{Y*lX[qkd}Jp', '', 0, '?'),
('^VXJdS?''|v', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+aN)ᬨ+/Nl', 'wLoLeyEF(Hs\r', '', 0, '?'),
('^d0vx', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y`?:c', 'o 1P,>ygtn', '', 0, '?'),
('^rv>ˁSo', 'wp-content/plugins/elementskit-lite/widgets/team/parts/social-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/team/parts/social-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WsGe', 'є&OԻK@i', '', 0, '?'),
('^yG=ڜFg;3á', 'wp-content/plugins/wordfence/images/button-grad-grey.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/button-grad-grey.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RCTy?', 'DH~ϨP_{!', '', 0, '?'),
('^y	{k,$"9^', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/yaml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/yaml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W]PԽ7\nٰ', 'TVx>Dk1ΩgF^D', '', 0, '?'),
('^}">\rF5s', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/YUICompressor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/YUICompressor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sg[?', ')۵\r{}6(\0Y', '', 0, '?'),
('^Ð+y|', 'wp-includes/images/crystal/spreadsheet.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/spreadsheet.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '59Т1Tn', 'e\rCi0[R8@GaJN', '', 0, '?'),
('^m)`P#s$Hȁ', 'wp-content/plugins/wp-optimize/images/notices/sale_20.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_20.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S^T#j灆\\', '.T)ya,s倕X[sYZv', '', 0, '?'),
('^Czs1}-', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/elementor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/elementor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BNGd?p@t', 'J-ie&MiQ\0qUuU~pv/', '', 0, '?'),
('^A^gw\0I', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I''&!W0X4SW', '79b<056ZC', '', 0, '?'),
('^YKbF2TT-', 'wp-includes/blocks/avatar/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*(\ZIz', 'e2,ՔenCL]s+', '', 0, '?'),
('^T_[$Z{pK', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive.php', 0, 'hɻ=ܐs', 'hɻ=ܐs', ')gg;iC)@ic^0t1', '', 0, '?'),
('^ݰIެ\\-A}', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y2(fƮ{~?,', 'AC9Y5&N!P@k', '', 0, '?'),
('^۸HYѪ)_', 'wp-content/plugins/wp-optimize/templates/images/dimensions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/dimensions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GBՁץ4o', '_>>*-N}541\rǛc8', '', 0, '?'),
('^+x|UhMM', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z*O|L &i', '3nA]6L4ܭ}VhX[U׍7*n', '', 0, '?'),
('^uuWdM=', 'wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z=Eo0[', 'm?\Z"g=0N"Q`u''~I', '', 0, '?'),
('^\rigE?֐', 'wp-content/plugins/elementor-pro/assets/js/gallery.1573e391054ea0977a1f.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/gallery.1573e391054ea0977a1f.bundle.js', 0, 'Ӏuhz', 'Ӏuhz', 'XBF\0"i	gU\0@~F', '', 0, '?'),
('^OQ8(', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ParentExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ParentExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n@O\05r˸~?2', ')hblJIHy4+Z\nd;', '', 0, '?'),
('^^\\Q=(w', 'wp-includes/js/imagesloaded.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/imagesloaded.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h#vɯȒɦC', 'Ij+V`) P3J("xR`', '', 0, '?'),
('^EàV&vrV', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/index.php', 0, 'QFVc~1Zp', 'QFVc~1Zp', 'rqvzJLE?/ BHEfM܅(', '', 0, '?'),
('^JdcU+~', 'wp-content/plugins/wordfence/lib/wfScanFile.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}Nv$>', ':<QM7٧F&g\\F]|t', '', 0, '?'),
('^0ޕ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M@ggXxx2', '9|a{R`;'':":/x', '', 0, '?'),
('_\0d MP~D', 'wp-includes/revision.php', '/home/binawebp/omsrislb.my/wp-includes/revision.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D7nĠ_\rU);', 'pkO+0c:rUK', '', 0, '?'),
('_k4!*}݄ ', 'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/ClassLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"UE"Eb;Dn', 'ԱrgCXJU1։Ya,1', '', 0, '?'),
('_*⽞L0>\r', 'wp-includes/feed-rss2.php', '/home/binawebp/omsrislb.my/wp-includes/feed-rss2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lN+5	O?', '@!`C*Mezj@	@Ljw', '', 0, '?'),
('_#U1pGS', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zrtw(e', 'ҿDI<^i2dW]G_-+A8W', '', 0, '?'),
('_Jļ?<k	Yb/\0', 'wp-includes/blocks/comment-author-name/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3\\IFfyLZ', '=NI9\0:#$ynq', '', 0, '?'),
('_d1@_9,p', 'wp-includes/blocks/tag-cloud/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uʧ', 'D.S\Z㺾A.6+', '', 0, '?'),
('_j_/yӱ', 'wp-includes/load.php', '/home/binawebp/omsrislb.my/wp-includes/load.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"*0*95', '[+V!OʊٌwƲrR?l', '', 0, '?'),
('_ooE$\Z9dWa@', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WU觻I', '9<ZR1ðMGwF?s''3', '', 0, '?'),
('_w''JS6', 'wp-includes/blocks/gallery/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ދl>nqyW', 'ɹa߿Kۘn͓+nb', '', 0, '?'),
('_~ysR4.֓k@', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Āb$<JE"8B', 'j4PWcP_M!7u', '', 0, '?'),
('_}ËJqm_#Ls*', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8*|''Ez[HV', '@$v[+%;5OAD9ɹ$n', '', 0, '?'),
('_KNe1H', 'wp-content/themes/twentytwentythree/patterns/footer-default.php', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/footer-default.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|xkG>ޭ', 'z~x{}9.ж^(e', '', 0, '?'),
('_>Ef', 'wp-content/plugins/elementor/core/page-assets/data-managers/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ՖTU\rOoy)', 'p,"!8`#3y\r5-k', '', 0, '?'),
('_rŵ@E\\', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v,}%ņ', 'BxW=UwuL*`5x7', '', 0, '?'),
('_=gM', 'wp-content/plugins/elementor/assets/mask-shapes/circle.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/circle.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bO9', 'Z`v3M(\rQ+Uh4,', '', 0, '?'),
('_biQ!A2', 'wp-content/plugins/code-snippets/dist/editor-themes/vibrant-ink.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/vibrant-ink.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '20x-;DI', '>8ҟo!^9pOyS#', '', 0, '?'),
('_L''!P{q O*', 'wp-content/plugins/wp-optimize/templates/database/settings-general.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/settings-general.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c\\kq@R$', 'BO?JP4L)REZ\\', '', 0, '?'),
('_Ș^+;h~', 'wp-content/plugins/elementor/vendor_prefixed/twig/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6Y.e"H6\\', 'ʙȶ|AcnHLo0otQ', '', 0, '?'),
('_1Q4XT', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{z\\USj', '²$qj\nl/\0RF>4I''', '', 0, '?'),
('_*IgPiՀn', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/clear.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/clear.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GevMNi3Қ', '^+eX@,UkB6YA', '', 0, '?'),
('_<* D', 'wp-includes/Requests/src/Exception/Http/Status503.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status503.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7Ϸ\r|;%', '^J9$ Ň\n"]k[qN', '', 0, '?'),
('_Ҕ#_T', 'wp-content/plugins/elementor/assets/js/admin-top-bar.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-top-bar.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';󭨙Vڟ_', '3u;Z%UEx7^K(e|;', '', 0, '?'),
('_|R:`֥\r', 'wp-content/plugins/wp-optimize/templates/minify/cached-file-log.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/cached-file-log.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cyt^BB#,', 'ςv\\ah~0h	<gۛ[ ', '', 0, '?'),
('_|TM^J', 'wp-includes/css/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ͬeckV', 'q7脙;Ģ3d+', '', 0, '?'),
('_43=', 'wp-includes/images/uploader-icons.png', '/home/binawebp/omsrislb.my/wp-includes/images/uploader-icons.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\Mm', 'p+/i!Zţ6m', '', 0, '?'),
('_(CM69', 'wp-admin/includes/class-wp-links-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-links-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dbK\06Zwp*-', '=ZwoS"C͒RIVPN?', '', 0, '?'),
('_8}?', 'wp-includes/css/media-views-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/media-views-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-Fe\r(RG,', 'u]wr4q`P9?bXXetaSB', '', 0, '?'),
('_2oUE6', 'wp-includes/blocks/query-pagination-next.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-next.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\"xFXC:3V', '(gPiŪeOhJ8qHZYy', '', 0, '?'),
('_psw', 'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'χ$ ''q;+', 'M*lOq@q+N@Β', '', 0, '?'),
('`\0WLH&', 'wp-includes/blocks/query-title/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']l¥ˀ3', 'd"Q٥[Rf?а-[1#xr,md\r_', '', 0, '?'),
('`"g@[', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kQXoC', 'c\n\n	Cl\Z]IMxp', '', 0, '?'),
('`\rwp8r׵', 'wp-includes/SimplePie/src/Copyright.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Copyright.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	5퍞T>\r"', 'J=Govi}/:S4yK\rO', '', 0, '?'),
('`vGE_|j', 'wp-content/plugins/code-snippets/dist/edit.js', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'moW|[', 'Hy.Q\Z0*]yx!1!', '', 0, '?'),
('`S`NI^G', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(i@Gg0p', 'G</14ŅL5!', '', 0, '?'),
('`%ֽj''P', 'wp-admin/js/edit-comments.js', '/home/binawebp/omsrislb.my/wp-admin/js/edit-comments.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H?/)', 'K_ruM4ʽWFAn', '', 0, '?'),
('`,,<3Z9g໾', 'wp-content/plugins/elementor-pro/core/compatibility/compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/compatibility/compatibility.php', 0, '0<*}\r&?k', '0<*}\r&?k', '%Ttdw\Zv<`X\rf', '', 0, '?'),
('`17\\*g', 'wp-content/plugins/elementor/modules/system-info/templates/raw.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/templates/raw.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7TX1WV', '5Uܺ%27c$8w\\', '', 0, '?'),
('`<\r\ZJ#J', 'wp-content/plugins/code-snippets/js/mce.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/mce.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1Lc";OJ', '[jJ*p78"Ώ>7', '', 0, '?'),
('`?Cf\r', 'wp-content/plugins/elementor/assets/shapes/triangle-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G`xHC\08`E', '=Yk303U}i', '', 0, '?'),
('`AM\rDS', 'wp-content/plugins/elementor/modules/home/transformations/create-new-page-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/create-new-page-url.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>4emﵴ\n', '3~4xc1TY:sjJ!HjE', '', 0, '?'),
('`Bd3 Cj3n', 'wp-includes/blocks/verse/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v<_55ڬQ785', '+.D[7 U=aI-H\0w', '', 0, '?'),
('`H4+Ar', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('`JeIս|	', 'wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?Ʌs[gTk', 'o	6vzxABbN/\0D.!', '', 0, '?'),
('`KQZ7:]c+-G', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionValueException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionValueException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>Ϭ,g` ?', '	=oirZ׀>`s-ibUXtOb%', '', 0, '?'),
('`g_\\#hY3''', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lua.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lua.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H\0ME=&ө', '/Y	ˁqxǛfrS95', '', 0, '?'),
('`hu[Ǯ', 'wp-content/plugins/elementor/assets/js/editor-modules.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-modules.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɈwIuUB', '`J''ސ?oKV}d%uW(', '', 0, '?'),
('`oٴT&\n''|{a', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '604', 'j~{Ke=^("~e''L5iʲlEG', '', 0, '?'),
('`kV|E>x5', 'wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js', 0, 'd\0>R}*RX', 'd\0>R}*RX', 'fCc3z^qEیe*Ծ.+5y^', '', 0, '?'),
('`N2EﾮpC', 'wp-admin/images/privacy.svg', '/home/binawebp/omsrislb.my/wp-admin/images/privacy.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Po%фCu', '!éoTu5HF#&HhV~', '', 0, '?'),
('`\n2', 'wp-admin/css/code-editor-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/code-editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VDBQVgF', 'w86=ݔ2\rD%VE5S	T', '', 0, '?'),
('`"٣3]|', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sku.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sku.php', 0, '6s!0|', '6s!0|', 'oMS\r=PRFj', '', 0, '?'),
('`YĹ|sjs', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K`7v͓mN', '\r>ޱV:oѭ=uw>e9', '', 0, '?'),
('`mv''WFٞ8', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-svg/atomic-svg.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-svg/atomic-svg.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O%gWU:d', '߹(#Ѵ,neL-C$6Փ\0', '', 0, '?'),
('`a(g"', 'wp-includes/js/dist/html-entities.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/html-entities.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|}qΈ5', 'S''9J_`Kixh7', '', 0, '?'),
('`bGY!ǱӉ"', 'wp-content/plugins/elementor/core/common/modules/finder/categories-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' iٳ.', '}\0{gXu3m%q+Qc<', '', 0, '?'),
('`:³Y', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/AutoQualityTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/AutoQualityTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uKFbf''r}W', '0}*ncC9#WJl=', '', 0, '?'),
('`c0\\3', 'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QD2jFD*.eq', '5r]$1䘦\0jfFD\0t%gq', '', 0, '?'),
('`467׳eU', 'wp-content/plugins/elementskit-lite/modules/megamenu/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ug0%@', 'Y%ISxŻS\Z# 5rB', '', 0, '?'),
('`цH.g)I8', 'wp-content/plugins/elementor/data/v2/base/processor/after.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/processor/after.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JG1dʌ\\\rF', 'sٌ~Lv^䴤>>׊N_Ӥf@r', '', 0, '?'),
('`ooZW8`', 'wp-includes/js/dist/preferences.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4\nPG9QWsǝ', 'Gv\rR8}zOд#4vRc	', '', 0, '?'),
('`w1*Q `1C', 'wp-content/plugins/elementor-pro/core/integrations/actions/email/email.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/email/email.php', 0, 'ÒX	', 'ÒX	', '삆d;z\r2Д4`f2:euvi', '', 0, '?'),
('`޻''tRy4', 'wp-content/plugins/code-snippets/js/components/common/Button.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/common/Button.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RV	C+)', 'Q3k|LΣ]|RK1$1sY4', '', 0, '?'),
('`⇵\r4WSa,', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdkit-frame.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdkit-frame.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uyͫ!4Lzn', '` [eCip&v; _OW{ZC6Q', '', 0, '?'),
('`4(CR;AI''', 'wp-content/plugins/elementor/core/editor/loader/v2/templates/editor-body-v2-view.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/templates/editor-body-v2-view.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vu\rDj,21', 'thmmhTyۉLB	yNE', '', 0, '?'),
('`l=%|&', 'wp-content/plugins/elementor/modules/nested-elements/base/widget-nested-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-elements/base/widget-nested-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{(=(o', '8ڂ«6yul5d{', '', 0, '?'),
('`;"-+~;', 'wp-includes/js/tinymce/plugins/media/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/media/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#@,4dGM', 'XHx0֍X\ZOG|{F2', '', 0, '?'),
('`}+6L-q[$', 'wp-includes/sodium_compat/src/Core32/Util.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1`0', 'qƖ%/ygrwÛ\rLR>=Y', '', 0, '?'),
('`U2mdW', 'wp-includes/class-wp-customize-nav-menus.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-nav-menus.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c.	մޮ', 'GZSj։\0P]O|lB', '', 0, '?'),
('aYҨpd', 'wp-content/plugins/elementskit-lite/widgets/piechart/piechart.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/piechart/piechart.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e*A)Ꜻd', ')mČ3v볆9.I!(h', '', 0, '?'),
('a)6ю', 'wp-includes/js/plupload/moxie.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/moxie.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ض\ZV~(', 'k`\0rG>Pv3>.H@-', '', 0, '?'),
('a3+DݔtHpZ', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ResolverDispatcher.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ResolverDispatcher.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H[2#]\Z9', 'DZW$흋+b8M\nN((D', '', 0, '?'),
('a$S/(>''-', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Markup.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Markup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x\n۳;+', 'y	?T^cN1%|N/', '', 0, '?'),
('a)TMWOoQ|', 'wp-admin/images/media-button.png', '/home/binawebp/omsrislb.my/wp-admin/images/media-button.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6@pz^ye', '_\ZSjזY VZGen_', '', 0, '?'),
('a3Y', 'wp-content/plugins/elementor-pro/modules/forms/fields/date.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/date.php', 0, 'U7yъ3y', 'U7yъ3y', 'W9aLp>.N[\r-~b$2_', '', 0, '?'),
('a5e/}', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i:⾪X"', 'zI{YoY0-XK_?8*;', '', 0, '?'),
('a5tmȭ~', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceChain.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceChain.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''Kv;', 'LͪLlCɒAx', '', 0, '?'),
('aB.pU}!', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H Yةc', '5ldX+yņ1', '', 0, '?'),
('aNAI`HX\r.k$', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NameExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NameExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*َNdSQ', '9*蕾0+q꒸QgDU"]*S', '', 0, '?'),
('aZOf\nz}3	PSa', 'wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.967db65f6ba460c1f2e9.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.967db65f6ba460c1f2e9.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q?oˡp?/)', 'ϳpy@XXF҉*=o%x', '', 0, '?'),
('a\\c,I"5T#̋', 'wp-admin/images/media-button-music.gif', '/home/binawebp/omsrislb.my/wp-admin/images/media-button-music.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9 M\n5E', 'x"0$!H]', '', 0, '?'),
('a^OZ@&";', 'wp-includes/css/dist/block-library/elements-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0YpU', ')m.~yw`@ycZB', '', 0, '?'),
('ab*~gyy', 'wp-includes/block-supports/position.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/position.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P|⪭w$JD', 'ufUCq$qx+0l!26fX', '', 0, '?'),
('agOIK1އ.\ngB', 'wp-includes/blocks/navigation/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' "d"QhV', 'ݒbtoO@~YC	uB{]#?:\0S', '', 0, '?'),
('alν(y\0HcR"', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gOP҇č', '~8 ir\nPp\n25DahBzP', '', 0, '?'),
('ane\Z-g6i%', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-data-sender.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-data-sender.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm|~ʝ', 'Y̎0yK:B7lNeq^h', '', 0, '?'),
('a Ǯex', 'wp-content/plugins/elementor/assets/js/0d1a75a41cae2a76432a.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/0d1a75a41cae2a76432a.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E@(KTSAI', 'h}#5aL9@9rQk<ڠ5"', '', 0, '?'),
('aFc5[7Ntc}', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IncludeNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IncludeNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?)''R$S&', 'e&N@SJ|^v2e', '', 0, '?'),
('awU\ZTzK', 'wp-includes/blocks/post-excerpt/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'եL`L(ҩ', 'BO!7R?0yď5', '', 0, '?'),
('aƲ"''\r< \ZEW', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zs:5*W0', 'ҎVlJyxH8l\r\\~b[', '', 0, '?'),
('a|u> b', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K$E7', '($*ڍ]'']Vl	aD\r', '', 0, '?'),
('a-s̭(>b', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-emacs.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-emacs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hmt?MFs`', '5).2n``g !4lX', '', 0, '?'),
('a?_ˢ6jX', 'readme.html', '/home/binawebp/omsrislb.my/readme.html', 0, 'A4!', 'A4!', 'LTZ|cλVYYŞV', '', 0, '?'),
('aJr&-D', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uo}S}8.', '$s?;fĠ=`\r	&!', '', 0, '?'),
('a(mEBl', 'wp-includes/media-template.php', '/home/binawebp/omsrislb.my/wp-includes/media-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mAI.Uo', '#:)!$TگiύRa', '', 0, '?'),
('aȊ/IׇN˨W', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~?S[', '(y\089L^+bd-)v_', '', 0, '?'),
('acCH\r=l@ĸ', 'wp-admin/plugin-editor.php', '/home/binawebp/omsrislb.my/wp-admin/plugin-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?\r\nȠ', 'N''v\0Ne"UkN]_CIZ+"1', '', 0, '?'),
('aolՓ\Z\nO[', 'wp-includes/class-wp-plugin-dependencies.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-plugin-dependencies.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!c8mH\\oO', '.S4TXBA2zX+;\ZBE', '', 0, '?'),
('aaiG}\Z ', 'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԗ8&?TV_ReG4', 'WO$b5pکpmR6X94D', '', 0, '?'),
('abr{', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ResettableInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ResettableInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^9wioei!', 'c*T[ߗ+nJ̠KeT1Y;', '', 0, '?'),
('b !z@\n&+-矶', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lv"lH\n', 'eݴEN&fԡ>Bo6H\ZJ%D8', '', 0, '?'),
('b5W@', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/PathChecker.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/PathChecker.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N1Phy,h', '4O~HaQܲ|\r~ag-n', '', 0, '?'),
('b@Wc51AL|', 'wp-content/backuply/backups-0uelYu/tmp/index.php', '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/tmp/index.php', 0, 'ySY', 'ySY', 'ݧ\\\n.nbeNY''p*tk', '', 0, '?'),
('bY,ϥYr۝;', 'wp-includes/js/crop/cropper.css', '/home/binawebp/omsrislb.my/wp-includes/js/crop/cropper.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ky5ni*M(', 'ٸTޝOwLy=}gTl', '', 0, '?'),
('b_^b :Z', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9gGֲ^', '@Y#G%l^U''@=Q"', '', 0, '?'),
('bqkQ!', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/templates-types-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/templates-types-manager.php', 0, '4Ϟ	m6|[M', '4Ϟ	m6|[M', 'ۜ;!qyvڅQ>?Qzɚ\Zr-HzC\Z', '', 0, '?'),
('bs>g"yF', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ke(ه', '$CE0/''Xo9[4)Ţ	', '', 0, '?'),
('byAӇP(', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-base.php', 0, 'Y@oA&*|', 'Y@oA&*|', 'A_/Jbkc7w]c', '', 0, '?'),
('bN\Z{a2-j6l', 'wp-includes/blocks/math/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jݏ IR>', 'n9?ڦQU#юZ۝D', '', 0, '?'),
('bS]hRgϐP', 'wp-content/plugins/elementor/assets/mask-shapes/hexagon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/hexagon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.f$b6O6<f', '^5[2[E,ˀY>BO۔I\0', '', 0, '?'),
('b߅!=*_1G', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/string-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/string-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wzNb{gyg', ')Y''Fov\nʭ69', '', 0, '?'),
('bφNь', 'wp-content/plugins/elementor/core/editor/loader/editor-loader-factory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/editor-loader-factory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-bI..', 'E=.G]R:;ˡ*()Vq', '', 0, '?'),
('bHzfWgw', 'wp-content/plugins/wordfence/lib/wfSchema.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfSchema.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RP%HQ]9', ',[/H"Xm=iTUTH[B', '', 0, '?'),
('bkgsG$M''H', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style4.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style4.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n3Dd;y.', '>P&bW?WiH	)p\n{', '', 0, '?'),
('bҌ &?{', 'wp-includes/js/customize-loader.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-loader.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V,yV~=', 'r''b\Zvi|~4K]^5', '', 0, '?'),
('b+ƴݟ3', 'wp-includes/customize/class-wp-customize-nav-menu-location-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-location-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y1]Fh', 'VӒk\07''baKX-', '', 0, '?'),
('b~Ѣ1', 'wp-content/plugins/wp-optimize/js/loadCSS.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadCSS.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5v}?vl[\Z|eg', '2KX-[(OfxUKkB\0"', '', 0, '?'),
('b&f0WM/;', 'wp-content/plugins/elementor/assets/css/widget-icon-box.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@|=ı0', '*#@&54X"}\\NZZ2''VY', '', 0, '?'),
('b񪥲K+xwF', 'wp-admin/css/site-health.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-health.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"lGڴ:U', 'yvzh,8\\CA\r*32W', '', 0, '?'),
('c餟(Ok1!͂', 'wp-admin/privacy.php', '/home/binawebp/omsrislb.my/wp-admin/privacy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#GXZ*Cl<{b', ':Gjv\nb\n±V7', '', 0, '?'),
('c(yFz!r', 'wp-content/plugins/elementor-pro/modules/share-buttons/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/share-buttons/module.php', 0, 'o.l;sR', 'o.l;sR', 'g@[e>X`8;<	''QTJaǗ', '', 0, '?'),
('c\n4(A&פ', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/css/one-page-scroll.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/css/one-page-scroll.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=$Y8wh', 'iSXrDMPpP', '', 0, '?'),
('c2}Hb`M]', 'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0v60HL', 'b\Z/;$+]⸫XZN͸f', '', 0, '?'),
('cC#Ov4', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/shadow-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/shadow-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ыMtlm', 'CO2]㹟~DLFVE6í', '', 0, '?'),
('c4L]˞Mc', 'wp-admin/includes/class-wp-post-comments-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-post-comments-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2aSYyl)K6', 'F_۰G\ZO0c~Ih\nY;jƣ', '', 0, '?'),
('cp	PU3/', 'wp-content/plugins/wordfence/modules/login-security/classes/model/request.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/request.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&ܮM,~/r', 'F;W]&z~o''/q+', '', 0, '?'),
('c#uL]lE', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php_laravel_blade.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php_laravel_blade.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OtyW!', 'pT2Zl!QekKRgڕx[R>{', '', 0, '?'),
('c$@oo2}ibh\n', 'wp-content/plugins/elementor/assets/js/c4dcba54ff9219690f00.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/c4dcba54ff9219690f00.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X2Fy(q[N;', 'dmjM}xn\r\r&t6', '', 0, '?'),
('c%;8QVWƝdȇ:', 'wp-includes/blocks/paragraph/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˽`	Ȃ#', '-ӌ>	EZh6FA$$gө', '', 0, '?'),
('c&fM\Z>/\n', 'wp-includes/css/dist/block-library/elements.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0YpU', ')m.~yw`@ycZB', '', 0, '?'),
('c)]$ugTa', 'wp-content/plugins/wp-optimize/templates/images/unused.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/unused.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0/3', 'rimo\\VI@kys5ݒ\\4:', '', 0, '?'),
('c,[xޫ3\n@', 'wp-includes/js/jquery/jquery.masonry.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.masonry.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@`&n|}A', '\\ۙ	}Mg $0 [B', '', 0, '?'),
('c=_!p', 'wp-content/plugins/elementor-pro/modules/popup/form-action.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/form-action.php', 0, 'nLyn{`č', 'nLyn{`č', '23/2Ni̵By㔫Ս߅z:Ҷ+', '', 0, '?'),
('c@iyFaYbK', 'wp-content/plugins/elementor/core/editor/data/globals/endpoints/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/endpoints/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(\n$7', 'Ovl~+pB0H`', '', 0, '?'),
('cJ,l{@g/U', 'wp-includes/js/dist/router.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/router.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r{o"J~.p', 'k\\bFM!Wzʆ{', '', 0, '?'),
('cS%+P.p&,', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-custom-permalink-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-custom-permalink-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dh/~\r	', 'oUf+[vؠKZˁrG=5o©@e', '', 0, '?'),
('c\\JϿCC!P', 'wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SMҦk`C/', 'UY\0''oI<z^q\n?1[ʠ_XMϢ', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('ckep\\Ne\\e', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fsharp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fsharp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Հ"2vd㘸W', 'Ǘ_P}`1p>nP0', '', 0, '?'),
('ct;z4|', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/admin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/admin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(/_wB\Zi', '.%g1@6DhOز孉_(', '', 0, '?'),
('ctשXپuyv', 'wp-includes/blocks/image/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0VY}!Pj', 'kq''~M|W''?3ںDdJc2', '', 0, '?'),
('c}\0v\Zn}', 'wp-content/plugins/wp-optimize/js/queue.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/queue.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's*\nOG', 'ZhnenC67	94\\+ɍ', '', 0, '?'),
('cQiQv', 'wp-includes/css/dist/editor/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C)#ю5ֿ3', 's;τ	8^\0ڸ6	Jew,C', '', 0, '?'),
('c7im\\BSb', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r.f\r', ')LqU\Zu$&\Z{dPtQ', '', 0, '?'),
('c~\0`5w%3', 'wp-content/plugins/wp-optimize/js/delay-js-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/delay-js-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&p`uG"*lG^:', '\nGhľl%$DQ]H', '', 0, '?'),
('cPV[b	n\Zz', 'wp-includes/images/media/text.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/text.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c4t;GJ\n', 'f-@0=IKE%>pYaF.Ik', '', 0, '?'),
('cdil!`'')W', 'wp-content/plugins/elementskit-lite/compatibility/wpml/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/wpml/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{B\00J\n0\\-', '\0I#?,:N.!OAL&j2', '', 0, '?'),
('cv~ۻ6ի%', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/conditional-form.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/conditional-form.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eӄ;ş<V̌', 'dAZ꿨r48J|K[ մ', '', 0, '?'),
('cѤh,b5L', 'wp-content/plugins/elementor/assets/js/common.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|6+wy/={', 'wsLh~<7h}\\k3(:Û', '', 0, '?'),
('cG7gx', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/EscaperNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/EscaperNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\+Ȱ@F񅁓(', '5>V}N8G rE"v''5z+9', '', 0, '?'),
('cD\rO;`', 'wp-includes/interactivity-api/class-wp-interactivity-api.php', '/home/binawebp/omsrislb.my/wp-includes/interactivity-api/class-wp-interactivity-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qTA+/', 'yˋ&ԩBr\Z4$1', '', 0, '?'),
('c[b]ݽJF', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I]U	Xg', 'TϚ-1 [@./i󒶦iq0o', '', 0, '?'),
('cOSQ˓Y>', 'wp-includes/js/dist/script-modules/interactivity/debug.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/debug.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3S˷_|#u[', 'HN]Hax#v`	(', '', 0, '?'),
('d:wOІ', 'wp-includes/ID3/getid3.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/getid3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iv	vZ6', 'OR#G|(Yn', '', 0, '?'),
('d''ra', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GraphicsMagick.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GraphicsMagick.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|ݭ#zkoZ؛', '#C98tsN0{\rB5O3', '', 0, '?'),
('d1쵓-;O', 'wp-admin/js/custom-background.js', '/home/binawebp/omsrislb.my/wp-admin/js/custom-background.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PA3 K}Û$', '4hN\n:QqXz!iq^sYĄ,i', '', 0, '?'),
('db5R>Sݶ', 'wp-content/plugins/elementskit-lite/widgets/category-list/category-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/category-list/category-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SsBGbJ', '{$yֆriYbU jWPc,', '', 0, '?'),
('d\nT\Zڤu.', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/one-page-scroll.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/one-page-scroll.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zmXSԛ7', '3e)I\nHx(V]laݳ', '', 0, '?'),
('d%Jp>MT;', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/arrow-left.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/arrow-left.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BȪ', 'p)\ZrIWٶ}Y̹Y`', '', 0, '?'),
('d/D8ecsd40', 'wp-content/plugins/code-snippets/css/edit/_tags.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_tags.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\RG8', '@J9m&pdqpg(	YռS4m', '', 0, '?'),
('d2<CGW-HX', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-graphqlschema.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-graphqlschema.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|݌=jlR', 'xbUN46V.MuD,%', '', 0, '?'),
('d4c\r/-\n>', 'wp-includes/blocks/post-date/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3٦>L''', '?ahƖov5nh', '', 0, '?'),
('dJ*|G]~D$', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/ExifImageType.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/ExifImageType.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=K|(@', ' J	+-\r<"g(-5', '', 0, '?'),
('dOZjQm>@US', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsoniq.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsoniq.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@Ko#jٳ', 'uZ}{a8qk\01q', '', 0, '?'),
('de	02g˝x\n]', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\6Vfzǰ', 'dtvY}-*`b', '', 0, '?'),
('ds_N$Ŷ7.2', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/export.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/export.php', 0, 'Z;\r9tٽ', 'Z;\r9tٽ', '.;v\Z2B]P· |kE', '', 0, '?'),
('dkJQAw6im<B1', 'wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɘ~NqB', 'iQh{!iPlmImY㈠O', '', 0, '?'),
('dAuh041', 'wp-includes/blocks.php', '/home/binawebp/omsrislb.my/wp-includes/blocks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7T"e@+u', 'wu?_:HWMU.pˎCa', '', 0, '?'),
('dBÚcն', 'wp-content/plugins/elementor/includes/controls/base-icon-font.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-icon-font.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G/}hFxθ[E', 'l5UcOy(PvK*Nz', '', 0, '?'),
('dW''pI{<', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/controller.php', 0, 'N''ͦF#e', 'N''ͦF#e', 'mxdqn"u>gʌ?[\0', '', 0, '?'),
('d0ٷ\ZԌn', 'wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0<N5ҖouM', 'p"\r<P13rz=Ɠ]', '', 0, '?'),
('dÎ%V', 'wp-content/plugins/elementor-pro/modules/forms/actions/redirect.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/redirect.php', 0, 'v)zS', 'v)zS', 'N@1DU3en8\\5`.܉', '', 0, '?'),
('d:՜a{ؐҔ', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+U(CAi_L`UB', ' ӏd\\hbʣJ3-P-cQ6', '', 0, '?'),
('d(%J@G', 'wp-admin/options.php', '/home/binawebp/omsrislb.my/wp-admin/options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'puPm)n8', 'zdm\\eENU7ځ\r<졂', '', 0, '?'),
('dלr͓g''"', 'wp-content/plugins/code-snippets/js/hooks/useAxios.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useAxios.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H:!ڙ%', 'uP~J>p5Hj;a4Ņ`', '', 0, '?'),
('dU6qRA', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-size-scale-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-size-scale-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̙6D''', 'n:.5PG$vT`', '', 0, '?'),
('d1Tgb!', 'wp-includes/blocks/query-title.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a8e!-', '=w''GV	FىȓT׶qOBj\nz', '', 0, '?'),
('dar\0\rF0&%', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7.MG)fLo.PK', 'g^&l\0UX9*SC', '', 0, '?'),
('d4j2UV$P', 'wp-admin/css/wp-admin.css', '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7#Q&M?»|[', 'QD6hPqqM9FO\\O', '', 0, '?'),
('d@!dJ', 'wp-includes/js/mediaelement/mejs-controls.png', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mejs-controls.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.۷Z#e0<l', 'X*\ZX(Z!ȽD2aB', '', 0, '?'),
('e\0hLщ', 'wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YѱƔUy{', 'paivINa''%fE?Mv', '', 0, '?'),
('e\rZfޞ|', 'wp-includes/js/api-request.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/api-request.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[''|")!ô"p', '\ndPK3*R''5Ē \Z''?', '', 0, '?'),
('eXǌ.\\(&d', 'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a4P^/7E', 'ѧ\n7YGĢj*D_.~Cb', '', 0, '?'),
('e\nW\Z9Tн', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4WHV0x3', '|O9U87:Nf֠{:', '', 0, '?'),
('e$,b', 'wp-content/plugins/elementor-pro/assets/js/code-highlight.bd9b459b2670f6512f56.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/code-highlight.bd9b459b2670f6512f56.bundle.js', 0, 'KT\r+\Z+', 'KT\r+\Z+', '~|P}Zj-	IS{|u', '', 0, '?'),
('e"T{*xļ', 'wp-content/themes/twentytwentythree/styles/block-out.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/block-out.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VAVsho!H^', '{\\*%F|L[~d zUo1u', '', 0, '?'),
('e.PȴNBSx[&', 'wp-admin/includes/class-wp-plugin-install-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-plugin-install-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u8$z2P', 'f|"70\\~Q]{ByH}v\\', '', 0, '?'),
('e08/;t', 'wp-includes/blocks/tag-cloud/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	y''du\ZBEZ', 'up^\rzxsic:w\Z@iL', '', 0, '?'),
('eQ\\ DJ', 'wp-content/plugins/wp-optimize/js/loadAsync.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadAsync.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ntq\n', ':TU_@jzb`N', '', 0, '?'),
('eTm>F+HN', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-meta.php', 0, '	w<T1ev?', '	w<T1ev?', 'lr5#!nj}uQ.|Npk', '', 0, '?'),
('ep\r}u_4', 'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Щ3^7DPk@c_l', 'eנc10F^bBQ@Bu', '', 0, '?'),
('esȿawM[8', 'wp-includes/SimplePie/library/SimplePie/Parser.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&52uD', 'gu@xKH1C,x}Yoa֬\r', '', 0, '?'),
('euo(8?5', 'wp-includes/js/jquery/ui/menu.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/menu.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S86;', '`_$o\0%oVdOhg', '', 0, '?'),
('eyT Q (', 'wp-content/plugins/elementor-pro/modules/forms/submissions/component.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/component.php', 0, '(\rnP.;', '(\rnP.;', '"[:j\nD;+`SYLEYAYL@4', '', 0, '?'),
('e}0wTnv_g~', 'wp-content/plugins/wordfence/views/scanner/options-group-basic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-basic.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VEgO`#jV4C|', 'sc	;*r3$XG8ͬRK', '', 0, '?'),
('e%L@ՈX$', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mushcode.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mushcode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LHx@>o', '&OƬOnotK/y@cF?bEʁ/', '', 0, '?'),
('eae.Ru', 'wp-content/plugins/elementor/assets/js/3ac06e8b9c2e8f04c57d.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/3ac06e8b9c2e8f04c57d.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	LOY%m,\\', 'ҲEB?3.%8''L.˞ctP', '', 0, '?'),
('ebV}%C}S', 'wp-content/plugins/elementor/core/admin/admin-notices.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/admin-notices.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B#%m', '?jM>̩Zup|˰`)', '', 0, '?'),
('eE)69,', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z,*-"', 'Sh@y~^g>sT/zl,7', '', 0, '?'),
('elsUO|R}ܝi', 'wp-includes/sodium_compat/src/Crypto32.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Crypto32.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I\r}jǊQX]m', 'ɱ䱃Fn2c.nMڣ A', '', 0, '?'),
('e__%x', 'wp-includes/class-snoopy.php', '/home/binawebp/omsrislb.my/wp-includes/class-snoopy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kY$0{', '3[D''\ZX5ܝMHm$«R6蛃', '', 0, '?'),
('eEh\n0,t(!', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find_ancestor_tag.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find_ancestor_tag.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' InIЧ|:b', 'гW)O\rfJ8	UGrL\ZX', '', 0, '?'),
('e!XOxC', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A}!=', 'f+C''*[!NE]U', '', 0, '?'),
('e^#|ۍTЩz', 'wp-includes/Text/Diff/Engine/xdiff.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/xdiff.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^L4Xטo	', 'L\Z(M b;E.:)Cp', '', 0, '?'),
('eƶrse8', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lsl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lsl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cQ', 'ɚ,7Hrڐbi5J*', '', 0, '?'),
('e''7\r', 'wp-includes/blocks/group/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hʬHkx', '٠XD/5\00\0DlNhew', '', 0, '?'),
('e3;pcmlO7', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/textarea-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/textarea-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zAVg4j', 'С\0WݒbOߩ6_2\\$et\n%q', '', 0, '?'),
('eʅMGuvMTH', 'wp-includes/css/dist/admin-ui/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k1k;I*', ' f%ڞan7w*ں', '', 0, '?'),
('eŕs7s', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GTIZmAI', '&r~0i%c~0"W!e', '', 0, '?'),
('e𮐡󲮭E)', 'wp-content/plugins/elementor/app/modules/kit-library/connect/kit-library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/connect/kit-library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~p?h{6&3', '>XOļx｟]%,m', '', 0, '?'),
('e''6\n\nkUhd', 'wp-content/plugins/elementor-pro/base/on-import-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/on-import-trait.php', 0, '1"!V֢݈', '1"!V֢݈', '*uH/o%i_2,@W}{tAo8', '', 0, '?'),
('f>ARlPo_', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-settings.php', 0, '\ndA	Q\0Ma', '\ndA	Q\0Ma', 'K,2pT<^B ', '', 0, '?'),
('f#%+fa+R	', 'wp-content/plugins/code-snippets/js/services/manage/activation.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/activation.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QvR@	!-Dm{', 'PҮz<8jłx<\0Y|i', '', 0, '?'),
('f9\nTl', 'wp-content/backuply/status_key.php', '/home/binawebp/omsrislb.my/wp-content/backuply/status_key.php', 0, '_}e', '_}e', 'ն/F#ds";9\0', '', 0, '?'),
('f;yY*KlN', 'wp-content/wpo-cache/config/config-omsrislb.my.php', '/home/binawebp/omsrislb.my/wp-content/wpo-cache/config/config-omsrislb.my.php', 0, 'rHGP\Zџ!2', 'rHGP\Zџ!2', '\0Fwg8To-LF1#ݠ', '', 0, '?'),
('f?9!ιnhY', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/BooleanOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/BooleanOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǤX*<v`;va', 'u>,/Dc߮\0<6reW<;', '', 0, '?'),
('fE\0T/UC2q*о', 'wp-includes/html-api/html5-named-character-references.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/html5-named-character-references.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\09OΜ', 'Dk֘;Ey&,[ft\\V\\', '', 0, '?'),
('fL[!9p![', 'wp-content/plugins/elementskit-lite/plugin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l1Z:#?]$)', '%FQ1hOS\rl&Trxln', '', 0, '?'),
('fXhǍLYj', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblemsException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblemsException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aTC5', 'Oq:́}\Z:x8>5>%', '', 0, '?'),
('f]&܈', 'wp-includes/images/media/audio.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/audio.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8gt &h', '@Eyڑ[-C4{\ZкϮ_v]C', '', 0, '?'),
('fe~nz{ei.', 'wp-content/plugins/elementor/modules/announcements/triggers/ai-started.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/triggers/ai-started.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<օ|;nH', 'igw|k3v븅ĿFiz߁z"', '', 0, '?'),
('fpjH''', 'wp-content/plugins/wordfence/views/blocking/blocking-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/blocking-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DaG]:', '^ĶUO95Eֹ~zqMq3@', '', 0, '?'),
('fu3\nM\\}6*0', 'wp-includes/class-wp-customize-setting.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%:@~RY{', 'q$wrRQ\rr^N0#lC', '', 0, '?'),
('fFAlUp', 'wp-includes/blocks/post-featured-image/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9BS^rp1M', '\0 LVu9]j҉f\\r\n(', '', 0, '?'),
('f2iyЙ6', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js', 0, 'ajlհ~bw%', 'ajlհ~bw%', '2%8\r\0[gr#Hv{+q', '', 0, '?'),
('f霰f؟|hUL', 'wp-admin/includes/ms.php', '/home/binawebp/omsrislb.my/wp-admin/includes/ms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_8[<~U', 'cN\n&}=Eԋ''c@%]', '', 0, '?'),
('fmȄ%#!y\r', 'wp-includes/blocks/navigation-submenu/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eFs),3+', 'qP,$B{r^_z#@b+VGj\n)`', '', 0, '?'),
('fŭ8;slV', 'wp-admin/js/privacy-tools.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/privacy-tools.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ܻ	u{', ',y6xl$ꠠ7N;Ǟ-U', '', 0, '?'),
('fu5}0l8g', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-posts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-posts.php', 0, 'ʺ\n՝YCQ\0%', 'ʺ\n՝YCQ\0%', 'm{GRH,uIPI', '', 0, '?'),
('f\n3	%)n6Dx', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js.LICENSE.txt', 0, '>7y՜', '>7y՜', 'z^D}\nibpU~P', '', 0, '?'),
('f$s{3L.N', 'wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '۷.mp', '֤e,(.Tkh9A\rЌ홄1', '', 0, '?'),
('f\Zm', 'wp-content/plugins/elementor/assets/css/templates/widget-progress.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-progress.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\ȿtG#=^OO\n', 'IJ*UA/22ܠ2F䉄.XF\0', '', 0, '?'),
('f_m5m@6', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/BasicVault.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/BasicVault.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q۴܍\\0', '4\nso4e$.ɧƱCv"*ϒ輳', '', 0, '?'),
('f3YT', 'wp-includes/js/jquery/ui/tabs.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tabs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y/KJS_ʸ', 'YtY35vld\nzQ', '', 0, '?'),
('fE䣄', 'wp-content/plugins/elementor/core/files/css/post-local-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/post-local-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\6z:H\rD_PcH', '?3^INdbZb2߬8GR', '', 0, '?'),
('fֈVԹ)9', 'wp-includes/theme-compat/embed-content.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/embed-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'me8', '}Ecz]#nw?yRa0ޅ6', '', 0, '?'),
('f؄$[7|J', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/exit_intent.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/exit_intent.svg', 0, 'h%H7!/W', 'h%H7!/W', '8 sP&m9U v*', '', 0, '?'),
('fߨ+Ĕ\0E.pݔ', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-meta.php', 0, '^ۆ\0:', '^ۆ\0:', ':r6fq/ાr6S5|K&UA', '', 0, '?'),
('f&"=Z$', 'wp-content/plugins/elementor/assets/js/admin.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ͺGz>V', '\re\\ő}irYAf<i@O4y', '', 0, '?'),
('f\nڄwV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-icon-WP-admin.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-icon-WP-admin.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oae.C', 'ǵB#7L|<e{>n+', '', 0, '?'),
('fǚH.', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rدJe<+', '''c`q\nd*0HaqqP_S', '', 0, '?'),
('g\n(>* ]S;3', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/typography.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/typography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V^]*O?E', 'pVo|EՖu:Ci;Y].>', '', 0, '?'),
('gjR31#wH/A|', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_blue.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_blue.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BM!#̘䓢Vta', 'PwwPS- pJ\\z^X', '', 0, '?'),
('g3N,', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!̴ox70', 'pg>՚\\n|,', '', 0, '?'),
('g#,vM:', 'wp-includes/js/jquery/jquery.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b>|	<2\\Q\Zs', 'k+/fgƃL@cf9sJtX/nn', '', 0, '?'),
('g''S-TIr', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/style-schema.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-schema.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.vfU9', 'C$J)⣞wp]#', '', 0, '?'),
('g+yrqD/', 'wp-includes/vars.php', '/home/binawebp/omsrislb.my/wp-includes/vars.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|꾬eh8mQ8/', 'YFY=`c_&:b#za/Pu%FM', '', 0, '?'),
('g+wJoG{b', 'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x4\0ޮ颺', 'YV[6#\\^uC2f', '', 0, '?'),
('g9lRLR	as', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Compiler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Compiler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qVyͪ8', 'F.nѴXlsN~\ZjD', '', 0, '?'),
('g@bUۺzŖ0', 'wp-content/plugins/elementskit-lite/widgets/video/video-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/video/video-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D}`1n', 'rb6ͣB\0RY$!_:N/E}', '', 0, '?'),
('gQir똿/!', 'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',+MLTߜN:=4', 'Yd$5{.ub,jx@j', '', 0, '?'),
('gYBJ>3ʙDZ', 'wp-content/plugins/elementor-pro/modules/posts/traits/button-widget-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/traits/button-widget-trait.php', 0, 'L''kun', 'L''kun', 'I4vlV3XT', '', 0, '?'),
('gcN\r$JDi_no', 'wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g-C}', 'iO	B:Zʊ_:ʎs`OzЇJ', '', 0, '?'),
('gu6]݂?', 'wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php', 0, 'b,n`', 'b,n`', 'u\0V!9\\M<dH+:[r.|', '', 0, '?'),
('gv\ZUO', 'wp-includes/blocks/html/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xs;Xh&pݼ', '>S^u5U(!TY.ޜ+:', '', 0, '?'),
('gxF6U?gþ', 'wp-content/plugins/elementor/includes/controls/animation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/animation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i9&~', '׌(~gTB_z=JG8>', '', 0, '?'),
('g{bqw', 'wp-content/plugins/elementor/includes/widgets/menu-anchor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/menu-anchor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̣EA\Z	', 'Qe٢\r/ie^L{C[.sEO', '', 0, '?'),
('g|y_o4"XN', 'wp-includes/images/smilies/mrgreen.png', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/mrgreen.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-5^Jj', 'Mg$+;\05H&\\E6%w', '', 0, '?'),
('g~e-Wc\\', 'wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js', 0, 'Ӧ3(.', 'Ӧ3(.', 'O,cܪ>:kS#<$L', '', 0, '?'),
('g\ZŞ|q(', 'wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zWM&836', 'TR@peS`FaױC>+V%8JyQ', '', 0, '?'),
('g$G\\;r1X', 'wp-includes/images/wpicons.png', '/home/binawebp/omsrislb.my/wp-includes/images/wpicons.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dSuqV_a', 'cZ_?n_K61\\}r', '', 0, '?'),
('gKN>J4', 'wp-includes/blocks/freeform/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&>4ݕwɴ[CL?', '/N&\Zd1+ڐ(PwD&', '', 0, '?'),
('g}FRs', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(SBd-', 'oQ4r&VQ''	 C=)', '', 0, '?'),
('g>{A2Fh,&', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/traversing-dom-tree.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/traversing-dom-tree.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FHfٞZq', 'M<kC2.wq$Ď)', '', 0, '?'),
('g''&q\rxvzKtX', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/NailgunClosureCompiler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/NailgunClosureCompiler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ut6i<1 }*', '7@+VQlC>\nCRLs+L5A', '', 0, '?'),
('gf1۶y;_', 'wp-includes/class-wp-http-proxy.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-proxy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}4TޗU|', ']#j+xwęη:b\ntc', '', 0, '?'),
('g81h<M<!R', 'wp-includes/blocks/term-name/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6qVjgg^;*', '3/2vδh\n+9kF', '', 0, '?'),
('gs)m%', 'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`rll3@ޠ!s', 'F+RZςeQ$epG%Ev-xE', '', 0, '?'),
('g]e!^(PK', 'wp-content/plugins/wordfence/models/common/wfTab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/common/wfTab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2T}HW''<}\\', 'Z¥|sS8e3Eؗ$ܜ-h', '', 0, '?'),
('g	-%\r;쿙', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js', 0, '~Zfj酡~ְF', '~Zfj酡~ְF', ',9k\\QІ]0P_-', '', 0, '?'),
('g<߶RHD', 'wp-content/plugins/elementor/assets/js/5b6ef966b71e5cf670d8.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/5b6ef966b71e5cf670d8.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6uYEସ0Ծg', 'vf(-2\Z^֋\\빓bxI9', '', 0, '?'),
('g~)~sʞI', 'wp-admin/includes/class-language-pack-upgrader.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-language-pack-upgrader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7ٯ9<Vr0}M', '5̡-ڝL9qȈ>EhtVLWAB', '', 0, '?'),
('gӁ"}H,d', 'wp-includes/blocks/social-links/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P\r漪^8f', '0[ow0f8`*_"R', '', 0, '?'),
('g_V8]', 'wp-content/plugins/elementor/modules/container-converter/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/container-converter/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`97(Eh%,LZ', 'TnؓF;dPq+i\0', '', 0, '?'),
('gԓ6.}͹/}N|', 'wp-content/plugins/code-snippets/js/prism.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/prism.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jk&qbh', ''' Jih\n:.,G lP', '', 0, '?'),
('g]bR% ZE', 'wp-includes/js/shortcode.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/shortcode.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>}OP8Z,Ob>', ':Da!قv2"!', '', 0, '?'),
('gEd1D}', 'wp-includes/js/jquery/ui/autocomplete.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/autocomplete.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jS4[7"bqhNy', '$E]TB[Uqղcα6ڟ0', '', 0, '?'),
('g f\0IM', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';U!(Ī}', 'E4Sc~mZƹnĐ?d', '', 0, '?'),
('h塸 Ҳf', 'wp-content/plugins/elementor/assets/images/app/onboarding/Library.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Library.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{BTwQ', 'gĬ\0*<O|5Sj=%-$׉', '', 0, '?'),
('h\r\r0^Xv7', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-08.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-08.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/CuPLge-C', 'Vԓ/odXVb$(EGbM', '', 0, '?'),
('hOC:&wc', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.js', 0, 'ܪtf^Q%\07', 'ܪtf^Q%\07', '*Bzxo!Uva', '', 0, '?'),
('hZ[=wr', 'wp-includes/sodium_compat/src/Core32/XSalsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/XSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\:R/+', 'ɫ:jNmmR[', '', 0, '?'),
('h\ZOhl_Lm/', 'wp-includes/class-wp-customize-manager.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',)2`Me', 'MgN9Qqo)իQ;$%', '', 0, '?'),
('hj<_ĺC', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nq*ZF)2', '&4"\rQjXmN"?Po\\?', '', 0, '?'),
('h:uf뇝_Y', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/Sanitize.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/Sanitize.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~贡\n\0}\Z', '=S	}\n$|FqH{V(O/JX+', '', 0, '?'),
('h d껅2_r', 'wp-includes/functions.wp-styles.php', '/home/binawebp/omsrislb.my/wp-includes/functions.wp-styles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&ڄ浴M-D', 'i\n61AXkR|2q쫒r^', '', 0, '?'),
('h%͙\\;1?JJ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NloDA(', '5->y{/N?8~q', '', 0, '?'),
('h,$b^(SaMĩ', 'wp-includes/SimplePie/library/SimplePie/Net/IPv6.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Net/IPv6.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$ W2#`', 'x*`l&ˋqp{<,~%(;', '', 0, '?'),
('h0X-i^G`8', 'wp-includes/pluggable.php', '/home/binawebp/omsrislb.my/wp-includes/pluggable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JHo)_xZ,S', 'Momyj\r/HnΡu,8.l,', '', 0, '?'),
('h0cUd4-dpX', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('h4#3`-݈"', 'wp-admin/profile.php', '/home/binawebp/omsrislb.my/wp-admin/profile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0,g;ꙴ', 'CqN,`vS*Z[`m', '', 0, '?'),
('h6)l4~|XWS', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/Encoder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/Encoder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J,', '&@7LwK/V"15', '', 0, '?'),
('h8BX:9wc', 'wp-content/plugins/wp-optimize/vendor/psr/container/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's :/Ke%$', 'AZ-֭:''<5FWq,', '', 0, '?'),
('h@Z%RF;ti\\m', 'wp-admin/css/login-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/login-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	pT1}zkYm', 'F,bUJxA6rGf{D=qԢ', '', 0, '?'),
('hAeK7Cvn', 'wp-content/plugins/elementskit-lite/libs/framework/classes/onboard-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/onboard-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˶z=g@', '[<׀764t(e=0', '', 0, '?'),
('hWGt\ribt', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/icons.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/icons.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y\ZNř/', '\\a~⳦nLݑ*o2(l', '', 0, '?'),
('hc= 0', 'wp-includes/block-patterns/social-links-shared-background-color.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns/social-links-shared-background-color.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#Qv#&OD', 'e^]`>qYcT.84S', '', 0, '?'),
('huV&ѡ7Ͳ_', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-position-offset-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-position-offset-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.,u!~', '=1;	!TlװPkfX>T#', '', 0, '?'),
('h|hEf:Ʊ2~', 'wp-admin/network/theme-install.php', '/home/binawebp/omsrislb.my/wp-admin/network/theme-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '堷ȹH^r', 'fkL\Z)h/F_M9jV', '', 0, '?'),
('hv}(|^86', 'wp-content/plugins/elementor-pro/assets/js/mega-menu.e835faaf6e328f296a63.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu.e835faaf6e328f296a63.bundle.min.js', 0, '%lU ', '%lU ', '/6BcGs,XVJyZ', '', 0, '?'),
('hjuQ3A', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h>G֙2\0', 'EN%Bt{uji*^Axmf', '', 0, '?'),
('hSngc', 'wp-content/plugins/wordfence/css/iptraf.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/iptraf.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ebf.\nV[xPh', 'J-@ ]-	cqWQ$8', '', 0, '?'),
('h0', 'wp-includes/js/dist/script-modules/interactivity-router/index.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity-router/index.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']R4"(hF', '(hF5+ƕ63Մ{QXC', '', 0, '?'),
('h\\K~yt', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UUMx4g`Du', '\nVyxȗ\rEߏz%_9;>', '', 0, '?'),
('hɋ~st', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7),97OMkĖ', '\Z,\n''MzoM3YF]h', '', 0, '?'),
('hOT,$(', 'wp-includes/blocks/site-title/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?d\rkdܩD\0+X', ';phm;8[DbӍA`Ћ', '', 0, '?'),
('h)U%N>>z', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2u<Zn+yܕf:', 'Uh?]-[cqҟu:\0]J܌=', '', 0, '?'),
('h<H~~O', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pj$jfk_', '6 +1%+ce#\rNbP,Yd', '', 0, '?'),
('hc!\\d/ \0L]sD', 'wp-includes/assets/script-loader-react-refresh-runtime.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-runtime.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0!j1M/>?', 'V<#Y&=z;I0Nlz', '', 0, '?'),
('h~cTOoy4|', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f"#6${ JL''"', 'eŇ6\Z(q&ڶ]\nCliީ', '', 0, '?'),
('hsMۦ&8e', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-schedules-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-schedules-controller.php', 0, 'Q8d2yy', 'Q8d2yy', 'gR֯W}n{ਉY', '', 0, '?'),
('hMVm ', 'wp-includes/blocks/categories/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%!''g', '''Ύs+n[F<0@^T@k', '', 0, '?'),
('h<]OpNCƴ', 'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceURLHoover.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0\0-~Zҙ3', '^z O77\\\06&SûT', '', 0, '?'),
('hƷ-BH$ a', 'wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.js', 0, 'c2@d9nŢ', 'c2@d9nŢ', '=:|V\rsGtG', '', 0, '?'),
('h秉@W''D/', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Hmڶs0', '^]\n6J>K>gdnvњ#Ϣ', '', 0, '?'),
('h7n', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DeprecatedNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DeprecatedNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4''5', '\\1dD&4C1JX }	M"ݜ:', '', 0, '?'),
('hQKV<r:Mg_', 'wp-includes/js/dist/format-library.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/format-library.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#0h\\6ڻDG,', '{"qx	,HϨdom|F', '', 0, '?'),
('h,="!u셚', 'wp-includes/blocks/post-comments-count.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':C@HO}\n', '$Zt$ [p9Kic,|/,tF#H', '', 0, '?'),
('ikmCxʷ', 'wp-content/plugins/wordfence/lib/wfDashboard.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDashboard.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IA-&R', 'S\0H\n#8yܵ\n;¸@.=!B', '', 0, '?'),
('iHGY҄Mz', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/templates.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/templates.js', 0, 'O4fXBf 0CW', 'O4fXBf 0CW', 'rDdo2XJd\ZrN,Y', '', 0, '?'),
('i@n0$Uo', 'wp-content/plugins/wp-optimize/languages/wp-optimize.pot', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/languages/wp-optimize.pot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';L֩<ґ˯', 'QRfs{BJyyVA~=nl', '', 0, '?'),
('i;&o?', 'wp-includes/IXR/class-IXR-base64.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-base64.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*6DTe', '?F]L2}\rS@b2OouU''O', '', 0, '?'),
('i''tIʊG', 'wp-content/plugins/code-snippets/dist/editor-themes/icecoder.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/icecoder.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TT!@S.', 'uC!37#ڜZލU6}#x|\rɭ', '', 0, '?'),
('i?+GJJ9-KV', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontello.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontello.php', 0, 'h$2%W', 'h$2%W', '@.i<DX̦G`!MsoWxԣ', '', 0, '?'),
('iT''=봁b(', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/JpegQualityDetector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/JpegQualityDetector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r^3[+ͭ', '_BV_Crtrdv>FK62p', '', 0, '?'),
('iZ`\n_}琿', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pp}7-Ab"', '<l@f''U%"YV\0c|', '', 0, '?'),
('i^Q4ߺ', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-load-url-task.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-load-url-task.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӊ`+wR]8e', 'o}t^ltp\0x+\rKv612C', '', 0, '?'),
('ia{-\Zؙo', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}<܎s9', 'Q''r t7=s*a`<zo_', '', 0, '?'),
('ic{0h8NG', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HA`Y劃r', '虁D{}9Zi~}~%7B)', '', 0, '?'),
('idܶ1"^', 'wp-includes/blocks/separator/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E`fʐE', '\n~ڹ`7|pP*6p.', '', 0, '?'),
('ig''z.Ȃ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-events.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-events.php', 0, '@x;jkVcu]', '@x;jkVcu]', 'e\nn;CLg#񝛦<', '', 0, '?'),
('igW@uB}-', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',Zy>', 'L>UzيO| y', '', 0, '?'),
('iiOs`m0<,;', 'wp-content/plugins/elementor-pro/modules/table-of-contents/widgets/table-of-contents.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/table-of-contents/widgets/table-of-contents.php', 0, '#]佣o|9I', '#]佣o|9I', 'ܽfɄ-e0FStkCT(6"0', '', 0, '?'),
('ii"oC`', 'wp-includes/sodium_compat/src/Core/HChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/HChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5\\_', 'T񕬻/`DRD0_H"H', '', 0, '?'),
('i|6ϕ3Ģz?(', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell_cabal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell_cabal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yr(ͻ', 'VT|g`"#!Q=FR$\n''', '', 0, '?'),
('iG0_W3bmex', 'wp-content/plugins/elementor/assets/images/app/site-editor/header.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/header.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gA"a.3m;s3', 'WD֘\09J"P`(v)', '', 0, '?'),
('il|o}.', 'wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.init.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.init.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zT&j0r0/o', '}	pPk8Ӣj<EQ%', '', 0, '?'),
('i\0!,', 'wp-content/plugins/elementor/assets/lib/animations/styles/swing.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/swing.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lIuNoTr?', '|,BBáHm`x{VY7', '', 0, '?'),
('iQpht<9p', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style6.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style6.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sq]ڛIz#LO', 'O0Pa4 =cyDⅾZ˜', '', 0, '?'),
('i-X8V[~E', 'wp-admin/css/install-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/install-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{Z3#ev', '_K68mV*khf{Ɏ7\0', '', 0, '?'),
('iCC,+', 'wp-content/plugins/wordfence/lib/wfWebsite.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfWebsite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't~AJao', 'AlET2	:$&b', '', 0, '?'),
('i2Jݦ1E', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/read_tag.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/read_tag.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z4b''@c''^G', '4B){''Ng@#]LCO', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('i\\=Xh$', 'wp-admin/js/language-chooser.js', '/home/binawebp/omsrislb.my/wp-admin/js/language-chooser.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӤkulLS', 'r4ij"܈6&', '', 0, '?'),
('ik7#zՓo', 'wp-content/plugins/code-snippets/dist/editor-themes/eclipse.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/eclipse.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a\0\0''y)ʍii', '[AaU-p\r1(n0L', '', 0, '?'),
('i\rwm\01''B]4', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ada.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ada.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^lXAR4x', 'ƛf& .OOJvFU\0lfr', '', 0, '?'),
('iQؑ<OȦXL', 'wp-includes/SimplePie/src/Registry.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xG\\d<', 'WsnKPs1#̓d8`g', '', 0, '?'),
('in<H/¼', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/StringDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/StringDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ct^+a', '*k2\Z*;eY6}3]Mf', '', 0, '?'),
('ikCT,', 'wp-content/plugins/wordfence/lib/wfIPWhitelist.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIPWhitelist.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2h2aE0', 'D:]踝zw%[joX`', '', 0, '?'),
('i\r$LuFZn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/stylus.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/stylus.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k*;E﷎', '̙X7;Áis\\P}}en$cMH', '', 0, '?'),
('jP\\\ZnVp`', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KziJ*l-', '@YZwУI8-23N#L', '', 0, '?'),
('j2\\;\ng{0E0', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post.php', 0, '0e;\\𑶥', '0e;\\𑶥', 'i#>''|CA)d', '', 0, '?'),
('jNpgubWYg_', 'wp-content/plugins/elementskit-lite/libs/framework/attr.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/attr.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_[R_T', '76C}AG+WEN$if_OCEV ZH', '', 0, '?'),
('jߗK٢4oO', 'wp-content/plugins/code-snippets/php/views/manage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/manage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*w\Z7&', '4<ɿ?9//Gp%:g', '', 0, '?'),
('j "|.[,', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/12.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/12.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' M8&/r&%\Z*', 'QZ|Ű\\?	p,OO%6', '', 0, '?'),
('j!GBsCtSjX', 'wp-content/plugins/code-snippets/php/admin-menus/class-settings-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-settings-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4W+L', '&ɕ[9_^L1z<KX`~\r', '', 0, '?'),
('j&V164', 'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r9 #{', 'ﾱnѿ0c~NrAug~ΔI', '', 0, '?'),
('j-~|\Z0Ps]Z?', 'wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Irv', 'k|2#]	0nfsXXR|[M@WV', '', 0, '?'),
('j;_=\Z', 'wp-includes/blocks/group/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GѯNPh)x\n%', '3\0ڄ[ySҬϊ_hdkJ21U', '', 0, '?'),
('j<24&N],\r', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3C1B\0''콅it', '~}#b?gkoNW', '', 0, '?'),
('jJH,ܖf0ԧ?', 'wp-includes/blocks/term-template/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xM\0\ZacdXt', 'IMTbCS@諅y`6', '', 0, '?'),
('jMI?wͯai', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-locomotion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-locomotion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ŢD!-', '^瀣5 aBDxmFwb:4WTu', '', 0, '?'),
('jP	]͆H-q', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdesignkit-product-logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdesignkit-product-logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2.Lp4G', 'wC\nF\r%+[~NM8~''ғ)xx', '', 0, '?'),
('jQe;e', 'wp-includes/css/wp-pointer-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>b\nOτZs"a', 'cV.२EvX^}\\l', '', 0, '?'),
('jZ\nc^\\zk', 'wp-includes/SimplePie/library/SimplePie/Cache.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<\0o<(Gs$', 'OKʅZ:96!ۺ;', '', 0, '?'),
('j[A,)fq4|', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a?X-:E', '\ZW݇fc.yDsfV2', '', 0, '?'),
('jgXxrTsƤ', 'wp-includes/blocks/comments-pagination/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/NRilЃɜz', 'AA\n/#jg$rc=GL', '', 0, '?'),
('jj''ͦWc''', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r\\dUð)', '-k]|\\01V\Z%', '', 0, '?'),
('jmEAXuw>܆', 'wp-admin/css/colors/ectoplasm/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x>wv', ')+B4M\nY', '', 0, '?'),
('jtZܿ,', 'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'raai', '{JLͻ&{{T:B', '', 0, '?'),
('juR@]ܜ+3~9i', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of-term.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of-term.php', 0, '_sԶLX', '_sԶLX', 'ؗic>''sWgrZ.qJp?.', '', 0, '?'),
('j䱋%]', 'wp-includes/class-wp-xmlrpc-server.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-xmlrpc-server.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0P7u$)C', 'V!͋xb<\rkni`', '', 0, '?'),
('jp\0Z', 'wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<^p5Ɀ;', 'Z<OϰwHS8O7''Y9H', '', 0, '?'),
('j)nQ8ޮD', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vuײuxJB|', '_\\OytnŒZմ', '', 0, '?'),
('j5F+o', 'wp-includes/images/crystal/interactive.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/interactive.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rm``9', '$멘<x1ՓIRV-VZ\\jg.', '', 0, '?'),
('jd>hA\r2f', 'wp-includes/abilities-api/class-wp-abilities-registry.php', '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-abilities-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u~st', 'F(g(K[a6Tnd=gp', '', 0, '?'),
('jDE+', 'wp-content/plugins/elementor/assets/lib/hover/hover.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/hover/hover.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X]2L', '~rS/үn|i)z+y', '', 0, '?'),
('j8ԶgRPOa\\L', 'wp-content/plugins/elementor/modules/usage/settings-reporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/usage/settings-reporter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '٨|᳒_F]', 'N~\ZgIOT+UZ', '', 0, '?'),
('jGNc//!4i', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-prolog.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-prolog.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YI*߼Wyۂ', 'R(48wS-8[n@9.[', '', 0, '?'),
('jTsM', 'wp-content/plugins/elementor/includes/admin-templates/new-floating-elements.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/admin-templates/new-floating-elements.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֡)Ll(;Ir', 'i0	afc癌cx+T', '', 0, '?'),
('j4-O ՄrL\n', 'wp-content/plugins/wordfence/models/block/wfRateLimit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/block/wfRateLimit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '29Q{''Db2w', 'A152sN äUA-Vx', '', 0, '?'),
('jgs66$8*E', 'wp-includes/class-wp-dependency.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-dependency.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7RNFz$ҏa13', 'Q؇#?*7p@|XɖFӓ', '', 0, '?'),
('jؙq7Q+Ų{J', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-bg-pattern.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-bg-pattern.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A^c[ֽ$', 'W\\ltƜ"Fs[hmd/Y', '', 0, '?'),
('j՚Pp)m', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products.php', 0, 'mx\Z(eϙQ5', 'mx\Z(eϙQ5', 'U{tE;(]]o/cbJv9', '', 0, '?'),
('j į¹	md', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.d8367a1522af6556bd92.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.d8367a1522af6556bd92.bundle.min.js', 0, '1&B0o', '1&B0o', 'T(T~MkXA=(:f)1UTJ]~', '', 0, '?'),
('jQG4YߚC$', 'wp-content/plugins/elementor/assets/js/ai-layout.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-layout.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('jZb}jT;', 'wp-content/plugins/elementor-pro/modules/notes/admin-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/admin-page.php', 0, '0erLvyTO', '0erLvyTO', ',02BŃZ|$\Z+=m', '', 0, '?'),
('j*yu', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-applescript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-applescript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '66', 'W`_Ir|%X^s<G]~\\', '', 0, '?'),
('jaCk9ŷZ"', 'wp-content/plugins/elementor/modules/ai/site-planner-connect/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/site-planner-connect/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4$:wx3Q', 'Z}Jk-ޒ}q*0ȖF\rX\r', '', 0, '?'),
('j%}dVu"P', 'wp-content/plugins/code-snippets/js/types/ScreenNotice.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/ScreenNotice.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j"ncGQ', 'q:QX0FDHqxcW HC?8J٨Z<', '', 0, '?'),
('jH y\0Ë', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color_wp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color_wp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q^Bi>A(', '^N"$gJ#uH''WV)', '', 0, '?'),
('jwK+]P\nc2W', 'wp-content/plugins/elementor/assets/css/widget-icon-list.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x|D@I8', '{epL>H	Q\0_As@U', '', 0, '?'),
('jdCT[^R', 'wp-includes/block-patterns/query-large-title-posts.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-large-title-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q$4-1e', ',Ch1z`q\\2ߑ{]', '', 0, '?'),
('k	9%P85Rjd', 'wp-content/plugins/elementor/core/editor/loader/v1/js/editor-loader-v1.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v1/js/editor-loader-v1.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Al%TxSz', 'Ɩ+RlNcRPrtSq{U', '', 0, '?'),
('k$6O-Nx', 'wp-includes/js/tinymce/plugins/charmap/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/charmap/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=B쟄P\rL', 'x[G-90b.zGaz>r', '', 0, '?'),
('kq/H', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{$56MGlJgߧ', '@2)7\n\0<\nBc]\0z4', '', 0, '?'),
('k)IaAC<', 'wp-content/themes/twentytwentythree/styles/aubergine.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/aubergine.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}geoʊQp`', 'Xa)\Z*Gb6\0sQV\\8', '', 0, '?'),
('k*}F֭o\rT', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\00.1''#?4f5', 'SgǼ8iJ(,h $O6', '', 0, '?'),
('k*OP?լS$', 'wp-content/plugins/elementor/app/admin-menu-items/theme-builder-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/admin-menu-items/theme-builder-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Λ.=Gr', 'RMÖh)eM8^@#E', '', 0, '?'),
('k6*H	u١', 'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm=12L3', 'jJKU*x2aVRX.', '', 0, '?'),
('k;_6vd-q`5>', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rfƀ\\DԄ', '''E \\UƘȿ5', '', 0, '?'),
('k>J))$U6', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/css/bootstrap.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/css/bootstrap.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/°̶=\r(I', '54WADmWƽ쿨ehs', '', 0, '?'),
('kBQoߐn', 'wp-includes/Requests/src/Session.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Session.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',:]_0+', '67xuvOAHc\nd`Utm', '', 0, '?'),
('kEnfϋߟ''qb', 'wp-includes/blocks/video/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rPi CIя', '_NBԭEmX=zCr', '', 0, '?'),
('kM̙Ysp', 'wp-admin/credits.php', '/home/binawebp/omsrislb.my/wp-admin/credits.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pXڇ}T', 'C~\\\r\\2;:rw#-3s׸v', '', 0, '?'),
('kQKү|', 'wp-content/plugins/elementor/includes/controls/groups/box-shadow.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/box-shadow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D_	{/:O', 'qA@O%zq,o@iı!Mdn!3', '', 0, '?'),
('kS0=UI', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-language_tools.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-language_tools.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^RLm^2Ī', '`˪m&zn3K:h璞h`!Q!d', '', 0, '?'),
('kVBE/;o>', 'wp-content/plugins/elementor/assets/lib/hover/hover.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/hover/hover.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	z˫r', 'WZ1引Q7M_ܔNKAY2Gag', '', 0, '?'),
('k\\jYt%lm', 'wp-content/plugins/elementor-pro/modules/nav-menu/widgets/nav-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nav-menu/widgets/nav-menu.php', 0, 'VL> }bh', 'VL> }bh', 'X\07F>T:P^?L{=5Ƌ', '', 0, '?'),
('km|Kma0"*k', 'wp-admin/js/tags-suggest.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/tags-suggest.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6oW&9', 'hQWSx%&	$#8曵D', '', 0, '?'),
('kt*OIctY', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_ffffff_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_ffffff_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4+?bd]?B', 'CD6;%5Y\rxՆ\\7aedR', '', 0, '?'),
('k~fb̭rx^oط', 'wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(Ir$,ȬW', 'ەGj>&\ZUHi&.G޶0g_', '', 0, '?'),
('kqD_"^W|C', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-dot-move.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-dot-move.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rXaݪej:', 'wm\0bP.pU+XpР', '', 0, '?'),
('kx''Hڠ ', 'wp-content/plugins/elementor-pro/modules/notes/document-events.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/document-events.php', 0, '\\dy2_(*', '\\dy2_(*', ']\nX	SJ֌zJ', '', 0, '?'),
('kuυ''؍3', 'wp-content/plugins/elementor/core/files/file-types/json.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/json.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mg?bu', 'dݥN}0S hܜG', '', 0, '?'),
('kgaFz7', 'wp-includes/Requests/src/Utility/InputValidator.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Utility/InputValidator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U\rʮYe	Ll', 'a1Qau/dsLZvU', '', 0, '?'),
('kITI$)Ȁ', 'wp-content/plugins/elementor-pro/modules/wp-cli/update.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/update.php', 0, 'S\nJZ2u', 'S\nJZ2u', 'ځgKyylp$aK\\L', '', 0, '?'),
('k}B>L]~bu-', 'wp-content/plugins/elementor-pro/modules/progress-tracker/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/progress-tracker/module.php', 0, '63\r2w͉', '63\r2w͉', '1<셷\\*$]}=a~ϲtx	v	', '', 0, '?'),
('k80y M', 'wp-content/plugins/elementor/assets/css/common-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϣøtgnpC', '\\aņ(^=U_\\|]!K', '', 0, '?'),
('km."EP^', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/NullTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/NullTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bF30ేD', 'Akd''/X>%&[51\r', '', 0, '?'),
('k1M	''', 'wp-content/plugins/elementor-pro/modules/lottie/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/lottie/module.php', 0, '''jR%#O', '''jR%#O', 'vٹLߠ٠Θؒ,''hqh\ZcX', '', 0, '?'),
('kB˞b=y', 'wp-includes/user.php', '/home/binawebp/omsrislb.my/wp-includes/user.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MrG', '?hB8ZHg{>[', '', 0, '?'),
('kU/^ ', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '90@ev', 'BZExܥ+D`H,C UdoLu[', '', 0, '?'),
('kŊ[J]~='':', 'wp-content/plugins/elementor/assets/css/modules/styleguide/editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/styleguide/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Pc763W', 'YCos^f]v', '', 0, '?'),
('kˎS;8);', 'wp-content/plugins/elementor-pro/modules/notes/usage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/usage.php', 0, '*=]kd\n', '*=]kd\n', '\ro''oa/dxOgM`2{CL?g', '', 0, '?'),
('kҁkC%2', 'wp-content/plugins/wp-optimize/js/sortable/sortable.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1Gݻ38I4C1', 'ݔT]֪33J_H?ٻ', '', 0, '?'),
('kڼҫ_=~;Vva', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/powershell.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/powershell.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';\\<rc''lQGp', 'Am/9\nr!Q(#', '', 0, '?'),
('k̻;Lb1W0GJCc', 'wp-content/plugins/elementor/assets/css/admin-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`T)+	', 'e;{vѰ:Hcg', '', 0, '?'),
('k''\n+&=n`3', 'wp-includes/js/dist/dom-ready.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom-ready.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>8H58nxm''', '@hUה{S=V>Co', '', 0, '?'),
('k^m\\', 'wp-includes/blocks/navigation-link/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S;cIv_hZH', 'qG@dꤑ,U`Ď', '', 0, '?'),
('lPPUY}', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^\r	W6vB-', '[p<SxB+-^\n]B]c ', '', 0, '?'),
('l\ns-f\\{U', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jack.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jack.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"q.,Dİ{', 'IK|r59N^\\o;''i@|', '', 0, '?'),
('l''m=ƴ_', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''8.ᢥ', 'Wm"4=B(c%5	rMd', '', 0, '?'),
('l/\nԀWͱ-c', 'wp-includes/widgets/class-wp-widget-recent-posts.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-recent-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I%*19', 'uכwxmI{cul', '', 0, '?'),
('l0:Da/L7a;', 'wp-includes/js/dist/preferences-persistence.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences-persistence.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PNyW;y\Z, ', 'm5"KkW\Zrߧ-+0]r͆&y', '', 0, '?'),
('l9=h,>&', 'wp-content/plugins/wordfence/lib/wfDiagnostic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDiagnostic.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm"מp/q', '>\rDJ!x2,͸', '', 0, '?'),
('lW|+Z]:\n', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-tm.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-tm.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']LU,e7q_Ǣj', 'x[[K	`3dAh', '', 0, '?'),
('lZq#eS%s7Y', 'wp-includes/js/dist/notices.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/notices.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8(', '9.tSb\r6DeEMN!', '', 0, '?'),
('lo7:1\0', 'wp-content/plugins/elementor/core/utils/promotions/filtered-promotions-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/promotions/filtered-promotions-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T=e0[<`u', 'Fmko@Rm_`?i͔', '', 0, '?'),
('lv,@Rò', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/icon.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/icon.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tnG^ʻ', 'ԯ'';hfn@$:TiP:', '', 0, '?'),
('l?		q', 'wp-content/plugins/wp-optimize/includes/tables/class-wp-optimize-table-404-detector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/tables/class-wp-optimize-table-404-detector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tėT]`wMȪ', 'd!fuvbwME!Ҫ;}M''cƈ', '', 0, '?'),
('lRM۳zt^o', 'wp-includes/js/dist/preferences.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pg,_0', '$%F}vr*5T''T|bEo', '', 0, '?'),
('ləR\0', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-xml.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-xml.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GX-T?=L', '[*dxxYvCď\r	Fg', '', 0, '?'),
('l 5Ô*bSջ', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/has-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/has-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']̯.\rB\0eX', 'RcI]NDn&3A8ɮ<>', '', 0, '?'),
('lSlaPkF,(F', 'wp-content/plugins/elementor/includes/controls/dimensions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/dimensions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hA1U%eo)V', 'IM/M*^<f''	ck5k\Z.Z', '', 0, '?'),
('lSNVngy<', 'wp-includes/blocks/image/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'djvY#vc|/?޻d', 'H7%:6x:?ߕd>E', '', 0, '?'),
('ldcynl', 'wp-content/plugins/elementor-pro/assets/js/carousel.9b02b45d7826c1c48f33.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/carousel.9b02b45d7826c1c48f33.bundle.min.js', 0, 'ťO+-d\n^', 'ťO+-d\n^', 'OCT^%-\ZM\Z3\Z[n', '', 0, '?'),
('l<#q,', 'wp-includes/blocks/archives/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vw-)OV', 'L_xI:"xױ9W^ay', '', 0, '?'),
('l0;', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B\\ˬ}3umPz', 'ϜJœĽUE1C#1㶠', '', 0, '?'),
('l14&yaW', 'wp-includes/css/dist/customize-widgets/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M[;Y''Ȉ', '[|@g5.\0yLBs', '', 0, '?'),
('l˖u\n[|y', 'wp-includes/html-api/class-wp-html-doctype-info.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-doctype-info.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xZiJuS', '㋭&/+8:U}\\|L', '', 0, '?'),
('lG&3](]/', 'wp-content/plugins/elementor/core/logger/loggers/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/loggers/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TÛ:.t', '\r6i@B渗EI*K', '', 0, '?'),
('lŔ7', 'wp-content/themes/twentytwentythree/theme.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/theme.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؙgȦsHT', 'U𘥢>Uz''2W@eQ-', '', 0, '?'),
('l=\\0Հz', 'wp-content/plugins/elementor/assets/js/nested-tabs.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rgCkJv8''', 'm+ٰ#-9O/|n]f', '', 0, '?'),
('m)\raHE', 'wp-includes/blocks/social-links/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S9Y)jډH', 'soWc+	Set+6@l|<', '', 0, '?'),
('ml3zW/i', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/DefaultValueResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/DefaultValueResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lځɦ͆z6g', 'ly\Zlg |"~!k&', '', 0, '?'),
('mDTmsA}', 'wp-includes/certificates/ca-bundle.crt', '/home/binawebp/omsrislb.my/wp-includes/certificates/ca-bundle.crt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BQ6Bu', '/Ǌ%t"P~#ư\r[-', '', 0, '?'),
('m\r.qA\rm`', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A.nYLS0A.#', 'iLfg$&Vn:O\Zb{', '', 0, '?'),
('m&w<a\n4}', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1XJlS', '2y\r?Ԅ1+/&g/n', '', 0, '?'),
('m51\Zp:8\0=', 'wp-content/plugins/elementor/core/role-manager/role-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/role-manager/role-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߍOFMZ޴r', 'UÈ½!8<QL"]A:5Nb', '', 0, '?'),
('m@SΉ\r1et', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreMultisite.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreMultisite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=[#W', 'pǗv9[m8A+\rOQ!A%', '', 0, '?'),
('mAp	1GU/', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؑ4䊕x1V', '\Z|%\0^x\n?ֿx', '', 0, '?'),
('mAYRb|S', 'wp-includes/ms-default-constants.php', '/home/binawebp/omsrislb.my/wp-includes/ms-default-constants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yj0©_', 'rkEBf pL\ZJ', '', 0, '?'),
('mE\\)o', 'wp-includes/js/jquery/ui/spinner.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/spinner.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QNDX(*?', '䙨mJ"\nCY\rit"uM_9%', '', 0, '?'),
('mHC#-''$.', 'wp-content/plugins/elementor/assets/js/common-modules.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common-modules.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N>\0*(9', 'EݜZ;N죟/ؿEjp5', '', 0, '?'),
('mI~?V>,', 'wp-content/plugins/elementor-pro/core/editor/promotion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/promotion.php', 0, 's/tf', 's/tf', 'Wxu@84buV	7Ca@', '', 0, '?'),
('mJ_Zj"L', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/10.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/10.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XHnYNxlX', 'g4n{(n.*	!B";', '', 0, '?'),
('mTZ`xk<Y,/Ss', 'wp-includes/class-wpdb.php', '/home/binawebp/omsrislb.my/wp-includes/class-wpdb.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':iDʓE', 'N Ci2;_JmӀ8?', '', 0, '?'),
('mWX6f`x^m', 'wp-includes/class-wp-classic-to-block-menu-converter.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-classic-to-block-menu-converter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rT;ߟ', 'Ш#K}~K&&''_1wJ', '', 0, '?'),
('mY}ɽ?', 'wp-includes/js/jquery/jquery.ui.touch-punch.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.ui.touch-punch.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LmQ4փ]', 'k>jT@z՜.OBj0''t', '', 0, '?'),
('mewF4x\\OQtZ', 'wp-content/plugins/elementor/assets/js/text-editor.bd4eccbd156d0b1fc3cf.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-editor.bd4eccbd156d0b1fc3cf.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm5y("ו"5', 'LV0@r5ϔkL@?;bT', '', 0, '?'),
('mi^BACF)', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H1:?\Z', '-RS35о3};$K9', '', 0, '?'),
('mizeKxӐMl', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/date.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/date.php', 0, '8eң.\ZR;L', '8eң.\ZR;L', '/)v<9o*\0A4b*9^ޘl', '', 0, '?'),
('mqZOMP㋩', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordfence.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordfence.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"I<9vG', 'jiAEx\0*!lbZzMv>\Z', '', 0, '?'),
('m҈gEw$ ''^A', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^v#{F6Ɔ', 'v8"x\rVobԶoFɢÇp~}', '', 0, '?'),
('m-\Zm1w', 'wp-includes/js/jquery/ui/sortable.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/sortable.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aܟ\Zvɶ_۞N', ')rAs`.HEB҃yJS#"	p', '', 0, '?'),
('m>\ZnOmG', 'wp-content/plugins/wp-optimize/includes/list-tables/class-wp-optimize-queries-list-table.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/list-tables/class-wp-optimize-queries-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bM^8ͯ$', ';KZr\n`*0Ã"7adA', '', 0, '?'),
('m4woҿswӣ', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/revert/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/revert/templates.php', 0, '"X:uHU<d~', '"X:uHU<d~', '[/}~{\048y$P05', '', 0, '?'),
('mXd*}!쿃', 'wp-content/plugins/code-snippets/dist/editor-themes/material-ocean.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material-ocean.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',ei4zU', '4]~<8%n_soK>&Ҹ', '', 0, '?'),
('m,+;2p0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(\0:IWf{', 'rJc.Bh⓶;EL0*=,', '', 0, '?'),
('mگR-qOE"A)', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Compiler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Compiler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\re%)Aq""u', '=ǀ m*!)(F1''xX_Z#', '', 0, '?'),
('mB2HN$OK', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/bootstrap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/bootstrap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yt=І0P', 'oۯ!T˦d]1	j0', '', 0, '?'),
('m/ETY[4', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/6.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/6.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mpp=2K', 'K0̝qy;%oγ+{Lk,', '', 0, '?'),
('m/ܡ!s', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ControllerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ControllerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G2.5U?', '*yPi`\ruj娳~5', '', 0, '?'),
('m*RGcs@', 'wp-content/plugins/elementor/includes/widgets/rating.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/rating.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`iQ1h,.ܨ', 'JP9Cp+!Xu$9,[', '', 0, '?'),
('m#ZQZt', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/wysiwyg.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/wysiwyg.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%&Q2fb	(', ';]\\35JSVeN.>,', '', 0, '?'),
('m5)''aH\r-', 'wp-includes/blocks/home-link/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/home-link/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9GxHD=s', 'B"Μq\0Nk"LUGv', '', 0, '?'),
('m^''Zxd~I', 'wp-content/plugins/elementor/modules/library/documents/not-supported.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/not-supported.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7fH"M_KaC', 'M<:f՚dK86/]7&y7Pk', '', 0, '?'),
('m2z<@!', 'wp-includes/css/dist/preferences/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Չ6|yU1՘', '\\BH#%Jf):,x', '', 0, '?'),
('mҋr2vb<p&', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpcs-ruleset.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpcs-ruleset.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'يj{|DuDnBT', '%x\Z,Hi*3W=CpB(', '', 0, '?'),
('mћx}omv"', 'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݽD*<R[', 'xy:LyHG\ZzқҦ', '', 0, '?'),
('m\05=N/;ЌF9', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z"˸ƽP)', 'Oā[4XYأߚT29', '', 0, '?'),
('nQʒ''k"%', 'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+\rΠ;K۔b/', 'ߠP x|ΘQ=	TcvL\n*Ȱ', '', 0, '?'),
('n]j7<3ISsQ', 'wp-admin/images/post-formats32-vs.png', '/home/binawebp/omsrislb.my/wp-admin/images/post-formats32-vs.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't.E5GN\Zv', '(Z,ImY,·ԗtGa', '', 0, '?'),
('n[	X}0', 'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LL#\0uD,Yi]', '~^ٴ	di*W<6', '', 0, '?'),
('nN⣥\\Dw_', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebPWithErrorHandling.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebPWithErrorHandling.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']M5+[1r', 'vO2zx<.DC53', '', 0, '?'),
('noYJ`', 'wp-content/plugins/elementor-pro/assets/js/slides.fb6b9afd278bb9c5e75b.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/slides.fb6b9afd278bb9c5e75b.bundle.min.js', 0, '-\Z''}HqƮ', '-\Z''}HqƮ', 'gY 8v\r[da(4~AT', '', 0, '?'),
('n#t=''b]{', 'wp-includes/js/tinymce/themes/modern/theme.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/modern/theme.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UE|h(Zf', 'ӣ	}ʫE0).TXKd~HNlK20', '', 0, '?'),
('n0<Pey\0.', 'wp-content/plugins/wordfence/modules/login-security/classes/model/style.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/style.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+hJN3}{', '{>ߓv18g<]''E#\\O@', '', 0, '?'),
('n4mxÝ~$Zc"\r', 'wp-content/cache/wpo-cache/omsrislb.my/sample-page/mobile.index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/sample-page/mobile.index.html', 0, '?历g3', '?历g3', '3[sh%C	=bRf+!', '', 0, '?'),
('n?<}rm''eq c', 'wp-includes/blocks/site-title/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\ZgDokxl', 'OQ?vEo\0\ZҖ%\\H3', '', 0, '?'),
('n@u،^XX', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-title.php', 0, '}(.xG+mb', '}(.xG+mb', 'ߋ5>?5cМa?', '', 0, '?'),
('nAj+uVG7d', 'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nR1՞\nixBi', 'S⃧=ȌbjKi$y', '', 0, '?'),
('nJ/˃\nF^', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NameDeprecation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NameDeprecation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bzC.\ZS[fa''', 'һo\\jԎN?g]\r\n]', '', 0, '?'),
('nJ,0~̴e', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-icons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-icons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\MnL3ӵ', ';\Zwn!S܆kS@cfL', '', 0, '?'),
('nW5{g', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.#RRx', 'T\\-?i{I1-%}0+O;', '', 0, '?'),
('nYq#(H1>ty', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet.php', 0, 'x;b@m!p', 'x;b@m!p', 'DL\r^ލpW~ɢb+P_<DJ', '', 0, '?'),
('nZ/1T:{&^/n', 'wp-admin/js/media-gallery.js', '/home/binawebp/omsrislb.my/wp-admin/js/media-gallery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_85o?', 'Ƥ$30IXC,b"0lNF', '', 0, '?'),
('n[.1Tʪ).', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']LP7q\\\Z', '(1݅AlpYn[M}', '', 0, '?'),
('n[dma[!`՟}', 'wp-content/plugins/elementor-pro/assets/js/frontend.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/frontend.min.js', 0, 'ݛZuFxG]S\Z', 'ݛZuFxG]S\Z', 'Lg2ML\0nγ/çc)', '', 0, '?'),
('nd=`RXӠE\\}', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-out.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-out.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߫~r؜m', 'ceKy WugDGUa`EcLW	', '', 0, '?'),
('ngGI4s(T', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	l#Y^=u', 'r=X,lU*F] ZQ[6qф', '', 0, '?'),
('n3Mck', 'wp-content/plugins/wp-optimize/optimizations/revisions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/revisions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+@M.o~K\\@p', 'm6۲?Ӌ2\n6:͒D#ms', '', 0, '?'),
('n|q$:D', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6X-,2s@;z', 'p9XYa»Gsdβ7Ʌɰx', '', 0, '?'),
('n@AF', 'wp-admin/network/sites.php', '/home/binawebp/omsrislb.my/wp-admin/network/sites.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L>!VMNյ', '7^^;XL_jl&Xaj;n', '', 0, '?'),
('nT!K.d|T', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S`G*\\ ', '*CX!w/-~G-!', '', 0, '?'),
('n\rU,i<Ѥ"tC^', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/css.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/css.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r Bz4#', '6nc\r讳\\ng,sz@lLA', '', 0, '?'),
('n<"hGVMf', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rIs', 'J#u۰?&?em0R>r', '', 0, '?'),
('nQ^"R''[''', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/UseTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/UseTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'blNiUVM', 'FM%OjMFԬRj\0', '', 0, '?'),
('nкvnj=ͮ', 'wp-admin/includes/class-bulk-plugin-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-bulk-plugin-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n%ͤYm', 'qr؝(;2%`F6\Zw', '', 0, '?'),
('n?q7\0Z:0', 'wp-content/plugins/elementor/assets/images/library-connect/right-1.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/right-1.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c$Z+.GD/', '8U\0ΠHl~Y*XaI', '', 0, '?'),
('n,Q3bO', 'wp-includes/js/dist/warning.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/warning.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')i.^=q', 'p6;fjD|>_f))ޜTxP', '', 0, '?'),
('n09jv8"', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ef!77#2A', 'QO|R)VqCW(@@+', '', 0, '?'),
('n-%8iW:', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/forth.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/forth.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fl\r\nx6j[w', 'Sla㾠WH[;n,', '', 0, '?'),
('nۗvXH)', 'wp-includes/sodium_compat/src/Core32/Curve25519/README.md', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yϛvj\n', 'Sx^V>m!-qDeV', '', 0, '?'),
('oPCL60', 'wp-content/plugins/elementor-pro/modules/posts/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/data/controller.php', 0, 'k>w8״', 'k>w8״', 'vhj6/Y(JOVeӰ3', '', 0, '?'),
('o!#c2^', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XiFnq=u', '; ~3>ǲ"M\\z', '', 0, '?'),
('o!Ř56G.;!B', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{y@+i¹c', '=AwQ*qCA̺`cY ', '', 0, '?'),
('o''RD-\0o', 'wp-content/plugins/wordfence/images/support.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/support.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cl$rn<.', '$MԮ&(ᩘs^	Ϣ*N', '', 0, '?'),
('o1iL5z$7', 'wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u1\\8;#j-', 'P|l_Z3z<NɧK', '', 0, '?'),
('o;!2y', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H1:?\Z', '-RS35о3};$K9', '', 0, '?'),
('oA-^^,ٕT', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Caj\Z TU', '4CH~{a}C<Bq8~勋', '', 0, '?'),
('oC"Qty', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+%', '4!H:6>lEEc#a{A{', '', 0, '?'),
('oDLJUv$', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qE//bd', 'SЖ箝&Ooa?@0,FF"+', '', 0, '?'),
('oHXN!F', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/ExtensionSet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/ExtensionSet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hܞeͰ7qi', 'b&Òm44&e?#:a', '', 0, '?'),
('oPco.r', 'wp-includes/js/tinymce/skins/lightgray/img/object.gif', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/object.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rdPE}u\n/MA ', '#;!I.>uʍSVm{|e-', '', 0, '?'),
('oS]~(7;\r', 'wp-includes/js/dist/shortcode.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/shortcode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$0O2FwyE\0''', 'BAVɀxEO]uq)T\\', '', 0, '?'),
('o\\x\nʛHt7{6', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӵxo!', '[f DAd,ϡJkCqF~', '', 0, '?'),
('odр''E{o', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-container-extras.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-container-extras.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ج]Jw?4', '*T?f"56;Rx)+)ܹ>', '', 0, '?'),
('ofGkL`t@', 'wp-includes/blocks/cover/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',A{7d-', '1m`jnp c4sG妏o&Km', '', 0, '?'),
('omprS', 'wp-content/plugins/elementor/includes/elements/container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',߂Ut\0#', 'N1IH.xD1"NI', '', 0, '?'),
('ongy 0Rw', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-factory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-factory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0H0(jb\r', '421%4ZseG&E\nWzkn0Е', '', 0, '?'),
('ooÆ%(sdA', 'wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f\nmxt,#k', '"0@"8)vNJ}vφ\nE', '', 0, '?'),
('ov̑QX14', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	u''ˈhV\n9~s', '~_1nz%& `Qm`-76', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('o}C܊8EG', 'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E8uChG<o܅"', 'TQtݓzωT0A', '', 0, '?'),
('o<3!]\Z', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/template-types.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/template-types.php', 0, '	@c]r\\NfQv(', '	@c]r\\NfQv(', 'ׯZ<\ZMؿr*-8L', '', 0, '?'),
('oȼY8', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-18.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-18.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WEe8	dӹ	)', '*V\\Ku%,-ˉ	', '', 0, '?'),
('o)K@dYZ,', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/arrow.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/arrow.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dm	8f|Y', '~%ۉ%>BlouI)ȉ7g', '', 0, '?'),
('oY\n-(q,V=', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-base.php', 0, '+3q:P"7', '+3q:P"7', 'va5<D%R΄`ؠL', '', 0, '?'),
('ow>cuis', 'wp-includes/blocks/term-template.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʧR}\\Bu', '5ԣR\Z\r(bVzNI&Ac', '', 0, '?'),
('o	ǻ	&c', 'wp-includes/blocks/paragraph/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's9\n}	q¾', 'Ŕl~%"Q ^Db\\', '', 0, '?'),
('on5ZhF', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/import-runner-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/import-runner-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '۝	,oGo', '0	غX]Et\\3[VTn\\(', '', 0, '?'),
('oZuon', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-comments.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-comments.php', 0, '[V\0Rsرs*o', '[V\0Rsرs*o', 'Gf7\0OID7Vf\0M9', '', 0, '?'),
('ow*\nΛ΢GҜ]', 'wp-content/plugins/wordfence/modules/login-security/img/header.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/header.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p]j-', '8#̄(8O"	+h"Fb', '', 0, '?'),
('ov|', 'wp-content/plugins/code-snippets/php/views/welcome.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/welcome.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_vQ<D$q@', 'Y<"5+U*VکQCI[6L;', '', 0, '?'),
('oZJ&,ZJ\na', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exception.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8ڵ$W', 'Ѓy`I_I$sG"aEoTJXK', '', 0, '?'),
('ov.5R.k;+', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uN|*;j|', 'ƣdp5:l`DSYYjm8+', '', 0, '?'),
('o㮚-;?X:pҡ', 'wp-trackback.php', '/home/binawebp/omsrislb.my/wp-trackback.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O(t:]k', 'Ӵ,dX,#&VAo', '', 0, '?'),
('oCɶT6N', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterEqualBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterEqualBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\޸Tq\rדT~', '̶8]`DZ,&Ba5Rwhy', '', 0, '?'),
('oYڅX', 'wp-content/plugins/wordfence/images/flags.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/flags.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W7 (˿!\Z7', 'Bx0%Ly6!X\\z/<n6=\ZW', '', 0, '?'),
('obvmTj!` i''', 'wp-content/plugins/elementor-pro/modules/notes/data/endpoints/read-status-endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/endpoints/read-status-endpoint.php', 0, '	mxSEwpG', '	mxSEwpG', '\\Ir\0pH攴:ZN ', '', 0, '?'),
('o[n3uʹP5', 'wp-admin/options-general.php', '/home/binawebp/omsrislb.my/wp-admin/options-general.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E+\0:we@', 'aEj9e\0[3qi~ZeTU!', '', 0, '?'),
('oW¬\Z', 'wp-content/plugins/elementor/modules/wc-product-editor/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wc-product-editor/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S UgGW|]', 'xV^A#ܛ%"ǌ@MR}', '', 0, '?'),
('o^)ek~sm', 'wp-content/plugins/wp-optimize/images/notices/minify-video-preview.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/minify-video-preview.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'moYtp', '\rX+ ZbPgMSGCN', '', 0, '?'),
('p7uL_{2Û', 'wp-includes/js/jquery/ui/draggable.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/draggable.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZA["rr3C', '5sɦ^M~t$2{\\', '', 0, '?'),
('p$8ιd9()', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vr|4P', '4B{}qVC1ODhE', '', 0, '?'),
('pF}GaKh', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S6K)''', 'n	f}#mLp\ra1Hn1<', '', 0, '?'),
('pt@CF', 'wp-includes/blocks/template-part/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ed]ĬB\r	', 'ģ6o_i9-UL9#ܞfz%cSJs', '', 0, '?'),
('p֡.Cr*', 'wp-content/plugins/elementor/assets/js/packages/query/query.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F-4׻ۺ?1E', '4/!3t}t7y75O8~U4;L{;', '', 0, '?'),
('p{\r %>/Z:', 'wp-content/plugins/wordfence/views/scanner/issue-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8ϼg v5aS*', 'N.0-?s?,ߟ`.B', '', 0, '?'),
('p&.U4v', 'wp-content/plugins/elementor-pro/core/notifications/notifications-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/notifications/notifications-manager.php', 0, 'u0<', 'u0<', 'cN2nA3X+4BO1ER\r26,~n', '', 0, '?'),
('p+~(`_nh', 'wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڠrJxaY', '6wZy"pqUQx21WY	', '', 0, '?'),
('p:,`OlL(A', 'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k~H7<B', '\0!FEKP7߻0\n;6}$', '', 0, '?'),
('pE+V?', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-snippets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-snippets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' Ks7\r&', '\ZsF\rraȹa:\0%''̵', '', 0, '?'),
('pMBrߍ_	', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cirru.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cirru.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NQ6pT', 'LChLB٬%̆ߋI', '', 0, '?'),
('pMbVZ;', 'wp-includes/blocks/media-text.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XM6|~dz', 'Kn:7Y$޽ÓRӆ5', '', 0, '?'),
('pS?;qU', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-content.php', 0, '7.d_Kt', '7.d_Kt', '\r	CBx7>\nM%7', '', 0, '?'),
('pUya	bva;8', 'wp-includes/js/comment-reply.js', '/home/binawebp/omsrislb.my/wp-includes/js/comment-reply.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U08\n[ƇLf\Z@', '!OW,`#w=r[|ҧN!5', '', 0, '?'),
('pbA]%ꞢSV8', 'wp-includes/block-supports/background.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/background.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',17H:', '۠>!y8u\\Y9]', '', 0, '?'),
('pr"BHn;_aO4', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',w*_{ݒ', '@b`p@G:<{!|', '', 0, '?'),
('pwQFcߠb*', 'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@$qG2k5$z', 'ֆF*`''O triR:j0W\Z=j', '', 0, '?'),
('pV(p6NzmI', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-styles.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-styles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F|o+9w@Ş>', '1gdsIT@ehfP r~', '', 0, '?'),
('p?~', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Oric*', '`}!3_]H6MzqqG=0lg', '', 0, '?'),
('p.а[ÍD', 'wp-includes/deprecated.php', '/home/binawebp/omsrislb.my/wp-includes/deprecated.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~Nz', '^[⾂Y{cZV', '', 0, '?'),
('p1Ȝm!J', 'wp-content/plugins/elementor/assets/js/video.d862fafddbe5d05459f3.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/video.d862fafddbe5d05459f3.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ɣ](co', 'AD&-Hf}{٣0Ȼ $xK 4', '', 0, '?'),
('p:h!Je7EwY;', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>5 y"q~;Z', 'u''[^He6#G"_9%.MI&', '', 0, '?'),
('pȗ-wu', 'wp-includes/blocks/post-author-biography/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʂnX''''XU', '\nL]ZU3	&7=Zk^', '', 0, '?'),
('p$y1ӂA', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abap.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abap.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wA=I,G +', 'tAV]V?Gy">s!kj`', '', 0, '?'),
('p\\*e\n\rψ', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"cdxW{fNb', 'Oj+hŤ\nⵃ8Qܮ#w_pC', '', 0, '?'),
('pc?(Tk~mw', 'wp-content/plugins/elementor-pro/assets/js/share-buttons.c958afb760bce7436ba0.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/share-buttons.c958afb760bce7436ba0.bundle.js', 0, '\0jc2O\r5', '\0jc2O\r5', '^t5/4/.ky\r4U\0', '', 0, '?'),
('pŧ\n+R2Zb', 'wp-includes/blocks/post-title/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+Ib=bo\\`h', 'J(JQXClSM:`2', '', 0, '?'),
('p3Tː\r_%:', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ResolverChain.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ResolverChain.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N\n"5=o', 'E\0{w]lrT_L!', '', 0, '?'),
('p̓02@PFtk', 'wp-content/plugins/wordfence/views/common/unsubscribe.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/unsubscribe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y:h3>a ݑ4~', 'EqTgO>F-O(IƚZz', '', 0, '?'),
('p/a(z7', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@NDLv=LP', ':ϟcƔMa5<c?Il27-*', '', 0, '?'),
('pӬqX"%&D', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/README.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"lG3', 'L\rYh\ZfYPM?<ͼh', '', 0, '?'),
('pնvI^ؒ&&;:', 'wp-content/plugins/elementor/assets/js/editor.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_{8*%Nx,"', '=^&!v,:S6ETl6', '', 0, '?'),
('p}GJ$x', 'wp-includes/block-supports/align.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/align.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''joyJ', '^{L7\\br;GτR;֒', '', 0, '?'),
('pdGsm0', 'wp-content/maintenance/assets/timer.js', '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/timer.js', 0, 'I084Եl\0F', 'I084Եl\0F', 'E.OK\Z=JDK5%', '', 0, '?'),
('pJȮ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0qO6\0bbO@', '$d.	9iav&xc#j', '', 0, '?'),
('pt\\\ZqؔY', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dq:$4kCR', '|_Ja37Zx5	L/\\	', '', 0, '?'),
('qqC$@', 'wp-content/plugins/wordfence/views/common/page-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5*<X;', 'N5%=kUHVKAlEI"3j', '', 0, '?'),
('qsAtd\\', 'wp-includes/js/dist/warning.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/warning.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	zBXm[(@;S', '\0ޝvp,ia7:/\rY''W_U', '', 0, '?'),
('q"co>2Rh]', 'wp-admin/includes/plugin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ŚK%d', 'Q]G8tn"^I-f"7S+t[', '', 0, '?'),
('q%)ud	', 'wp-includes/blocks/buttons/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$p;X4䔄', 'y(^ݚ׾U=;C/_Bә', '', 0, '?'),
('q1HamH Q&pR-^D', 'wp-includes/blocks/image/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'djvY#vc|/?޻d', 'H7%:6x:?ߕd>E', '', 0, '?'),
('qLILc', 'wp-includes/class-wp-recovery-mode-link-service.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-link-service.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zBWZ 	m\r\0', 't\n_qGƵby}2+\0I', '', 0, '?'),
('qMH,Xb,Zډ', 'wp-content/plugins/elementor/core/base/elements-iteration-actions/assets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/elements-iteration-actions/assets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x85', '|Np]=''ޫN9̌', '', 0, '?'),
('qP?e@-', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/1.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/1.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7&3tb''3;|', 'mnQuiC>:yb\r|', '', 0, '?'),
('qW1|3,sfQ', 'wp-content/plugins/elementskit-lite/widgets/team/team.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/team/team.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V|?0ɤ\r>ղ', 'FAmGviSԷiE|a8е', '', 0, '?'),
('q]ai͍6#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-r.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-r.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+UOEbOUѿ', 'wQlwi䀵L`|h0AO8', '', 0, '?'),
('qh665y|=?S	', 'wp-includes/js/jquery/jquery.serialize-object.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.serialize-object.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*DB\ru6!', '`RԶ2ɀ`MxiGfzC2', '', 0, '?'),
('qjpQ*sK}', 'wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js', 0, 'X~] uI', 'X~] uI', '%ؘSgaDJvXakWZg', '', 0, '?'),
('qjO.CެИ}', 'wp-includes/blocks/navigation-submenu.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B-aKh]\0q]', 'VSgn}3ad$\Z|2z', '', 0, '?'),
('qk9ŰupEx', 'wp-content/plugins/wp-optimize/templates/database/optimizations-table.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/optimizations-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4Uł[sCT,', 'WNplOrD2VurA寖r', '', 0, '?'),
('qfEH7d', 'wp-includes/css/dist/editor/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm_MiMJI', '_~-Zom,lVOyD;7', '', 0, '?'),
('qsƞù', 'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'еGt㣤St', '~eI{_dz²G\ZT岏Z-', '', 0, '?'),
('q.Gu$', 'wp-includes/blocks/comment-date/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e\08/>YF', '½2}8ezF>X:f\0Y"Mꄴ', '', 0, '?'),
('qZ\0=s\r\r', 'wp-includes/blocks/text-columns/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J̜"Ա1R', 'as\0J2JIo&3Q8&NT3W', '', 0, '?'),
('q1dNj\ZhlW', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-default.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-default.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c=n+V|5', 'Xr,(\Z5w*)꛳}W4Dg', '', 0, '?'),
('qR+q\Z2', 'wp-includes/js/dist/edit-post.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-post.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l 8S.*s6],y', '`|N''˗zU^V%%', '', 0, '?'),
('q,Wڪ$wĤ@', 'wp-content/plugins/elementor/modules/library/documents/page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DpnO7!k', 'ƕ_oZ~0Wг@#="!tyO', '', 0, '?'),
('qi>ܝ4`-"', 'wp-content/plugins/elementor/assets/js/947434f8f98ed29acc17.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/947434f8f98ed29acc17.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' tigM', 'F=R"mף׆t 0y\0Al', '', 0, '?'),
('qck$u>', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.da27b22c491f7cbe9158.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.da27b22c491f7cbe9158.bundle.min.js', 0, 'i+sr;', 'i+sr;', 'ɲ[\\>FUrXlTYA r	', '', 0, '?'),
('q8JĤHwpU', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFileException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFileException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_Z{C0w(-', 'dO눞]bb>$6-?Z+', '', 0, '?'),
('q05', 'wp-includes/sodium_compat/src/Core32/SipHash.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/SipHash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5O&?E	%', '^%%hT,k2Ȯn=n%:', '', 0, '?'),
('qEv{Z[', 'wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q~f"', 'p,-gWԎW.cEM', '', 0, '?'),
('q5@*=&\\X', 'wp-content/plugins/wordfence/lib/wfHelperBin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfHelperBin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';!ȍ4QX#', 'չ%-^qUqMeY', '', 0, '?'),
('q$ܱM9\n', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/groovy.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/groovy.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*CbJzI;E=8', 'xZgvOy{Zȑ4@j', '', 0, '?'),
('q$''6e-W]', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ثv', 'hG8J4"G`ǖMDz', '', 0, '?'),
('qCIVge,1', 'wp-includes/css/dist/block-library/editor-elements.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c|$\0{o', '$2iQf~'':Sr4:A>', '', 0, '?'),
('qU	\nFx', 'wp-content/plugins/elementor-pro/modules/theme-builder/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/module.php', 0, 'Z', 'Z', '''ݱݥ =Y¾B{:f~,vn', '', 0, '?'),
('q;.,x2VHe', 'wp-content/plugins/elementor/includes/controls/textarea.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/textarea.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'þ^zhY2K', 'B/2lD9`݋!d;6', '', 0, '?'),
('qt(\r.I''`', 'wp-content/plugins/elementskit-lite/modules/controls/control-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/control-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}ʦTQ\nE~', 'ʧ/HkSl6"W+i8dʼ7', '', 0, '?'),
('qi֬yd+O''', 'wp-includes/css/dist/commands/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!a\Z,BȞϵ', '>6h& ;"Oю}\rYx^giDц', '', 0, '?'),
('q?CXC"N', 'wp-content/plugins/elementor-pro/modules/forms/fields/tel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/tel.php', 0, 'u/̍[,/P)J[', 'u/̍[,/P)J[', '!.>BE-z7u5T', '', 0, '?'),
('qh\0''v"1k', 'wp-includes/blocks/comment-author-name/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x9\rp\r8K', '|ާBOCoi77=_!]Б', '', 0, '?'),
('r	ڨ[KU&Z]T', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-base.php', 0, '¸v[', '¸v[', '!AF4ܾQ"}PsG', '', 0, '?'),
('rhvLk/', 'wp-admin/network/upgrade.php', '/home/binawebp/omsrislb.my/wp-admin/network/upgrade.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_ĩ\rp.k', '<4FXA_XOZDh', '', 0, '?'),
('r"%1}/2Y', 'wp-includes/blocks/pullquote/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '({v.d', 't+9CQ0aB2PQ\\M2\0F', '', 0, '?'),
('r"H3=9v	', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/number.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/number.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YȭĮ>߻X', 'T@@^8E/4UceK7\Z$\Zv', '', 0, '?'),
('r+zk; 4WI', 'wp-includes/js/tinymce/themes/modern/theme.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/modern/theme.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(3oU2ŝU2', '2.pt"r`)\r.Cl\\\ZBIX', '', 0, '?'),
('r3\0=\rjBZ', 'wp-includes/js/dist/widgets.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M/''AKY*L', 'Aw!Z~Čyyް9_=¾ ', '', 0, '?'),
('r7%Gɤ', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-cache-functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-cache-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k0)\\ֈR_', '$xjeҔ$;nuvZXX/HX', '', 0, '?'),
('r<2-R\\2}b', 'wp-content/plugins/elementor/assets/js/contact-buttons.c21325756a91b795f8e4.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/contact-buttons.c21325756a91b795f8e4.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e:qe&;y', 'n$7YP\Z0[{b{v8UC^D\rp', '', 0, '?'),
('rG6#?ߑAkT', 'wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-j7εԂ', 'g0n={-+hgmf[', '', 0, '?'),
('rI\0ygE!2\0C', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ļ 0ͱ\Z4[', 'a?''J%;Nį9l\\t߰|X', '', 0, '?'),
('rQvIuC<z', 'wp-content/plugins/elementor/modules/apps/admin-menu-apps.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/admin-menu-apps.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xt/f͵J', ':u~9u͟`LVJ?4', '', 0, '?'),
('rc8_CwV', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6[Wr_rp', 's-kn)%G+b͏1+!', '', 0, '?'),
('rnu2˻3Θ\0xgxO', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/quick-start.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/quick-start.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q~M`|rJ', '>yʬKct!\\LhH', '', 0, '?'),
('rtIg[;?', 'wp-includes/sodium_compat/namespaced/Core/Salsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Salsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rVNck0}/Ճ', 'nKkZ	 N$  EКe$', '', 0, '?'),
('r~@afx.Q', 'wp-content/plugins/elementor/assets/js/frontend.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0a8S[cRݷ', 'ъmvE\07\Z<@ 3', '', 0, '?'),
('r6Bur\rW', 'wp-content/plugins/code-snippets/dist/prism.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/prism.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W! :B[	', 'QD*ogATheځ', '', 0, '?'),
('r+-_`._', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/MinApp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/MinApp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	30U.t]', ';1:l*pPCn7owR:l5', '', 0, '?'),
('r(n՞jb"', 'wp-admin/js/media.js', '/home/binawebp/omsrislb.my/wp-admin/js/media.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/dbq0', 'm2\neb+HHVgꖃ@', '', 0, '?'),
('r.")_p*x', 'wp-content/plugins/elementor-pro/core/connect/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/connect/manager.php', 0, 'HЍ7KNaW', 'HЍ7KNaW', '3`|H}7:8;h4"z', '', 0, '?'),
('rz_}v\0\\2', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/initial.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/initial.php', 0, '\\fVTW', '\\fVTW', '6[;ePt%Ϗ04', '', 0, '?'),
('r[19\nj;', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vhdl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vhdl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hg)~bubel', '޸ضa/Lmf)c\nm''tI', '', 0, '?'),
('rI=NxX]-1', 'wp-content/plugins/elementor/assets/js/packages/query/query.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('rʐnX?os', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js.LICENSE.txt', 0, '>7y՜', '>7y՜', 'z^D}\nibpU~P', '', 0, '?'),
('rr~:99(\nUmaʵ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mysql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mysql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o@=HܣSJ', 'zTڹ/UJs!Frq%Rs	Ži*', '', 0, '?'),
('rgKQaW@', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/traits/tag-product-id.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/traits/tag-product-id.php', 0, 'Ah+Q#;', 'Ah+Q#;', '갼|K"~\n1(&2=tulg', '', 0, '?'),
('r&EeDq', 'wp-includes/blocks/social-links/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ma:t', '-m*tb"""NZ}c˅', '', 0, '?'),
('r5-4:\r-{{', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/TokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/TokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xy4XEj', '^J\rq\ZУ\Zn|iS8CkE', '', 0, '?'),
('rō7T\0P`o', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_bright.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_bright.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ÀԥW>nE''&', 'ZkoQz00U䋩6f', '', 0, '?'),
('rɁh\r͌', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l]ȟgm', 'juk,?4׮K=:^Ziy', '', 0, '?'),
('rof:gX''', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/sitemap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/sitemap.php', 0, '*5?''\r', '*5?''\r', '\reRn\0zUkx"\\T*j&͆', '', 0, '?'),
('rxP4', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SubBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SubBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ;"~;/pN', '=`kvDRs#	@m-SaC\rp~\r', '', 0, '?'),
('rG''߮.CNX6', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CacheInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CacheInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '35d=#\n9', '\ZEpnycHNl㘕5a%G', '', 0, '?'),
('rnz\0`]e#+t', 'wp-includes/blocks/comments-pagination-previous/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-previous/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#nq6ϟ\\', '\0e''a 2A=Fd]0$f*d@', '', 0, '?'),
('r3e\\,Sq', 'wp-includes/class-wp-block-supports.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-supports.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6<3묉E', 'Nb>%8]vm>!Xfj', '', 0, '?'),
('r~sn;ɭ ', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I0lRPf	x%', 'hbZ\ZiϥBC*aFPrU{', '', 0, '?'),
('r_/HG=%<', 'wp-includes/images/arrow-pointer-blue-2x.png', '/home/binawebp/omsrislb.my/wp-includes/images/arrow-pointer-blue-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%mrތ]49c', '{&DOzAf/gáA]~(', '', 0, '?'),
('rr(Jg(yt', 'wp-includes/js/mce-view.js', '/home/binawebp/omsrislb.my/wp-includes/js/mce-view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(a3[Mz>', 'B	=<GcO.η7)f', '', 0, '?'),
('rs욖Ms\rJ', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/transformable-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/transformable-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`krĿJםJ', 'UƺYDm;˖!#{', '', 0, '?'),
('rj70^', 'wp-content/plugins/elementor/assets/css/app-base-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nO8Qᱤ#E', '.Z$>/\0<߶ESұ,6', '', 0, '?'),
('r)el', 'wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_bМmA', '̮\\\\\0_r؁I^gd~Mcx', '', 0, '?'),
('rh^g=', 'wp-includes/blocks/embed/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/P\\A8X', '0EHCg\\,1m#5}', '', 0, '?'),
('r\nb#', 'wp-admin/css/media-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/media-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',uY;C', ')(.Tkfj /h8xI', '', 0, '?'),
('r7/y*aڛP] 0', 'wp-content/plugins/wordfence/views/blocking/blocking-create.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/blocking-create.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A^(E>{~<', ' 0BSrک:/rnIhev', '', 0, '?'),
('r7>F	s")', 'wp-content/plugins/elementor/includes/controls/groups/flex-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/flex-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zNղ?1uZ', 'C"` @ <4Ăî\0g >ݱj-', '', 0, '?'),
('s?ojz', 'wp-content/plugins/elementor/core/files/css/post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DEV\ZWHE', 'I3Q=PЃ|C?e>zBN', '', 0, '?'),
('sAsYD]', 'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-advanced.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' (_0tKG`C', '&ITaw0^}uT:]FvB+', '', 0, '?'),
('s"ylБiT', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/definitions.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/definitions.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^P`4\nzh', 'AX)J4x(,Zi՜L\rI_*[', '', 0, '?'),
('s#D*bG?!Si', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/referer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/referer.php', 0, '$	~b"w8', '$	~b"w8', 'Sd>?v7"Ybne`Q', '', 0, '?'),
('s*fdƩ#', 'wp-content/plugins/elementor/assets/js/editor-notifications.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-notifications.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4[[8]Lڱ)7', '[&>}8	,a8¿dح>.Rb', '', 0, '?'),
('s1Ai(KM[h', 'wp-includes/css/dist/base-styles/admin-schemes.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '><;-\Z7[;@i', '0U~b\n):cjqX^^ePN', '', 0, '?'),
('s<BB(vЇR!', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/README.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0xӉ׺', 'ۡmDR\ZLN#\0G', '', 0, '?'),
('sFE!mL(U', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-box.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-box.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2dhF26', 'RfJMPU8gLؿV!', '', 0, '?'),
('sLYCa', 'wp-includes/blocks/embed/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\"m]@C', '*ē#FϚ\0jk5h5ݢ<', '', 0, '?'),
('sPm18ݩA', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rst.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rst.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TnhAc[', 'ڠ3k1}fK\0h''', '', 0, '?'),
('saOY,~r൭k', 'wp-includes/blocks/search/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[svpӋna[', '"_Ȏ%?҂9NlJwAC9)''	', '', 0, '?'),
('soel', 'wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7!rap7Ĉˋ', 'NkP(19!Y-VC̖!\ZK3\Z DD', '', 0, '?'),
('spE$JqwyP', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AglInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AglInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~OҜ#ܢl*\rٌ', '$%6d\r*x̪ewW''', '', 0, '?'),
('sLwѥa?', 'wp-content/plugins/elementor-pro/modules/gallery/widgets/gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/gallery/widgets/gallery.php', 0, 'pQuoYzl', 'pQuoYzl', 'V@^Rqğ6#Bym', '', 0, '?'),
('sxeMK$O,2Lp', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/match.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/match.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ztJx', 'rlX !7W\0#LurStk', '', 0, '?'),
('s=\nߪ<aMa$', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-terms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-terms.php', 0, 'xōS)p ', 'xōS)p ', 'Q!>)peР	H2Ddܫ)', '', 0, '?'),
('s}"pc<+', 'wp-content/plugins/elementor/modules/link-in-bio/base/widget-link-in-bio-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/base/widget-link-in-bio-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GXhFLzuA', 's,w:<\raaq	Kic', '', 0, '?'),
('sEΞqpB', 'wp-admin/css/widgets-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/widgets-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|k߁s_n9', 'pC,''''aQjs!,:L||vl0)', '', 0, '?'),
('sWh~', 'wp-content/plugins/elementor/assets/css/div-block.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/div-block.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(+\n}uX~\\', '{U!	H[3<5B\Z8', '', 0, '?'),
('sGW!2J', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseOrBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseOrBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xږ%w֢/B', 'Krh^q-s>ىWXTSP', '', 0, '?'),
('s$ބ5-6', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haxe.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haxe.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/y$.@%', '8ݤ63\r<fvm3Ng-6', '', 0, '?'),
('sƓDOj', 'wp-content/plugins/elementor/assets/css/widget-accordion-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-accordion-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CdFB^3gs', 'Dl>w.nACRTiX(%', '', 0, '?'),
('sѦA%HBca', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K9w%.Xx', '+M/ijh\n\0_<\rLţL9W', '', 0, '?'),
('s2j+ψ^\\', 'wp-content/plugins/elementor/modules/ai/feature-intro/product-image-unification-intro.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/feature-intro/product-image-unification-intro.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g ''hwe.;', 'W:EZ2\rɚ*9=^"PA', '', 0, '?'),
('sŏU''e@d', 'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ғ:K[Iw\\g', '`e	nOJM%NhA{ghf', '', 0, '?'),
('s4RX>O', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h^n=(&݂N&', 'SDIBz_-?(YpEyƹA', '', 0, '?'),
('sVfkF+', 'wp-content/plugins/elementor/includes/widgets/wordpress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/wordpress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uh+z֞[', ' sR\Z>]fԢ\n{E\nyRf', '', 0, '?'),
('sJʏ?<E', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K.oƺmI', ',oGShdzeÚ9,GcH33', '', 0, '?'),
('s˱Y*uO', 'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^ˀJΗrhZ/Na$', '	:H0v=T$bԆ^s\\71͐', '', 0, '?'),
('s*TV1oE', 'wp-includes/js/jquery/ui/effect-blind.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-blind.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O`4o<X#', 'ai[I7JH&Gvc', '', 0, '?'),
('sC4M**B)', 'wp-includes/css/wp-pointer.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.D57%\0\0,^f', '6;8|ʯ6-X\rT܁EMx+-(4|', '', 0, '?'),
('t\\D	Zt ^\r7', 'wp-content/plugins/elementor/modules/admin-bar/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/admin-bar/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1߽H	]@', 'hS^7:9yy?-vlO	(>7', '', 0, '?'),
('t9$Ýt"f,', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-cobalt.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-cobalt.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h((ǵe@', 'bbLa}<)sip쬙', '', 0, '?'),
('t	U iާ"s', 'wp-includes/blocks/buttons/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$p;X4䔄', 'y(^ݚ׾U=;C/_Bә', '', 0, '?'),
('tIˎ.N,׊', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.07b1efa10b4a0c3db9f6.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.07b1efa10b4a0c3db9f6.bundle.js', 0, 'n4:"=~ :', 'n4:"=~ :', ' $r\Z@` "~:y', '', 0, '?'),
('t^YDLב', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P{:ӣ\nu`c', 'Z20fH6ۑK@ljn', '', 0, '?'),
('t ~@r.W8_', 'wp-includes/blocks/avatar/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xl}EG\0~<Y>', 'W8\01WSac)#\n77N', '', 0, '?'),
('tá\r滮', 'wp-includes/SimplePie/src/HTTP/Psr7Response.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Psr7Response.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w~T~?j$K8', '>!\rhAs=7=cd}ޚ', '', 0, '?'),
('t%Y>,H', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/index.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/index.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!)\\IE+&', 's.E65r0	6', '', 0, '?'),
('t%"6ZD~)Nk~', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/tools-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/tools-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ͫ ϙ', 's\\`GMG\rٹpN\Zr\n', '', 0, '?'),
('t/Ji6WX', 'wp-includes/class-wp-recovery-mode-cookie-service.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-cookie-service.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǩ.l', 'kuXx^-b\ZrP^ΊMi', '', 0, '?'),
('t5^	kS(1zG^', 'wp-includes/blocks/archives/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vw-)OV', 'L_xI:"xױ9W^ay', '', 0, '?'),
('t6O\raȆf', 'wp-admin/js/plugin-install.js', '/home/binawebp/omsrislb.my/wp-admin/js/plugin-install.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'chPP\rDW', ') $K8v3X&okv', '', 0, '?'),
('t8p̋z{jDp', 'wp-includes/css/buttons-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/buttons-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xqh`RI\rƢB', 'zϵ1.eR5Ĕ7¿+?', '', 0, '?'),
('tD,Q', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r(\nʖƏ', 'N9|[~2#³\Z', '', 0, '?'),
('tU/DsIڤst', 'wp-includes/js/wp-auth-check.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-auth-check.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H6bX+M''', 'n@to:\\e!65,KV\\=', '', 0, '?'),
('t[[=6u7;YT', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4s[lAc4f', 'ƺ>y.~yK^)*f6F', '', 0, '?'),
('ta;_Y\np=[_:B', 'wp-content/plugins/wordfence/images/icons/check.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DFPL', '+ʣфȯ?+\0_ŴQq', '', 0, '?'),
('tm6ۗq.=j', 'wp-admin/css/colors/blue/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g<ڎ1A', 'r8;"ˡzrs|', '', 0, '?'),
('tm\nGO	''\Z޵', 'wp-includes/js/jquery/ui/mouse.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/mouse.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ÂV]jfCv', '\Zµ9MҝץH+28Þi', '', 0, '?'),
('tڭR"LAа', 'wp-content/plugins/elementor/assets/images/blur.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/blur.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϸV\Zغ^l[', 'Ufua3ctϧK{a<\Z9o4', '', 0, '?'),
('t''-\\Z', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsById.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsById.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#TUs\0', 'G7:br9pH[	yjYuϯ*\0ɣ', '', 0, '?'),
('tӧLAKA!%0', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YoS1T9[]}V{', 'x?;E*ߝAfO\ZM', '', 0, '?'),
('tm}?j5ƶk', 'wp-content/plugins/elementor/assets/js/beta-tester.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/beta-tester.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Րv<ڽ͹', 'hY#|$Xr9OK"M\r', '', 0, '?'),
('t|6`wp7V͓;4', 'wp-content/plugins/elementor/modules/element-manager/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#]\ro?*', '!m\ZMIUZ1 u#v', '', 0, '?'),
('tROLZ''', 'wp-includes/blocks/query/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B8CЌPA5', 'p	G"9<VɏNŌ\\', '', 0, '?'),
('t߉y"pJe', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Aq&S`', '7N}}-e\\`\0uE`', '', 0, '?'),
('t7pG:-G&', 'wp-includes/blocks/tag-cloud/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3lJPC<]0', 'V)\ZMpv~PɐɞHD', '', 0, '?'),
('t}jlU)@u', 'wp-includes/css/dist/edit-site/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I4Rn⨶', 'DBjW_,_pMwtD', '', 0, '?'),
('t~<B@uB^\\', 'wp-content/plugins/elementor/assets/js/nested-accordion.a0f28ea648b29da812a1.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.a0f28ea648b29da812a1.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V"f	&黼', '0dJ\\gNRlu%', '', 0, '?'),
('t ʢq', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/admin-script.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/admin-script.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1CwҰo`Q|', ' t0?s]i`RWq)8J_Z65>$6&k', '', 0, '?'),
('t[mb_bAC', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[)T=\Z&A', 'Mԡ+@Ndy7pڂQ+f5Ϫ', '', 0, '?'),
('t!|KjCsI-\\', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ъ<\\vkrk', 'm|f,=}Ml5N', '', 0, '?'),
('t\0a\\_''W', 'wp-includes/blocks/table/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M\Zڪ\r\0Y`4', 'Zמ)Y_VbevdÂV5', '', 0, '?'),
('u\0)6$Hg-', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/prolog.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/prolog.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M`4', 'qU:X\r_wzR+ݡ\ZAr', '', 0, '?'),
('u64E~:', 'wp-content/plugins/wordfence/images/icons/working-indicator.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/working-indicator.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VF{N	''G', 'fXRZ|:Ob=f[y5 ~	', '', 0, '?'),
('uOs"6+\\', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-image.php', 0, '"gkRjʎ ', '"gkRjʎ ', ', CL)+S¼"\\hZ', '', 0, '?'),
('u$Nq})eh', 'wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x{gZ]', '+Map\Z\ZMB^l]QsxO+B', '', 0, '?'),
('u&T\nBxۭ`', 'wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Di$SuN', '	Hţ=BWPq,ւ	\0', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('u)zZhLP|', 'wp-includes/blocks/spacer/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rzP#R\r$-', 'ލ!]L13q+#u}N!"oh\0x~', '', 0, '?'),
('u2t"[3#[', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/TargetNotFoundException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/TargetNotFoundException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~ayOc)\rFH"', 'I?Ԗ@bJ i־)\Z+_', '', 0, '?'),
('u6Ԫ0:hwdÃڏ', 'wp-content/plugins/elementor/assets/css/admin-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʁȀ\r\ZVX', 'OopЬԋ*vC:/?ե', '', 0, '?'),
('u:{1ʮXO6', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/upload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/upload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EԗBZ\\O', 'nIPJ/4:]֑gl><p$', '', 0, '?'),
('u>]\0aO<G:5Z', 'wp-includes/blocks/latest-posts/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yJd\\X', 'J#}ߚsnnQs''YJLA*AO%', '', 0, '?'),
('u>hsuVs5', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/fix-indexes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/fix-indexes.php', 0, '2LER@PhP', '2LER@PhP', 'o<ʋeМDER|I>cX', '', 0, '?'),
('u@\07Bj{', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-15.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-15.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LQ6`]j', '=6ƍZ9DLv\r', '', 0, '?'),
('u@k\0n[', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z,*-"', 'Sh@y~^g>sT/zl,7', '', 0, '?'),
('uBtyب', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ParameterResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ParameterResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n|5/vn', '\0?\0N0w3lқFSsGc', '', 0, '?'),
('u[1;kN', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0VzVc@A!Y', 'B|?ӓXLOf`K', '', 0, '?'),
('ue,"\n	hg.', 'wp-admin/css/colors/_mixins.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/_mixins.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HJ@$', '~:]5˶Ɛ\0BAI', '', 0, '?'),
('uq2PFV', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-shrink.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-shrink.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z^6ڐ', 'w׀6qS7X\rAQfhg]_!1H', '', 0, '?'),
('uu66?', 'wp-content/plugins/elementor/includes/controls/groups/grid-container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/grid-container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!uY.6QU3', 's39,߃Uƣ.ϯϵ', '', 0, '?'),
('uyz/=0f', 'wp-content/plugins/elementor/assets/js/image-carousel.1a3e0c6222562304eed5.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/image-carousel.1a3e0c6222562304eed5.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/ǵ؛sS', 'I4տiHO+CGHf$-PBN', '', 0, '?'),
('u\n*', 'wp-content/plugins/elementor-pro/assets/js/popup.397c2882052136db7ee0.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/popup.397c2882052136db7ee0.bundle.js', 0, '+͕E\\rR', '+͕E\\rR', 'j<H<_5=Q&=eK!d|', '', 0, '?'),
('u[D', 'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#gx@oTM', 'ee6s--I$Q¼@ٍy', '', 0, '?'),
('u\ZYA GMU6)', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/repositories/form-snapshot-repository.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/repositories/form-snapshot-repository.php', 0, 'TS8SIx<t', 'TS8SIx<t', 'JbGJ]\\ׁ,70ʅ-r', '', 0, '?'),
('uU''C4ĠARU', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/ace_editor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/ace_editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':cU4X!', 'ADG|]CoІ? \r.', '', 0, '?'),
('u&A;kp4n', 'wp-content/plugins/elementor/assets/css/templates/widget-toggle.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-toggle.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uT])V<;', '[vv۟4\n\\(Pkʧ$', '', 0, '?'),
('u3!pAf)RM', 'wp-includes/js/tinymce/plugins/wpgallery/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpgallery/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_vQ8_$?', '<A06kJX\nvA/%O-v_''pA@ئ', '', 0, '?'),
('um-O''ߝ]#', 'wp-includes/sodium_compat/src/SodiumException.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/SodiumException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HDfaezR', '㶜\\L>LN-@G''tmGikR߮g\0', '', 0, '?'),
('uӠY\Z,$("jpG', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/OddTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/OddTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7yF)P', 'ήތ1Z`֠jۘ', '', 0, '?'),
('uְI+Ûo;[', 'wp-content/plugins/code-snippets/css/common/_editor.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/common/_editor.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<8z;4ٮ', '$uovMV\n!+oޛUpi', '', 0, '?'),
('uk6O>&W', 'wp-includes/blocks/text-columns/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fbk~QL.\n', '%+&w4 \0^?F:͛e', '', 0, '?'),
('u[{"\0&@Dil', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-db-tables.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-db-tables.php', 0, ',BJ$Ok', ',BJ$Ok', 'br3X Z`0\rlo I', '', 0, '?'),
('uGF\\:)', 'wp-includes/blocks/post-comments-form/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e/}]9XPoB', '3?TG5GB뱭NTJc{P=', '', 0, '?'),
('uqg\Z\08hԭ\0', 'wp-admin/custom-header.php', '/home/binawebp/omsrislb.my/wp-admin/custom-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kRW(w|F\Z', '<JJ\\?{T8CҋqJfy$gU', '', 0, '?'),
('uҫ;^''B*', 'wp-includes/global-styles-and-settings.php', '/home/binawebp/omsrislb.my/wp-includes/global-styles-and-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!|-&fC', 'VFr=&IHB<Gu`Q\rO', '', 0, '?'),
('u:z2DQ4', 'wp-includes/blocks/tag-cloud.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B"B/<L^''', 'u&yN+''wCl', '', 0, '?'),
('uYzay\rr:', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/actionscript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/actionscript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nD$BA/', 'Vl|ҁWz$N${S Q&', '', 0, '?'),
('udEI|lgv0', 'wp-content/plugins/elementor/assets/js/web-cli.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/web-cli.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɤ@F2I+', '@FJy᷶A^ͅ%{H!ܻ', '', 0, '?'),
('uczJDM', 'wp-includes/blocks/image.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g /-Q%a_', '_QTOSთ7tt(99w8', '', 0, '?'),
('u''M2', 'wp-includes/blocks/embed/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vM0AW+{-W', 'ΛQ=12g60j0', '', 0, '?'),
('u)f''R]k', 'wp-includes/Requests/src/Exception/Http/Status407.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status407.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZqmP''ˈ[s', '\\M#E&[~W>Al', '', 0, '?'),
('v\nt1\ZeH&', 'wp-content/plugins/wp-optimize/templates/database/settings-auto-cleanup.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/settings-auto-cleanup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ͻ}>tWD:', 'g#,psN̆^\0|', '', 0, '?'),
('v\n.u%w', 'wp-content/plugins/wp-optimize/templates/status/status-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/status/status-page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ck]i	WKC', 'B_9<f{sGeO^}e', '', 0, '?'),
('vڴVKP', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PNڡ''f', '\r]~[_˳PBTA`*,O', '', 0, '?'),
('v\rqA', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/MethodCallExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/MethodCallExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5\0}s', '/GE7oG"ȓä\\Y<j', '', 0, '?'),
('v)F~q?b', 'wp-admin/includes/class-plugin-upgrader.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-plugin-upgrader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߒWmQ1~{m', 'w83R$14V\ZR', '', 0, '?'),
('v,6fG8', 'wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M|.o;^~', 'Y\rV!n7Fn.', '', 0, '?'),
('v&5jrjL #ܲ', 'wp-includes/blocks/categories/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K#u	_40', 'jꄓb7#xm$]v%8', '', 0, '?'),
('v1,->d.#', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y[ǡhb', '2bVCΖzMOp26ݢׁ', '', 0, '?'),
('v3S+7\rĠ9C{', 'wp-includes/blocks/navigation/view-modal.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view-modal.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G9ZLl<', '}$gvFJUR*a\ZmX', '', 0, '?'),
('v>\nA?U(', 'wp-includes/blocks/post-terms/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4"h', '@\Z''_:e$)nF', '', 0, '?'),
('v?lMx1$Mq1', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/testimonial-carousel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/testimonial-carousel.php', 0, 'RBIL', 'RBIL', '$$N{\r!7', '', 0, '?'),
('vK;@saU1;	^', 'wp-config.php', '/home/binawebp/omsrislb.my/wp-config.php', 0, 'JTqܓp+S', 'JTqܓp+S', '.G)2GCwv;)pfЛ<Tɻ', '', 0, '?'),
('vLM.f%OMR', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Oq+O', '5''REһ56dgo', '', 0, '?'),
('vMm*&Z`''/b+', 'wp-includes/js/jquery/ui/effect-puff.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-puff.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9DJi\\d]', 'pkCi,-e}%6a	c\n]', '', 0, '?'),
('v\\O''gI:', 'wp-content/plugins/elementor-pro/modules/usage/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/usage/module.php', 0, '#?T3x/п]e!', '#?T3x/п]e!', 'uvaA2FM[CX`', '', 0, '?'),
('v]cI}æ{', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php', 0, ',t|\naz~NV', ',t|\naz~NV', '.,)''vЧ%Jo\0ƹp', '', 0, '?'),
('ve׶\\l.х{', 'wp-includes/js/dist/vendor/wp-polyfill-formdata.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-formdata.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S|hDO3\n\n2', '4N^pZ$BoT#ZvR\r8vw', '', 0, '?'),
('vifuP0^>d', 'wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SG˺F', '[(R$2otb', '', 0, '?'),
('vw@HzF', 'wp-admin/ms-admin.php', '/home/binawebp/omsrislb.my/wp-admin/ms-admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UjAڦYqu	', '"G\nڔMhQ2l''ܵ', '', 0, '?'),
('vz,CB\r@''', 'wp-content/plugins/elementor/assets/css/templates/widget-image-box.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-box.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Rcd.6', '\0J+:#m''"\07aܣ[|', '', 0, '?'),
('v|Twm`au', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/organisms/site-templates.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/organisms/site-templates.js', 0, 'DI}1`Gj&N', 'DI}1`Gj&N', 'J8:,زű-iip', '', 0, '?'),
('v]z3tB', 'wp-admin/includes/class-wp-importer.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-importer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a/Vcib6\np]1', 'z7$;bIKOM2S6O8\\2:', '', 0, '?'),
('va`dQ', 'wp-content/plugins/elementor/core/common/modules/event-tracker/db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q-<S\0I', '%yƩ:ߌT\ZЙD', '', 0, '?'),
('v\0b]T4(8xi', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreUser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreUser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';DԠUYe1', '62-}obܷD=\n6pj^', '', 0, '?'),
('vޣR', 'wp-includes/js/jquery/jquery-migrate.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery-migrate.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b*Z{ϖ', '\0m\\$6EI*[dwLw', '', 0, '?'),
('v0--:2', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_attr.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_attr.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5v=2', 'xOZGg$Xb#>g\0%H>W8', '', 0, '?'),
('vPkm\\&xi', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/exopite-simple-options-framework-class.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/exopite-simple-options-framework-class.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{Lc7', '	k5NE(ESF\ZLxy', '', 0, '?'),
('vv%`k-<T', 'wp-includes/Requests/src/Proxy/Http.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Proxy/Http.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[4j(	-', 'e\\;\ZoA <?{zrɩЧY'']', '', 0, '?'),
('vozMѾޒ6a$', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/EchoLogger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/EchoLogger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yPԂP!>', 'E''BqF\\MMsa@>b', '', 0, '?'),
('v^rk{/', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-commands.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-commands.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']ޫ15D''XJj', 'D~H=<	{%9@`>/֕3t', '', 0, '?'),
('v\Zٟz{', 'wp-content/plugins/code-snippets/dist/editor-themes/ttcn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ttcn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9^"\0튻', 'g\\vUt4wL0I`q;!	[e"h$''', '', 0, '?'),
('vâ,\\+Q֧', 'wp-admin/css/l10n-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/l10n-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*H<^6PR', '0ӣu{i;2sJ}䭇QÄwu', '', 0, '?'),
('vh~9XSx-', 'wp-content/plugins/elementor-pro/modules/global-widget/widgets/global-widget.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/widgets/global-widget.php', 0, '7\n6sPHq/M', '7\n6sPHq/M', '}U@`AZn.X;\\>X#', '', 0, '?'),
('v.#PH2', 'wp-includes/blocks/buttons/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nFh5%pD?', 'vF?˨l@c~J5?5tN4', '', 0, '?'),
('vb!D㝻s', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/taxonomy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/taxonomy.php', 0, 'F$"ō<p$a''', 'F$"ō<p$a''', 'xfZ{j4''{%1U''$', '', 0, '?'),
('vq?\0{=ŭe', 'wp-includes/blocks/site-logo/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\0ؼc(Y''~:', 'BGeJA8*[MQUxm', '', 0, '?'),
('v2ȷXO6', 'wp-includes/blocks/list.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hEމYҫ', '  O*12nl', '', 0, '?'),
('v?Qӎ|7s', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/dump.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/dump.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''w;+', '	ZqєOΖ7S\0"Gu', '', 0, '?'),
('vG.gA#r', 'wp-admin/images/align-right-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-right-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hl>r]lWx', 'V:h#ȆBT5i\0?cBc', '', 0, '?'),
('v4|><', 'wp-admin/js/xfn.js', '/home/binawebp/omsrislb.my/wp-admin/js/xfn.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wcW_~\r1>p', '4[Ÿ$[\\Ə4-3zx', '', 0, '?'),
('v{#lb\0}B', 'wp-admin/css/colors/light/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\\nw59Q2', 'F!$mHa!	,VA*/bAU"''', '', 0, '?'),
('v^)!Ffspv', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/swift.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/swift.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vqi; ^[Qkߔ$', 'eLB''Hdv?\n+$;)', '', 0, '?'),
('v%Osi', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i8!bI]wF', 'It<(]%TW~Í#z\rr a', '', 0, '?'),
('vҸ);D~J"q', 'wp-includes/js/jquery/jquery.form.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.form.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OfN', ':Ua8\ZPI	j', '', 0, '?'),
('wbvpm\nO!p', 'wp-content/plugins/elementor/app/modules/import-export/processes/revert.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/processes/revert.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rčո', 'c]s,ҫvmZe', '', 0, '?'),
('wul|pQ', 'wp-includes/js/autosave.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/autosave.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7PECA', 'ߺK\ZXLz^ƙ)Y̧D,d', '', 0, '?'),
('w|l}De', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ix;ZWiqGiVYt', 'mMv7;@'';Q#:|O4V', '', 0, '?'),
('wKlNt\\', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-rtl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-rtl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FWXMG_=p', '蠖ugh	w/Xc>+\\y', '', 0, '?'),
('w(YRn90', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mel.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mel.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SƧ8 |AP', '6P	$FD8_Ct8F', '', 0, '?'),
('w8h*\\;e[', 'wp-includes/blocks/archives/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Kݑ։', '9j鹠٠4Sqò_\\`', '', 0, '?'),
('w:T@iC!+F', 'wp-content/plugins/elementor/assets/css/responsive-bar.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/responsive-bar.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~&e#𴂅u', '5t''ʰgC] =,\ZFB''T', '', 0, '?'),
('w>+&ox%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/turtle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/turtle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`!\0\Z<Hbd', 'YoܶjiV;&Hu\Z\\CF ', '', 0, '?'),
('wDI-EIl', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e4ʟE', '4N+&:<Y\Zt\ZqڡlY', '', 0, '?'),
('wPk+&WOrf', 'wp-content/plugins/elementor/assets/js/packages/query/query.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0~TqB\Z\rBUE', 'TkR_saB7!Wke', '', 0, '?'),
('wRzrQ}W\n', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':ÁcP-N/`W', 'J,c{|Cno2ShRA<', '', 0, '?'),
('wT8΋ zY', 'wp-content/plugins/elementor/assets/shapes/split.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/split.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N?춈B,', 'eCaf6AXM2', '', 0, '?'),
('wZkFD9h', 'wp-includes/blocks/site-tagline/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cŮ*ur=t\ZRD', '	TPA''U)&!ahRPt', '', 0, '?'),
('wk5C֑=os_', 'wp-content/plugins/elementskit-lite/modules/megamenu/views/options-megamenu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/views/options-megamenu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f#W', 'ct"s\0>ep2K+	|lָ', '', 0, '?'),
('wڥ<imp[K', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessEqualBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessEqualBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mʹ<>õ)', 'h\r~jcnS\ZcS=xͬ', '', 0, '?'),
('wM\r$Nb5]', 'wp-includes/images/media/spreadsheet.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/spreadsheet.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '68'';6.G', 'fǋBΐFl8	UWFj&YW n', '', 0, '?'),
('wL0]r.', 'wp-includes/images/crystal/code.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/code.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`119', ';67\r!x\Z_@H&C-', '', 0, '?'),
('w,	1u/v', 'wp-content/plugins/elementor/includes/controls/gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/gallery.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zdރ@h', '7U{|u&dY!ɪI\rZ ', '', 0, '?'),
('wNp,1!''MUՉ:Q', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php', 0, '^-ҵ}[*-W', '^-ҵ}[*-W', '%󴡀XژTx={to~:', '', 0, '?'),
('w@IeRf7', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hR', '=mH/\neC3u58', '', 0, '?'),
('w`M>{', 'wp-admin/includes/noop.php', '/home/binawebp/omsrislb.my/wp-admin/includes/noop.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~ÐoKKVe', '(CFγϓasFI`IsDD', '', 0, '?'),
('wË9/,+1', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g۰/*C,k#', 'avxu흶j=ISD{!', '', 0, '?'),
('wt8\nFͣ', 'wp-content/plugins/elementor/assets/js/toggle.a6177e2e3c2bc8864bef.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/toggle.a6177e2e3c2bc8864bef.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Ŵ:Z', '99b}Kg2}!Pѩ6yҏZz', '', 0, '?'),
('w3VQowAC', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-libs-locomotion.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-libs-locomotion.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G:9<Te', 'zRa0Ӯu_b]/`-', '', 0, '?'),
('wՋ\\G&A', 'wp-includes/blocks/template-part/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{oŅtc7S/(', 'v*ruߩMqR	!g)M?', '', 0, '?'),
('w=u?HQ\\>', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFunctionError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFunctionError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ҦQs\0< Fc6N', 'gN/N]P*[Ty.\Z', '', 0, '?'),
('w>oj*=,d8L', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/banner.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/banner.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȫu\r<K4j', '2Rx֞"tw?qG', '', 0, '?'),
('w:}VP', 'wp-admin/js/common.js', '/home/binawebp/omsrislb.my/wp-admin/js/common.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2ӥΕ', 'tR:@qQOj o,99:,\Z#(', '', 0, '?'),
('xpZ"]n5%', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-inspactor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-inspactor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3pl*\0)幄(', 'X*g"[c͛kl^!>4R', '', 0, '?'),
('x	G!N$.dTb', 'wp-includes/ID3/module.audio-video.flv.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.flv.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(AZ?!x&3h', '7T@7lEœ#V,Li''', '', 0, '?'),
('xeg.UPY+f', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ArrayLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ArrayLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XHr8', 'D\r%NG4-lH=@ #?', '', 0, '?'),
('xFO0uO- ', 'wp-includes/SimplePie/library/SimplePie/Enclosure.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Enclosure.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uqm1Xli', 'k.0=m:b>:<{1[{ox', '', 0, '?'),
('x!\rлپ+', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/MultisiteSharingSettings.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/MultisiteSharingSettings.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fl+$<A', '_4b&.R\\:oU_)ѡ', '', 0, '?'),
('x#wH_lw<Y\r)H,', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rY''\rĈ', '#"/_q\\D}dHr*', '', 0, '?'),
('x))+3OwE', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-themelist.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-themelist.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɸ[Ps', '^KԔmFxn&\0ｖ', '', 0, '?'),
('x3D6к8yC', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/editor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"t/C`a', '*tt9q?ra?/t滢', '', 0, '?'),
('x9@^6ߑo', 'wp-includes/images/w-logo-blue.png', '/home/binawebp/omsrislb.my/wp-includes/images/w-logo-blue.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[NW_pw0', 'ޣ^Qt3HunU❻~''T2', '', 0, '?'),
('x9ܡ	B1B', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/childNodes.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/childNodes.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4`~ngDB؟', '9Ȼv&qtd2/ìaK261', '', 0, '?'),
('x?O@1t$M', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-preview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-preview.php', 0, 'Y.I', 'Y.I', 'jfS[	S}4-)?B~+2E1*bq', '', 0, '?'),
('xHzOF&9\0Q', 'wp-content/plugins/elementor/assets/shapes/wave-brush.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/wave-brush.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''A9+3!', '_`ܬ"T\rvUo@)2F?W.~4V5', '', 0, '?'),
('xIH.9YBO', 'wp-admin/css/colors/coffee/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HDTUt[D', 'pe15m:^[t\Z(!;U<Sפ ', '', 0, '?'),
('xIGm${tm', 'wp-content/plugins/elementor-pro/modules/progress-tracker/widgets/progress-tracker.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/progress-tracker/widgets/progress-tracker.php', 0, 'נ=b\0oi', 'נ=b\0oi', '+&d/X''wN8JVJDH;', '', 0, '?'),
('xIĉ7W~3p', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementByTagName.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementByTagName.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd+,+k\r', 'ia$IG\\*0!MjWH', '', 0, '?'),
('xJɘYtwd', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ol(;\\Wh', 'Dj471ʹip/c', '', 0, '?'),
('xLKx 2Is!#Q', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rUCB"', ')M쩂tUδԪF.', '', 0, '?'),
('xV\nyJb4@j~+', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Signers/Hmac.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Signers/Hmac.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EӸ]k<,PRp', 'Fz*,`G6hu*0Lw\0=', '', 0, '?'),
('xVM>n{Oǟ', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I,0`-=OxH', 'ⰁmWka2Sj>"w<', '', 0, '?'),
('xZE=KŋM', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/NotFoundException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/NotFoundException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O|\rb5"', '͙	˗<\r<uMmWvÆb0쭈-`1J', '', 0, '?'),
('x\\OT"?q', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '](4z:', '@=l60cWCsq?*b""', '', 0, '?'),
('xaKP9j	', 'wp-includes/blocks/comment-date/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E.^-uMc', 'Hx玩b=J]tqxu', '', 0, '?'),
('xe˅诹</eY', 'wp-includes/blocks/tag-cloud/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3lJPC<]0', 'V)\ZMpv~PɐɞHD', '', 0, '?'),
('xfV{F̕*', 'wp-content/plugins/elementor/includes/elements/column.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/column.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '܆Sa:Jr', ':d\\/[S0O\r >Rn4wl', '', 0, '?'),
('xi%U2WeS', 'wp-content/plugins/elementor-pro/modules/role-manager/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/role-manager/module.php', 0, 'KluV9$uk', 'KluV9$uk', 'i\nwpPFxnc~z,P-Q{1', '', 0, '?'),
('xy!q).ˉ"', 'wp-content/plugins/wordfence/images/sort_desc_disabled.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc_disabled.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm͟r 9', ';	_Yt7KsmC\ro', '', 0, '?'),
('x-dTAe辰', 'wp-content/plugins/elementor/assets/lib/animate.css/animate-config.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animate.css/animate-config.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':4\\}!#tӠ', '{l%!g~3Qs5Xzn', '', 0, '?'),
('x7.D&ڹg', 'wp-includes/blocks/navigation-submenu/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',I^u ]p', 'LCzU[s\n', '', 0, '?'),
('x^m]̲/L4vU', 'wp-admin/includes/revision.php', '/home/binawebp/omsrislb.my/wp-admin/includes/revision.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<V0,e7iYV{', 'eQEx8^ԻCsOr:', '', 0, '?'),
('xas2X', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/updates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/updates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gںښ\npʦM', 'A9jd@kýSHO\0\0J~', '', 0, '?'),
('xzAt$î~*', 'wp-content/plugins/elementor/modules/cloud-library/connect/cloud-library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/cloud-library/connect/cloud-library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'آ1z5;\Z', ' H7<\Z[@xX|B#\Z4ޠU݈v', '', 0, '?'),
('x~"{ҺM-', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ImportProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ImportProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0}cwo', '(Ƅj\Z%AEŸc', '', 0, '?'),
('xȸ`-!(^''', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-23.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-23.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~v7$I<A".>\0C', 'i\nc8mMi)tG)]`', '', 0, '?'),
('xɭ5\Z9V!eT5', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/LoggerTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/LoggerTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r).Xi@KS', 'il6~?+Z ]_;戼9"üCH', '', 0, '?'),
('x.XJ$ɮܹ', 'wp-includes/blocks/pullquote/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rSWZX', 'W[<U^&:crbك', '', 0, '?'),
('x@`yQQu9*', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/package.sh', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/package.sh', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8U~䰷TR(', '!8'',\Z]\\<\0Y6\\# &<', '', 0, '?'),
('x덂@}Yi+', 'wp-includes/js/tinymce/plugins/tabfocus/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/tabfocus/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ώ@/@MmN', 'xM''Ȥ=ڷ?$S,Fy֥', '', 0, '?'),
('x	4dFb`', 'wp-content/plugins/elementor/core/files/uploads-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/uploads-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZsiG9CJ', 'whOJ2G	<m,}kI]', '', 0, '?'),
('xz#]ru?0O', 'wp-includes/sodium_compat/namespaced/Core/XChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hg`ɸ:ڕ^', 'F/QH\0^l 0BΓի6S@Ph', '', 0, '?'),
('xR2(b', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthUser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthUser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e>=Z\\ˀ#(', 'I8"[\\Cې$\\#1Y', '', 0, '?'),
('y1-/fIנ', 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nϷS\0.,', 'C]("&\0qBׇ\rGM', '', 0, '?'),
('y&EzݜZy׺ڲ', 'wp-includes/class-wp-recovery-mode-key-service.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-key-service.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vSÜ/', '3)P8\0E%1ޙ5EtaL', '', 0, '?'),
('y4POƟy8a', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T\n\0T;p!W', 'Gx\0\rl1rݷXSrKԪhjF', '', 0, '?'),
('y52m\0l"e', 'wp-includes/js/dist/priority-queue.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/priority-queue.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mCèȈk', '	n蒁`RȻT\rtfv*fh', '', 0, '?'),
('y:G`W->K', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style3.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U2)AŔ', '	J]@M*y"=u', '', 0, '?'),
('yA0Xz(''\\', 'wp-admin/js/widgets/media-gallery-widget.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-gallery-widget.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wl3IEh', 'ZhX\0	,P6[=2޸', '', 0, '?'),
('yJ\r_hE', 'wp-content/plugins/code-snippets/dist/editor-themes/ssms.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ssms.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yfPF.#G', 'Iyxc!ޔD*Ð6KV 0+4', '', 0, '?'),
('yO\0yjeB\nVp', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{$Ǽ', 'j5=Y$QUмu*E', '', 0, '?'),
('yQ^qq>&', 'wp-content/plugins/elementor/assets/js/media-hints.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/media-hints.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u%[`(M!', 'L6hF2QK\r6|LUzpMf5F', '', 0, '?'),
('yT:Xi''&', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-updates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-updates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>fiLF)A<', '.\r\r?+/>SLZ޴Op%X8˚L1n', '', 0, '?'),
('y_(z1rre\0', 'wp-content/plugins/elementor-pro/core/integrations/exceptions/action-failed-exception.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/exceptions/action-failed-exception.php', 0, '$0ï35g_', '$0ï35g_', '9g>}.nzq_\0E<TR~', '', 0, '?'),
('ydg!F2|	m', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/page_views.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/page_views.svg', 0, 'D\Z=|q''w', 'D\Z=|q''w', 'țiXJBZb*2(^EoM', '', 0, '?'),
('yi["Yhoԣm', 'wp-includes/css/dist/patterns/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZWC\0X\r', 'f=eWĮ(%Ur;P', '', 0, '?'),
('ylBcDǊ', 'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MC>jSF', 'BӤhUg/38M=oiu', '', 0, '?'),
('yr]ucTw', 'wp-content/plugins/elementskit-lite/widgets/header-search/header-search-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-search/header-search-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u*vU', 'W4Tɔk8s<_ 죬', '', 0, '?'),
('y~f̚N.$Z', 'wp-content/plugins/elementor/modules/notifications/api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notifications/api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nκ7bAz?rU', 'ch4|&|WI*'']\n!BF)', '', 0, '?'),
('y\n,\nC|[i', 'wp-includes/customize/class-wp-customize-selective-refresh.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-selective-refresh.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')"0ŚyI', ']2}a|,6\07}!b', '', 0, '?'),
('y.i%sX-Rs}', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R)\r}Jt1L)', '}mbX(4ǝ8W3/<F-F\\yΚ', '', 0, '?'),
('y{\\ba''\\', 'wp-includes/customize/class-wp-sidebar-block-editor-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-sidebar-block-editor-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']mL-D+Zٕ', 'o,bLnBQv-|qd''B=X&', '', 0, '?'),
('yzҶaW6', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/ZendPlatform.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/ZendPlatform.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#I6$r\0߅\Zҷ', '\0CXpl7Tۀ!:zC<', '', 0, '?'),
('yXk~xOAM', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/ocCheck.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/ocCheck.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+slAp 5', 'a曽,=\ZE(i\\m\\l', '', 0, '?'),
('yMy<ĀJh$s', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/MethodInjection.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/MethodInjection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm\ZD`H\nv', 'NB:ofs\rM)x>', '', 0, '?'),
('yAؽܟl', 'wp-content/plugins/elementor/assets/js/admin-modules.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-modules.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '< i}M\n', ' pm{	C1DpX', '', 0, '?'),
('yzۚ>N4% ', 'wp-content/plugins/code-snippets/js/components/TagEditor/SuggestionList.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/SuggestionList.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/F]	#', ' 9Oӛj8jedgt/', '', 0, '?'),
('yEa:[\0', 'wp-includes/class.wp-dependencies.php', '/home/binawebp/omsrislb.my/wp-includes/class.wp-dependencies.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o=`,WQ-8', '"]_1ts"d-{Ă^\\', '', 0, '?'),
('y]m-w4-{', 'wp-content/plugins/wp-optimize/includes/updraftcentral.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/updraftcentral.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fW(٧.QBa\\', '*i/bwOhZOQA[`Jv4O', '', 0, '?'),
('ybhU^aɚ', 'wp-content/plugins/elementor/includes/widgets/image-gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image-gallery.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`^:\\F0', '>T\Zh~}7*:ж4|	Sm', '', 0, '?'),
('yŒ<^6IM', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/popupkit-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/popupkit-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ެ7/', 'EZ;NĽCSfeo\0oͰU', '', 0, '?'),
('yS`}Sw5', 'wp-content/plugins/elementor/assets/shapes/arrow.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/arrow.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F~z٨wCy', '7hq\07n"e%Sl]g', '', 0, '?'),
('ya=AqE', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_ruby.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_ruby.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'so44/ߓ`X8+', 'n4zny;NIU', '', 0, '?'),
('y"O}7g', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/regular.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/regular.js', 0, 'aǧ6+G;Nr', 'aǧ6+G;Nr', '0jrYC*|h=]D', '', 0, '?'),
('y32/[X#F', 'wp-includes/blocks/query-title/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5PriWomd?', '3TNOCaHUR}ݬm', '', 0, '?'),
('yJM*0$OU', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Dumper/ObjectDefinitionDumper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Dumper/ObjectDefinitionDumper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?g\Zvc`', '^z\n4{$}<)\00dN', '', 0, '?'),
('yG\\`MR', 'wp-admin/network/site-new.php', '/home/binawebp/omsrislb.my/wp-admin/network/site-new.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y(hBa>', '!LO-,iS(8;', '', 0, '?'),
('yem$JS', 'wp-content/plugins/wordfence/lib/wfDeactivationOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDeactivationOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	}? 5', '''zg/ٽn+uF=[\Zl', '', 0, '?'),
('y\0Lz㶵و', 'wp-includes/blocks/group/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}]x^E-', 'y [qj\Z\ZO2;JatEmB', '', 0, '?'),
('y;qdս	~', 'wp-content/plugins/elementor/assets/js/contact-buttons.7c9983ed0d4964b951c2.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/contact-buttons.7c9983ed0d4964b951c2.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=OW\\D:"', 'd88KD&Ld|9ǀ*b', '', 0, '?'),
('yύ_Ƞ tU', 'wp-includes/js/dist/views.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/views.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\$)Yw2}', 'VqQ1S/cS(UUĴ|{"׳Ny2', '', 0, '?'),
('yKkڻ ~dȭd', 'wp-content/plugins/elementor-pro/modules/hotspot/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/hotspot/module.php', 0, 'h8%0:r=', 'h8%0:r=', '/z\0!Ej;q~jz%Ԅ', '', 0, '?'),
('y\0HN}fFz9', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/dimensions-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/dimensions-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5"V7N', 'r9(W\rr%pNrez', '', 0, '?'),
('z&c[+', 'wp-content/plugins/code-snippets/php/class-admin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4Hkj', 'UdcmYIg^BHnp?.', '', 0, '?'),
('zɐ@//@', 'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J58OO}s', '$9dS>;:\nad_X[F', '', 0, '?'),
('zxڮh,8xv', 'wp-content/plugins/elementor/core/logger/items/log-item-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/log-item-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n^t]3D)yM', 'F&+WSk\0Y	y''IbXjՂ', '', 0, '?'),
('zO|chѵw', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-cache.php', 0, 'ؽd;:', 'ؽd;:', '\0m,L>Eq@B\rm]m', '', 0, '?'),
('z%2f˯rJ''', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ForTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ForTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zC9\nܮ', 'PTk\\x0`\r;ޙG', '', 0, '?'),
('z*)pEP:<', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/MacroTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/MacroTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\E5qk', 'z>^ń:g2AV"\rTa#>', '', 0, '?'),
('z.[D8R', 'wp-includes/js/codemirror/jsonlint.js', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/jsonlint.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I)fykT+<՟', '$D;;0F~pGғFˁ', '', 0, '?'),
('z;j2WD6[V', 'wp-admin/js/accordion.js', '/home/binawebp/omsrislb.my/wp-admin/js/accordion.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&PT!#7YR', '9m.@BGLWksE', '', 0, '?'),
('z?ѧTA\nʐ)', 'wp-content/plugins/wp-optimize/vendor/composer/installed.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/installed.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v삊UJ\nŵaG', 'ǠM!bC''ht\n~P`g', '', 0, '?'),
('zD&s!6)r', 'wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.39fbaae6c856c483b4b4.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.39fbaae6c856c483b4b4.bundle.js', 0, '\Z3M\\]r', '\Z3M\\]r', ',WPN[//E\r\rAvC[', '', 0, '?'),
('zL(̫4VBR{m', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/enable.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/enable.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(K2_JAD$Ņu', 'p}|V0wwAh4Qhmg	(aW\rc+1yz', '', 0, '?'),
('zZah9V''', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/InvalidImageTypeException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/InvalidImageTypeException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+oqRv_', 'b''lhw3:HejØxC', '', 0, '?'),
('zh6N!¶\ZIM', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GN\\rwT|ni(''Q', '.QElb>f3H;uV09}i', '', 0, '?'),
('zoܲ~b', 'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&5uNi!z', '#ɛ!wcw؃}6~A', '', 0, '?'),
('zrY]ңbG', 'wp-content/plugins/elementor-pro/core/editor/notice-bar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/notice-bar.php', 0, '\Z\\VĸW', '\Z\\VĸW', '.nAF*g.?BZbO:D-p', '', 0, '?'),
('z|LFD', 'wp-includes/css/dist/edit-widgets/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U1x<	a$H', 'V^nKu[FC4uE4ٖ', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('zmSA}I)', 'wp-includes/sodium_compat/namespaced/Compat.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aik/j\rn3', '1''ջ.O}5Afi~>:}s', '', 0, '?'),
('z#ũJv1vG', 'wp-content/plugins/wp-optimize/templates/minify/js-settings-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/js-settings-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#˹9\\\ZD:', 'FyHM&7\0[i%DF?', '', 0, '?'),
('zOi.?Q', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/InputValidator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/InputValidator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U\\g\0\0r', '{{_''S-_jݫg!{', '', 0, '?'),
('z2]w''="-4', 'wp-includes/blocks/query-pagination-previous/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-previous/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?(f=GWrv', '1	\ZNT9Zɯg0&/\r3\nmDVǯ<\\', '', 0, '?'),
('zm5:h.Y', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date.php', 0, 'FƜ."&诛', 'FƜ."&诛', '#>+OlCLHg)xD;', '', 0, '?'),
('zxx\r', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X5(.bwTj≣', '3Cj\nnhI)_.O', '', 0, '?'),
('zɉFr', 'wp-content/plugins/elementor-pro/modules/loop-builder/views/cta-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/views/cta-template.php', 0, 'VvB\0Eϗ', 'VvB\0Eϗ', 'դE<-JFS撷Gq\n^K5,27', '', 0, '?'),
('zƓ$Z4', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/font-awesome.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/font-awesome.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BTx\0A3)s', 'VBm.,?"n|:k''9', '', 0, '?'),
('z5*\ZADZCkj', 'wp-content/plugins/wordfence/images/icons/magnifier.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/magnifier.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uO{:qcV''', ' atvdQ0(IjƖO$e(*', '', 0, '?'),
('zL5	g5Ď', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{U]K''x^4', '|,`n2J	qd8L押ϒ', '', 0, '?'),
('z[B-(66', 'wp-content/plugins/elementor/assets/images/logo-icon.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/logo-icon.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pe.n,L', '\\CJ-\\ъyJ}6(', '', 0, '?'),
('z8 L{q', 'wp-content/plugins/wordfence/lib/menu_scanner.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_scanner.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3!e"h', '4P,//Q;?Y!', '', 0, '?'),
('zQ<''U~R\\', 'wp-includes/css/wp-embed-template.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BVtvVGg', 'o^hNVr>4I42R`j', '', 0, '?'),
('zJXw{!\rF', 'wp-admin/includes/class-wp-upgrader-skins.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-upgrader-skins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q"ґ-щ', '.7j3?̶·?2UE.GW', '', 0, '?'),
('z1$*0#-', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_\\R{ެX/z-m', 'Mп~+6	I*_6aC', '', 0, '?'),
('z_8pFoN', 'wp-content/plugins/wordfence/css/diff.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/diff.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '܀g		$`rQ', '$hEJ^54<$ӭYc&', '', 0, '?'),
('z[Aky0c&', 'wp-includes/blocks/avatar/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Rd-u', '7oWݹP*\0ӛ^Ũt', '', 0, '?'),
('zYiݤI(1B', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/admin-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/admin-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'djsnpĂv', 'ηȼJMcUkrBD+pY}tB', '', 0, '?'),
('zY{,\r0O9', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cobol.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cobol.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{KNP7P^', '''p''ZBד8''<ɋף', '', 0, '?'),
('z΋ۗ`瀃1\0', 'wp-includes/js/jquery/ui/effect.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*+ܕF>,ZA', '4ؗM"Ixx*Z_k۲\\F|r', '', 0, '?'),
('zϒB\Z', 'wp-content/plugins/elementor/includes/conditions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/conditions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!UZ]o=+[xJOs', 'H?`20N1rh":', '', 0, '?'),
('zЏFFEr', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'թh\n{_o', 'I0QH)nbw5jRnW<KR', '', 0, '?'),
('zWsW5ʈ )', 'wp-includes/css/dist/customize-widgets/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cv	-S(pj', 'u2׽jpHA!)0)^*', '', 0, '?'),
('z[Yd#$gY*g', 'wp-includes/css/dist/block-editor/content-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-', 'OVfX1r$,;;tA', '', 0, '?'),
('z\\g/)', 'wp-includes/blocks/post-time-to-read/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' F,K._p', '`,h*9I4MjYL', '', 0, '?'),
('z)~CBG''H\n', 'wp-content/plugins/code-snippets/vendor/composer/installers/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1ܼ''Zy{', '\\yޟ#ށ\ZNVwC`u^', '', 0, '?'),
('zѮAl', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '򚖄	hc>S', 'HMt|8qJ\Z\0A	WOй)\Z', '', 0, '?'),
('{pAa|', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-red.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-red.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&~v-oh', 'iylH]}++finDQ''h%>', '', 0, '?'),
('{^=$-4', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/MimeMap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/MimeMap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gO܈0n', 'd٠!8WUjklRE', '', 0, '?'),
('{\nRoR=''g', 'wp-admin/js/widgets/custom-html-widgets.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/custom-html-widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zW$.4垾{', '`uVć~!b&r럇\0^ň~(z`R', '', 0, '?'),
('{N2Qu=	', 'wp-admin/network/theme-editor.php', '/home/binawebp/omsrislb.my/wp-admin/network/theme-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '( aԢ[U?', 'ЈegTG.=a\0@', '', 0, '?'),
('{>"ݶ^%5)M', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8M%E0cԢ', ' 0=|.OℎtoYcw7&', '', 0, '?'),
('{=''q</-Vv', 'wp-content/plugins/elementor/core/admin/admin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'heW>DdߍI\r', '1R&Iѭ|Y7$t', '', 0, '?'),
('{Q.\0neϲ[', 'wp-content/plugins/elementor/data/v2/base/endpoint/index/all-children.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint/index/all-children.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '09qV.U;h', '5٥ɒlKӛ7{RPEH#)', '', 0, '?'),
('{[/ڑ', 'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/option-howgetips.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5夑=MwKh', 'jT59ODPI !8"L', '', 0, '?'),
('{a{4;Moز', 'wp-includes/block-template-utils.php', '/home/binawebp/omsrislb.my/wp-includes/block-template-utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X5Wi\Z&2T', '{~\r\0\\9ŸU(|4Fc', '', 0, '?'),
('{p E\\%E\\m@`', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/BlockTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/BlockTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rpL=J!', '3CtaeH9I(@xA', '', 0, '?'),
('{tE~PA1', 'wp-admin/js/tags.js', '/home/binawebp/omsrislb.my/wp-admin/js/tags.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{=6\\\Z', '9.Ѿ7APXf5-F:I', '', 0, '?'),
('{y"ҵݩ{', 'wp-admin/includes/class-walker-category-checklist.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-walker-category-checklist.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@1AY\\e', 'GlkV$5Z`2rO}V', '', 0, '?'),
('{,\Z16', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeFile.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeFile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VGѳSL3H', 'a;''i0Y[QM''194A', '', 0, '?'),
('{$ WƄŨ%', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/crm-integrations.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/crm-integrations.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qOwt3V', 'v-y$j,t	DiZA', '', 0, '?'),
('{/.6ǹҩ}q', 'wp-content/plugins/wp-optimize/optimizations/orphanedtables.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/orphanedtables.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rpytr=;', 'g5b_eE&8K+Q!5V', '', 0, '?'),
('{;P˶4]', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ProfilerExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ProfilerExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D1y*\ZL.O', 'OJfj# .x W:9`x', '', 0, '?'),
('{jɏ|n	^<WH', 'wp-includes/css/dist/nux/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Ln=_[t', '&"JrRapbci&	3z@[S', '', 0, '?'),
('{)4e4p:fW', 'wp-includes/js/jquery/jquery.query.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.query.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rġLz;ҿ0', 'ղ<C=H:LW΍9b\n', '', 0, '?'),
('{ؙo3XTZ&E', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasClass.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasClass.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',ܻsFQ+_G', 'dϹT|?[4zy3@آ\0vӮ8{ XJZ', '', 0, '?'),
('{O>\0}Ɓ-g.', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i^]"w', 'l֠F_=oiN^&mc', '', 0, '?'),
('{%F>t]|', 'wp-includes/blocks/term-name/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')bLSU', '\Z*iRe䅳_@:\nr%	<I\\', '', 0, '?'),
('{Y[\\', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/contact-form.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/contact-form.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6̇CCYZ5', 'J6.Xq	t[bP?Z0', '', 0, '?'),
('{b\\ߺkP8D', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_block_element.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_block_element.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$zֈw!Hc*', 'p2q|\\cD,?A(,&', '', 0, '?'),
('{ڒ2WST0', 'wp-content/plugins/code-snippets/dist/editor-themes/juejin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/juejin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q<+,0k', ';*#d)}YjuwmJ', '', 0, '?'),
('{JK,8JP\rѯ', 'wp-content/plugins/wp-optimize/includes/class-re-smush-it-task.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-re-smush-it-task.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TrnH[F', 'e''RLSO.cע̖', '', 0, '?'),
('{@Ѫ0Nf', 'wp-content/themes/twentytwentythree/templates/single.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/single.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+g#>J=>u', 'IfY#}<\\F2X:', '', 0, '?'),
('{\nrI', 'wp-admin/widgets-form.php', '/home/binawebp/omsrislb.my/wp-admin/widgets-form.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X@slq%*', '{㍥FX\ZuYɔD	|', '', 0, '?'),
('{RC\Z.*"Q', 'wp-includes/feed.php', '/home/binawebp/omsrislb.my/wp-includes/feed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u83>pj', 'VZ_=Y!5z', '', 0, '?'),
('{ﹴ񧶘빑 a', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperationalException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperationalException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z-''zys)=', '<.j.AI/k@Z$2OW^', '', 0, '?'),
('{(L⸱aZ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',~YE!{ܦ*', '3YC<_T5mPˍ', '', 0, '?'),
('{\r-}^', 'wp-includes/images/smilies/frownie.png', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/frownie.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q', 'r~Dzoh߱ػ">E+Ke', '', 0, '?'),
('{?\r\n''', 'wp-admin/images/imgedit-icons.png', '/home/binawebp/omsrislb.my/wp-admin/images/imgedit-icons.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K\\2}Gi;O', 'TN~-@N̞V\\(u$', '', 0, '?'),
('|jx7(Q}0''', 'wp-admin/css/list-tables.css', '/home/binawebp/omsrislb.my/wp-admin/css/list-tables.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#V\\߃%', 'm\0_̸^&0pu"Y6F@;', '', 0, '?'),
('|LF85<ZM', 'wp-includes/blocks/gallery/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\07d.0y', '@\0	zgX~ORFYT?', '', 0, '?'),
('|[+:F6کK ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-iplastic.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-iplastic.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_^We,o', '=,Z]~f\Z:D1]&h/E', '', 0, '?'),
('|tA#\rA*', 'wp-content/plugins/elementor/assets/svg-paths/wave.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/wave.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm5$N~X0I', 'tKrٙfnPd m', '', 0, '?'),
('| :ᒼ', 'wp-content/plugins/elementor-pro/modules/woocommerce/classes/products-renderer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/classes/products-renderer.php', 0, '`~JyjۺF', '`~JyjۺF', '?''H\r;OzC])@wi', '', 0, '?'),
('|\Zʶ2\Z2Ee', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CZ`a', 'VvR9|/֘P|W<ouq\0', '', 0, '?'),
('|<Bϟ#;4#\Z', 'wp-content/plugins/elementor/vendor/composer/autoload_static.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_static.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wpL(MEd', 'D++cs[[ۥ7T?\nc2N', '', 0, '?'),
('|#NЁ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DeprecatedTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DeprecatedTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.''9V6z', 'N%W.fN>l!v2*)0F:', '', 0, '?'),
('|*M%G#\Z*''\n', 'wp-content/plugins/code-snippets/dist/manage.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'haj9&<U1', 'kߔ2߈/$V}{=\ny;,', '', 0, '?'),
('|,3ԟ;db', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/import/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/import/templates.php', 0, '	{ްқ*/UCN', '	{ްқ*/UCN', 'I>}9yel"&\0X|tC', '', 0, '?'),
('|-z-', 'wp-admin/export-personal-data.php', '/home/binawebp/omsrislb.my/wp-admin/export-personal-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';Y#\0G', '7\0I#"T[ft', '', 0, '?'),
('|.]0', 'wp-includes/blocks/pullquote/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kȋ6]|EQ/', '0_\Z.%IxShl?:S', '', 0, '?'),
('|/ڒ\0[*4x', 'wp-includes/js/admin-bar.js', '/home/binawebp/omsrislb.my/wp-includes/js/admin-bar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5"M\\|HϜ&', 'w#tqz0A胭\n,D|:V	}k', '', 0, '?'),
('|0h̯jϿ_5<j', 'wp-content/plugins/elementor/assets/js/nested-accordion.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('|4Ip;Y.', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/SandboxExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/SandboxExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WĬ#v20', ',-qay>,J;<L@J', '', 0, '?'),
('|=/A-?mn', 'wp-content/plugins/elementor-pro/modules/forms/actions/convertkit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/convertkit.php', 0, 'H8~Nx1F', 'H8~Nx1F', 's2p~u	`^g"H,3n[', '', 0, '?'),
('|>sSpb4񞍜(', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-automatic-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-automatic-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&T.⾩ }', 'Z݆j\\\nƈD֦-p', '', 0, '?'),
('|@3\\VF', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/woocommerce-add-to-cart.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/woocommerce-add-to-cart.php', 0, 'b[sb', 'b[sb', '@t}7X`x"$`]_sg', '', 0, '?'),
('|DrV QJ<]', 'wp-content/plugins/wp-optimize/images/notices/ud_smile.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/ud_smile.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gϑ\0=nDMpҬ', 'xJ4y3uۘ*P}U@ke^', '', 0, '?'),
('|N!;xN&gm', 'wp-admin/js/widgets/media-image-widget.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-image-widget.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G9FmqQ', 'J6%V"\rKyɳh8NF', '', 0, '?'),
('|UvΫYLL9', 'wp-includes/Requests/src/Exception/Http/Status500.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status500.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BNxTZ0z', '0/6X\\ד!|4&LI9', '', 0, '?'),
('|kC+1Ze\Z', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',"1:7a\n9?', 'U2R۝O.Q3ڍUf', '', 0, '?'),
('|l+F#ڟ', 'wp-includes/class-wp-user-request.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-user-request.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\x>h7', '-K@Ԭͼ"Fr\\/K\ZrH', '', 0, '?'),
('|m1\0z^m{', 'wp-includes/css/dist/customize-widgets/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.B!Ltԏ''!', 'jK;\\#0v?H|Ku', '', 0, '?'),
('|w1bqǧ۵', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ydÙ`DZ+', '݋LǷpymMyMsηKQ+6', '', 0, '?'),
('|C-6(Çzp', 'wp-admin/js/password-toggle.js', '/home/binawebp/omsrislb.my/wp-admin/js/password-toggle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';\0N6ޯ', 'k!.߀fǿx`7{', '', 0, '?'),
('|	4PTqJ&/[S', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/menu-cart.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/menu-cart.php', 0, 'UiDA', 'UiDA', 'եY $]_V8y~޲p', '', 0, '?'),
('|J٠t|', 'wp-content/plugins/elementor/assets/css/editor-preview-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S:=NU', '\nn2 f2^vNT#S;-;', '', 0, '?'),
('|Xa|', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-settings_menu.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-settings_menu.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IwW\r¬', 'jҀ3ql\nxOXKмq', '', 0, '?'),
('|eRKp18N c', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/:YYo>Lv', '.\Z֕	ַix', '', 0, '?'),
('| 4x\\Mn', 'wp-admin/js/code-editor.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/code-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2N1B9Xk', 'XJÒHsf=]\n*vHXПDC', '', 0, '?'),
('|~B	c0֘', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-shadow.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-shadow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.(9|nL͝w', '~&EDzS-c"X-(+2KE9E', '', 0, '?'),
('|X8?t47S', 'wp-content/plugins/elementor-pro/modules/notes/notifications/base-notes-notification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/base-notes-notification.php', 0, '٣&{T?L\\6', '٣&{T?L\\6', 'CRF	\nT6 k9', '', 0, '?'),
('|T]:Y$=''h', 'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*B>	Crg', 'h$V<`X),㍬᫑I\nDX,y؞', '', 0, '?'),
('|pHӠSnRZ:{', 'wp-content/plugins/elementor-pro/modules/forms/actions/cf7db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/cf7db.php', 0, 'LhNMk', 'LhNMk', 'Ip~T&"%V1_}=AO', '', 0, '?'),
('|Y>	Ɔ', 'wp-admin/link-add.php', '/home/binawebp/omsrislb.my/wp-admin/link-add.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SB<+', '";#\\`Ӽ!K1o\n', '', 0, '?'),
('}\\(Z7D', 'wp-content/plugins/elementor/includes/template-library/sources/cloud.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/cloud.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^,r@*V<1?h6', '-q/Rq yDRXf2', '', 0, '?'),
('}ĉ=t', 'wp-includes/images/toggle-arrow-2x.png', '/home/binawebp/omsrislb.my/wp-includes/images/toggle-arrow-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F\\CDr', '-N7~@}_=V_@A', '', 0, '?'),
('}Vd@g#_^ï', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R	fjG!i$', '6.*Ѵ<83S', '', 0, '?'),
('}aX]D*I', 'wp-includes/blocks/file/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6G%rZ8', 'jlh(>]>"GDwnO]', '', 0, '?'),
('}3"jxV', 'wp-content/plugins/elementor-pro/modules/global-widget/documents/widget.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/documents/widget.php', 0, 'cMVφ', 'cMVφ', 'QI.U+G䊮7kvS]', '', 0, '?'),
('},qv8F', 'wp-content/plugins/wordfence/css/fullLog.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/fullLog.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e.i`΁Uv', '?>?hξ[²Pu{puaa', '', 0, '?'),
('}B@eRƟQQ', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-system-status-report.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-system-status-report.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/{۰P2Q@', 'CHLa`W>юC1٧Ӭr#3.0', '', 0, '?'),
('}EOS<j ', 'wp-content/themes/twentytwentythree/patterns/hidden-404.php', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-404.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'קMTt_\Z{!', '"BKG''ܩ~M &gS]', '', 0, '?'),
('}O !ٶ]OO[', 'wp-includes/block-supports/typography.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/typography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I叵Ra', 'W4]%j[漮Z{DTIyf>\Z', '', 0, '?'),
('}\\5\r$lW', 'wp-admin/js/tags-suggest.js', '/home/binawebp/omsrislb.my/wp-admin/js/tags-suggest.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '룉anXz', 'uv\n+TU\\[.L%P', '', 0, '?'),
('}`g"P2V', 'wp-includes/images/spinner-2x.gif', '/home/binawebp/omsrislb.my/wp-includes/images/spinner-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '12^#8', '#˒=$c6	B46', '', 0, '?'),
('}h\rwBpn', 'wp-content/plugins/elementor/assets/images/no-search-results-cloud.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/no-search-results-cloud.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7ZӼC', '(8vy5˹Aܯ$]>{', '', 0, '?'),
('}k=\0E|', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5#\Z@f', 'n99F>N8	[$wO8', '', 0, '?'),
('}qvQ;RDzaId', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qþf,_cF', 'ы0}ŞkB7{K', '', 0, '?'),
('}|\0+N6]R', 'wp-includes/blocks/audio/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f_04a', 's8!20ڠ/%Q?Sv', '', 0, '?'),
('}~@x%qk', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailchimp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailchimp.php', 0, 'mF\0	.%r', 'mF\0	.%r', 'KA֏sɊc\rG_?:hF', '', 0, '?'),
('}Bo{vi׸', 'wp-content/plugins/elementor/assets/js/gutenberg.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/gutenberg.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NWϲ"{)', 'f٠h\ZZB[lZ{', '', 0, '?'),
('}Ծ	oP\n', 'wp-content/plugins/elementskit-lite/core/handler-widget.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/handler-widget.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>-\rt[c#)', 'E|+#''z< lgUnU', '', 0, '?'),
('}r3\r<\r\rS9', 'wp-content/plugins/elementor/core/settings/general/model.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/general/model.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vٯ5z!qA', 'i~bMYQ2%LAt5X>3`|', '', 0, '?'),
('}l8\\;~', 'wp-includes/blocks/social-links/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`Bݴ>[', 'čmT	fq<UpOj', '', 0, '?'),
('}-$LH_R', 'wp-includes/blocks/paragraph/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>J;㇭O', '@BJoX_|!W5lnW&z', '', 0, '?'),
('}/_R\0', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-print.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-print.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';M}\Ze!r', '𔃥ÑPٯ} {.\rg~r&w', '', 0, '?'),
('}e7\nJT', 'wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|$J\\ZWg)', '_k;aЖW\09', '', 0, '?'),
('}Wct{ɻ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/SyntaxError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/SyntaxError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7^J(w', 'ozO@ូp{-KQez}', '', 0, '?'),
('}\nb3͋', 'wp-content/plugins/elementskit-lite/widgets/lottie/json-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/json-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cQBV^+^t[y', 'x0*|S--_,$HiE', '', 0, '?'),
('})W\n(', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rk"6', '/fѱ{.՚Mk(', '', 0, '?'),
('})dt	@-g', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/debug.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/debug.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yb|wb/', 'tVFvX2(ҕiby', '', 0, '?'),
('}t7,OI$dj', 'wp-content/plugins/elementor-pro/modules/motion-fx/controls-group.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/motion-fx/controls-group.php', 0, '>˪Urߒ', '>˪Urߒ', 'HQ\r09ַo\0jL@ᓂBM', '', 0, '?'),
('}4WV|q3f֪', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-minicolors.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-minicolors.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8ޒvd[1', 'MJV	aV+N	^ԈB촙֑=y$Q', '', 0, '?'),
('}Ȑ\\L`i)', 'wp-includes/ID3/license.txt', '/home/binawebp/omsrislb.my/wp-includes/ID3/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>5>q%S\\/,x', ' \Z3\nԨc\0kѕ6k6', '', 0, '?'),
('}郚(BĠ', 'wp-includes/blocks/accordion-heading/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z(&Dwh@mɊ', 'ovXJizU$#nǊp^0;', '', 0, '?'),
('}{RҢ"', 'wp-includes/default-constants.php', '/home/binawebp/omsrislb.my/wp-includes/default-constants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9\\AÂ*', '.%Ö''ɬ4Ue[*^', '', 0, '?'),
('~p){ǎ', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/imagechoose.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/imagechoose.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y(SGK\\', '\ZMӺ%oPG\\uKGUi^T', '', 0, '?'),
('~	,x0-Q膋', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/Stack.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/Stack.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|,"DZQY#', 'OQPI?<B0z6L}r', '', 0, '?'),
('~Ⱦ/mր!', 'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sX][sC>Q', '>_c\ZJ+aUmv)lg', '', 0, '?'),
('~\Z?OtY1', 'wp-includes/blocks/comments-pagination-numbers/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ңʟ;Vkn4', 'Lc߽4!BĢ:[Z\rQy', '', 0, '?'),
('~\\_b$-!', 'wp-includes/js/jquery/ui/selectable.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectable.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6wk8#Ӳ9', '\\{JC8Y>W̦ʶ[', '', 0, '?'),
('~+Z˙6[zp', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-simple-xml.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-simple-xml.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'obibӮ', 'Q&&`˗AEIˈ\\N!0YgdV ', '', 0, '?'),
('~7.J\rCW`-}ς', 'wp-content/plugins/elementor/modules/atomic-widgets/parsers/props-parser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/parsers/props-parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F4܏]i<3\0', '#@4-!i7c''\Z=;', '', 0, '?'),
('~=N	loM3', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~cwR<׵{', '/,툹uS1X3O', '', 0, '?'),
('~?JIb*׺eC', 'wp-admin/images/resize.gif', '/home/binawebp/omsrislb.my/wp-admin/images/resize.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lN', '6󀏸&?5?sqGM`P;', '', 0, '?'),
('~EX"Z](X', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7ZT᪻', '\08@v''+9HY.ڏUW', '', 0, '?'),
('~F㫎>dyj', 'wp-includes/css/jquery-ui-dialog-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rr\natxx̀', 'Bv(t\\{CKr', '', 0, '?'),
('~SkP[P+h-e', 'wp-includes/js/dist/script-modules/interactivity/index.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/index.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8?u0᪢$', 'ZTjeCkbTaylubX', '', 0, '?'),
('~VXa]7p|R', 'wp-includes/class-wp-post-type.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-post-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=򗲙Ten9', 'EUd㻄0咴(%iNo~Ah;', '', 0, '?'),
('~bj|gh', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nS-r7', ';?\n~}8wl\ZA\\ɒ', '', 0, '?'),
('~c$', 'wp-content/plugins/code-snippets/js/components/common/ConfirmDialog.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/common/ConfirmDialog.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"MsɹeQ', 'Z#n؎SI^s48Y/', '', 0, '?'),
('~eohLż-)', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/date.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c[!	mDuN&', 'Mۻڋ2kĢ`AǒIR', '', 0, '?'),
('~iI;ݭ]AS', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GPEKTY)&F', '_0d}f!vmEwWo', '', 0, '?'),
('~p:"1Vސ%"', 'wp-content/plugins/elementor/assets/css/admin-bar.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-bar.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zh@9r*܇', 'f>bdsp.Q', '', 0, '?'),
('~qIPIr', 'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't\Zi wQ̅', 'z9}ՂutQh3\r?', '', 0, '?'),
('~{-L0LPI!', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-05.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-05.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JwO/vxܜ~', ' @_daN5f[gRG/o', '', 0, '?'),
('~}{ >D}<', 'wp-admin/css/code-editor.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/code-editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '03;7v:P', 'JlAZqFv<3I^k', '', 0, '?'),
('~ReOXf2`', 'wp-includes/class-wp-post.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' QIȘ0', '|tC,6;<8N [p4*Tf', '', 0, '?'),
('~C023*J', 'wp-includes/blocks/more/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?㈫	rpE.', '}&ڈnJIXYɮyMd8f)', '', 0, '?'),
('~e?Ry5Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-commentz.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-commentz.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8F\Zd&GN*', 'ansEmҹy1vN=?O9', '', 0, '?'),
('~I]:}tV', 'wp-content/plugins/elementor/assets/shapes/opacity-fan.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/opacity-fan.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ggNpd\n', 'Ȥ\n޼;;ԛmh(&ɪ>', '', 0, '?'),
('~*޿S̙e', 'wp-admin/images/freedom-3.svg', '/home/binawebp/omsrislb.my/wp-admin/images/freedom-3.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(縫\ZX֚1l', '集(;F\nkQu', '', 0, '?'),
('~Q8a5\Z', 'wp-content/plugins/wp-optimize/images/our-other-plugins/internal-link-juicer-logo-sm.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/internal-link-juicer-logo-sm.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '})c\0痹', '\n3emEnZ!ec', '', 0, '?'),
('~Cy@A', 'wp-includes/blocks/accordion-heading/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't̰@K:պbg', 'l0uUCx;=L;R', '', 0, '?'),
('~-ݥk5nܒzc', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/ajaxchoose.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/ajaxchoose.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nJY7Q', 'ыvD%\ZQCDN\Z-^Hl', '', 0, '?'),
('~Pfԩ~1LYw', 'wp-includes/blocks/button/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b̈T3~58.', '[^\0=z\0jl'']c;', '', 0, '?'),
('~ťs\01y$L}h', 'wp-config-sample.php', '/home/binawebp/omsrislb.my/wp-config-sample.php', 0, '<=g\ZHFk%', '<=g\ZHFk%', 'zAjKM-msO̔K8!<', '', 0, '?'),
('~Ӹbc\Z$@$*', 'wp-content/plugins/wordfence/vendor/composer/autoload_real.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_real.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8b;=YXJ)շ', '̆%\rNn_n''EݸږW{=D', '', 0, '?'),
('~\n''$<', 'wp-includes/blocks/details/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z$Up=', 'hD0DcErCQ6&0VLf|љ\r', '', 0, '?'),
('~o\ZbvbQ9"', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y}%a0', '}IV:&$z]9z''׬', '', 0, '?'),
('~׆V]E]4)2F=', 'wp-content/plugins/elementskit-lite/compatibility/conflicts/scripts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/conflicts/scripts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5vI|', '29|}i<', '', 0, '?'),
('~Oeғ)m\rG', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-rpc/class-udrpc.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-rpc/class-udrpc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ҷ#ޮEJ%', 'qGh[*LZ2#<aЊ"', '', 0, '?'),
('~_QүT~~l~', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@>o.yD*', 'DgCl4ԑ\0/O\\g\Zl;:m>', '', 0, '?'),
('~DK-nB\r', 'wp-content/plugins/all-in-one-wp-migration/uninstall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/uninstall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\Wi9*x', 'K樐	b~9`^bŉi[(e', '', 0, '?'),
('~N!U,o<y_', 'wp-includes/SimplePie/library/SimplePie/Caption.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Caption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1nNq#/o', 'T9kX_-dqPMf f8R+Yw', '', 0, '?'),
('~8[Cev-3', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/reactions_12_2017.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/reactions_12_2017.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-;,4Q݀XvLIaF_', '^?`YP	6)8%[⎱ q3', '', 0, '?'),
('N]t/\Z', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X9Lz3', '@\Z|j\\Z 8`d3w[0jmG', '', 0, '?'),
('#I', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-beautify.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-beautify.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':yomǬAI ', '?I:Iev:\n\0^__N	^aI\n.b', '', 0, '?'),
('k8w', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-razor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-razor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',(iZ\\}', '\00l((zRB', '', 0, '?'),
('ldKм', 'wp-includes/js/dist/components.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/components.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؤwZևC', '+\Z\ZsٯN|MxLTe(n=2Z2', '', 0, '?'),
('m/V߶އZzЂ', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-dimensions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-dimensions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-@\0 ђD4', '7	!SQ0a6W6hY', '', 0, '?'),
('$.L^FvVzm', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist.bak', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist.bak', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wx6bvR', '@ݝr+|.iL[\ZiZ\0u', '', 0, '?'),
('.ŉi', 'wp-content/plugins/elementor-pro/modules/woocommerce/classes/base-products-renderer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/classes/base-products-renderer.php', 0, '>	uF%', '>	uF%', '(a]C^/RkZ6)', '', 0, '?'),
('6\0OkvzfTN', 'wp-includes/js/jquery/ui/effect-fold.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fold.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7&<q!<9kSѪ', '7b.Hƽ[/\n3	GO', '', 0, '?'),
('@={&}_', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nOAn0r', '/4t6V.\Z;0E|', '', 0, '?'),
('B2j70/zLq', 'wp-includes/css/dist/block-library/classic-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>dc5?', '?"4AHCǓ_/', '', 0, '?'),
('IH$l''zDP0', 'wp-content/plugins/code-snippets/dist/editor-themes/yeti.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/yeti.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v\0Iuh', '4 n4A8\rE=T', '', 0, '?'),
('cJweIOIq', 'wp-includes/blocks/cover/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*N{j䋴fy', 'h>kIicl9\\k^tYڅeP', '', 0, '?'),
('d>&dCQi\Z\\', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-turtle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-turtle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_\nw', 'a A\nZ\ni	ExG', '', 0, '?'),
('hdA', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=m7w\nuȋ\Z!\r', 'Ӽ)WB0`i|ESV\rz5', '', 0, '?'),
('j&^b', 'wp-includes/ms-settings.php', '/home/binawebp/omsrislb.my/wp-includes/ms-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W\n̞tasw~ө', 'sL_RgߤJ,pk^5C4p', '', 0, '?'),
('j^SN-O ', 'wp-includes/css/dist/components/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}ƫ\\E:R-', '|s\\}xܭ5DCOSR', '', 0, '?'),
('mjS*V-oP', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/module.php', 0, 'dNaH\\]jBQ', 'dNaH\\]jBQ', '#)4=%Y~uw', '', 0, '?'),
('tS"lZcQ', 'wp-admin/js/auth-app.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/auth-app.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '04z>s,\r', 'S\\|3m4:ϭqB\r7', '', 0, '?'),
('|ďHfwJck(#', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-info.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-info.php', 0, 'K;7\r', 'K;7\r', '5ҐPJ\nؖjAd	̡G*', '', 0, '?'),
('}BfkV=15lg', 'wp-includes/blocks/avatar/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*(\ZIz', 'e2,ՔenCL]s+', '', 0, '?'),
('}KqhE}$e', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')#4t`}V5h\n', 'Vۃ{7֡\r_^5BY?=7', '', 0, '?'),
('>oӬ6W&', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1oտ', ' 0^tTf+syޕ%6!F=\n', '', 0, '?'),
('Uf傘Zc', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xIޗ\0B3a2', 's4>I]hF:?BQ\\?@k', '', 0, '?'),
('z~48lGo8', 'wp-includes/js/dist/style-engine.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/style-engine.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(챆\\t=1/k', 'gꎊi?Rk-9#XF?', '', 0, '?'),
('D8-¤rl', 'wp-content/plugins/wordfence/images/logos/shield-care.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-care.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	 sh߉\0tv', 'f2"(>lH93 	C$<', '', 0, '?'),
('7>M[THv', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/RedirectHttpAuthorization.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/RedirectHttpAuthorization.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YeO0', 'K|~Rqvn5g3E', '', 0, '?'),
('\rvsޓ[~f2c\\', 'wp-content/plugins/elementor-pro/modules/forms/fields/step.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/step.php', 0, 'hsS{}1]~', 'hsS{}1]~', 'SOŨ#..䖆	դE])eI', '', 0, '?'),
('%G]f@%Z', 'wp-content/plugins/wordfence/views/common/section-subtitle.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/section-subtitle.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n^\r#fstW\Z', ':taQE&͜s١\nGb\\Z S1{', '', 0, '?'),
('zR', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-title.php', 0, '1ǈfwM1N', '1ǈfwM1N', '\Z^cg!Cؾ؁f%a', '', 0, '?'),
('rNGI\ZX', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotEqualBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotEqualBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '趖z<O', 'nEKt+oao\\q>G~"J>', '', 0, '?'),
('Ƶ -9cD', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-page-transitions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-page-transitions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p\n7', '!]hI4x\r#3lFJ2\\', '', 0, '?'),
('H\Z=Bw8C', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{AMD9*', '\nD+sv\0+3*e[~c', '', 0, '?'),
('4$K^,?', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/layout-direction-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/layout-direction-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rz޳7B{', 'c\0N4!2\0Y܃	M$', '', 0, '?'),
('СqD֚?iX', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HʷLYo+Mo', 'pZ&Gj\0N	d-J{ErIC', '', 0, '?'),
('*.o>V٥ra', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gob.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gob.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K_\0C', '9rq.(+FūϴKsr', '', 0, '?'),
('KQ}U&;&Q', 'wp-includes/meta.php', '/home/binawebp/omsrislb.my/wp-includes/meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F\0	ŗ	Uўt~', 'Dvùg6Bƹꖗ', '', 0, '?'),
('=4͟X', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Inject.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Inject.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h?[ĦFB', 'TjaOYHADGІqlE	8}r', '', 0, '?'),
('trεF_ ', 'wp-includes/js/wp-emoji-loader.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji-loader.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rye', ':/p£ǐ\\vΏc>', '', 0, '?'),
('1OK~ww', 'wp-content/plugins/elementor/assets/css/widget-menu-anchor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-menu-anchor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w,;hI', 'j0[ P\\U9DƈY9}//yț', '', 0, '?'),
('u3T\rN', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/FactoryInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/FactoryInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hl`[8\n["*', ':B2"QVrQ%tGiǀ', '', 0, '?'),
('Dtk	o+\n#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.murI1G', 'Lr7D@yɂ]NK(tiG9Tm=', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('͍ρbB', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':CVFІR', ',)|Fa悃f>;J\\', '', 0, '?'),
('QRC-hbT', 'wp-content/plugins/all-in-one-wp-migration/changelog.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/changelog.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Oڌ;1\r\rp7ߊ', 'q2y~v{&,EL3h=', '', 0, '?'),
('E''HgC\\', 'wp-content/plugins/elementor/includes/controls/slider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/slider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1yhG9C', 'tL6GM(''H.nĕ{', '', 0, '?'),
('Y`<|F', 'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui.structure.min.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#/h<U', 'ni뗅NvX7Y]D', '', 0, '?'),
('C4_Dm', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump_node.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump_node.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`''vsfh3P', '\r-pAeZ>={^XL0', '', 0, '?'),
('WJbM9u#', 'wp-content/plugins/elementor-pro/assets/js/loop-carousel.8c8c442ebf9839e07d4e.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-carousel.8c8c442ebf9839e07d4e.bundle.js', 0, '^#0ciZY', '^#0ciZY', '\rD4"K,y4C0\Z8Jv׬', '', 0, '?'),
('/c\0gs</', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Urq@`WH\\aO', 'U^4_F}MXբ"a\\\r/\ng^M', '', 0, '?'),
('3-f\n', 'wp-includes/css/dist/list-reusable-blocks/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GMsFY', 'Ӻ҄dO9*"kMr:{''V`i', '', 0, '?'),
('7}P$hm', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.faa7b80e9ba9e5072070.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.faa7b80e9ba9e5072070.bundle.min.js', 0, '_IOmr', '_IOmr', 'OA8ƬoW2G!:ZZ', '', 0, '?'),
(';!1>YxQ', 'wp-includes/js/dist/block-editor.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@NƑ.B\\', 'AIDpՁՑ܏ܩ"yZ;į', '', 0, '?'),
('AL,%+', 'wp-content/plugins/elementor-pro/modules/notes/data/endpoints/summary-endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/endpoints/summary-endpoint.php', 0, 'WTLO^_', 'WTLO^_', 'W#-k\rzVCs\ZGЛ	n2U~', '', 0, '?'),
('GUיcg1', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-P cI`bB', '(`F{~A\rȈ}+auyLT', '', 0, '?'),
('H:ȃ{ɻaI', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Null.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Null.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's"1X^q', 'y{ y4''K''n\rĸD,d\0}x', '', 0, '?'),
('JtV!"\r	', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ca$JG', 'Sēx풏lܗrh6 H', '', 0, '?'),
('T\rzgZRʒ', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yXRES_<^''', 'd gJ,fP', '', 0, '?'),
('XKk#/K', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vmLTI ib', 'n{jvMɳh4o_RGC`', '', 0, '?'),
('ZdOr2k.', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?mԽyd', 'tKӺZo~CX@,jR@!', '', 0, '?'),
('_5\Z$Ɵ\r?', 'wp-content/plugins/elementor/data/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FgyaHO>g', '4˳<vczr0Rl/HRl', '', 0, '?'),
('uUcy)L^!', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*K	jRz', '"Ҵ\0vtdH45~,#4', '', 0, '?'),
('xܟBI', 'wp-content/plugins/elementor/assets/lib/font-awesome/json/brands.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/json/brands.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':bmq)HBT\\', 'VF×&ަ.;/Yӡ', '', 0, '?'),
('㪢?g؃X]e', 'wp-content/plugins/elementor/modules/home/transformations/base/transformations-abstract.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/base/transformations-abstract.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nd0&nv|.Z7', 'FK-N3_p}:I3>A3խ', '', 0, '?'),
('ah#8c', 'wp-includes/js/tinymce/themes/inlite/theme.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/inlite/theme.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4ODIc`EJ', 'pvT5Z>jj\0\0fxa/g=&', '', 0, '?'),
('I[`Ziu', 'wp-content/plugins/elementor/assets/css/widget-floating-buttons-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-buttons-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'awOkvi=', '"4_J\n2ÈzL@c', '', 0, '?'),
('xn٬1Q\0W', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-10.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-10.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rjB%X[9', '\n"ԋ̫>mj>9*	a', '', 0, '?'),
('#\\7\ZhGl', 'wp-includes/blocks/post-navigation-link/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r[u׀?vFq!u', 'R/(+"	~$W\r@]c=@Jw\ZG', '', 0, '?'),
('t~$\r', 'wp-content/plugins/elementor/assets/css/widget-star-rating-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-star-rating-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L~" \\±_;e', '	*N7\rRAP''5{NΔ', '', 0, '?'),
('|ּFyYj"', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OuQ<Akw', '._T<_]0R1kqn', '', 0, '?'),
('emg٩#', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/OptionFactory.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/OptionFactory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hWM	au<NGA', '}''\n`ZuhHD._\nv/8}fD2[', '', 0, '?'),
('r=cMz', 'wp-includes/js/dist/is-shallow-equal.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/is-shallow-equal.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%+$d=,.)', 'yQ9I%H4Bt5)', '', 0, '?'),
('AпF''Y', 'wp-content/plugins/elementor/assets/js/packages/env/env.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('%	+곂4{:', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oѕbYR', 'tiioP7,R|qX)ᆊǮf@Kv	', '', 0, '?'),
('!h\Zɨ$"R', 'wp-includes/css/dist/edit-site/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ũ`\\g/', 'dxCH\n~ nh=N}', '', 0, '?'),
('ںuM[\r', 'wp-admin/images/wpspin_light-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/wpspin_light-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{%-E;|', 'u)JA92$N8''F', '', 0, '?'),
('Nxډ\Z8yH\\', 'wp-admin/js/theme-plugin-editor.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/theme-plugin-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zi HGxLoˉ', '	5(T?/if;ԋ0^"%He', '', 0, '?'),
('sSki<4''c-6', 'wp-includes/js/wp-embed.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wbsxgp)q2*', '.b$-''wP\\/"OXH', '', 0, '?'),
('@KF<*', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('.ճ_y', 'wp-includes/blocks/math/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U$a-', '/^u)[=L|N_4AZJ,', '', 0, '?'),
('e97aJS', 'wp-includes/images/smilies/icon_smile.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_smile.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3.)2p', 'ˠ",RʨTr=orЗ:', '', 0, '?'),
('Qru\\w', 'wp-includes/blocks/accordion/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kT0kUٵ', '@q\Zxt-"P)', '', 0, '?'),
('7::*F', 'wp-content/plugins/elementor/core/editor/loader/editor-loader-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/editor-loader-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bIh~7ߏ\0', 'XM	\0Өri9VWNE9', '', 0, '?'),
('!Lqq1Rcj#', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=\Z0tf', '}\\Q2:E0''Ϲ|)g0w&.', '', 0, '?'),
('ԥD\0', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c1UCJ"+\0', 'R$^g~m:U'']q=>7', '', 0, '?'),
('XQd9rڼ', 'wp-includes/customize/class-wp-customize-themes-section.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-themes-section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VYr\\ܘ/1', 'RfZZ#C/\ZPaejUtA^J', '', 0, '?'),
('UhgM dnQ', 'wp-content/plugins/elementor/core/files/file-types/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Og(ԷtV', '͊}3;e`q\\P"~O~.N', '', 0, '?'),
('cdcƚq~%', 'wp-includes/blocks/navigation-link/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ScY\\C?', 'Di8Uݣʂ$\ZSz+\r', '', 0, '?'),
('}:bֹA52r[', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Stack.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Stack.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%[c$z!E"', 'ɐخDj/#Q[xs', '', 0, '?'),
('2''|YVg', 'wp-content/plugins/elementor/assets/js/web-cli.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/web-cli.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('&W^\Z7ɿn`X"', 'wp-content/plugins/elementor/modules/history/views/history-panel-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/views/history-panel-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';uOgV[P6l/', '<C;n\\WM(8Tz؈p4U', '', 0, '?'),
('4)@I`G', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/5.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/5.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '58J)!T', 'w\\dl&/{^%\\RjJ_RI\ZUhf', '', 0, '?'),
('AO,uwW', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f:i', '7C/>>_C5^bngD', '', 0, '?'),
('B`}h]#', 'wp-content/plugins/elementskit-lite/libs/emailkit/emailkit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/emailkit/emailkit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' c6*j', '_%]OQv]){jof:0', '', 0, '?'),
('OnzOz6j3', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gPl\ZD}`', 'Q驇0HA2yKW1=[av', '', 0, '?'),
('Qa2#f}\\>', 'wp-content/plugins/elementor-pro/modules/popup/display-settings/triggers.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/display-settings/triggers.php', 0, '}oHCb\rMG)P', '}oHCb\rMG)P', '.GBPg1knM', '', 0, '?'),
('Y9g^P9Ń!', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/interfaces/endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/interfaces/endpoint.php', 0, 'aZ.,dUC4#', 'aZ.,dUC4#', 'UGO+Fkj`BC&Kr', '', 0, '?'),
('cCEqX.`o{', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v^t%h8D[', 'HѮmŋt5>.	ڌ~i', '', 0, '?'),
('el5sEúQ', 'wp-admin/js/media-upload.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/media-upload.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WC}KF j', 'w@S¼|\r>R4\nN3YsS', '', 0, '?'),
('mXnyvt+lM', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-fr-FR.po', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-fr-FR.po', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.8M=e', '-X8wcʼrʚp{wg', '', 0, '?'),
('n̦z18:g', 'wp-content/plugins/elementor/modules/system-info/templates/html.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/templates/html.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nܚֲd%k', '#GuVҲ*H	:6E]tP|', '', 0, '?'),
(',CUU9i-', 'wp-includes/css/wp-auth-check.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '۝Vk', '(b5Œ!VNjlVKd#/X', '', 0, '?'),
('&''iGuZ-', 'wp-content/plugins/elementor/modules/wp-rest/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'А.~8\Z', '&R[ŷz28^\0R|V},^', '', 0, '?'),
('rҥ2P慫', 'wp-content/plugins/code-snippets/dist/editor-themes/base16-light.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/base16-light.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V?H/1]@''', '_NGs݈$33i9O', '', 0, '?'),
('_\\	ἙWS̸:', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-20.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-20.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hkp%߃ԍ9\n', '|݊\r>>qCd''$rd', '', 0, '?'),
('ȉV?	])A', 'wp-includes/js/media-views.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-views.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^psmd', '2p:@; k 84\Ziq', '', 0, '?'),
('Vk8`+', 'wp-includes/js/dist/development/react-refresh-entry.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-entry.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	`OmWeI{_', 'ǒK4i''R!Dim0mu/', '', 0, '?'),
('`hNkON8', 'wp-includes/blocks/file/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^e7ST݉I', '2{o}r62=;;b', '', 0, '?'),
('W=ԘHdz', 'wp-includes/class-wp-site-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-site-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G;c]S/', 'b V֮Fȸ\n;F"FLy\r', '', 0, '?'),
('NgZ[ō]W', 'wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.min.js', 0, 'tk@ũAhk', 'tk@ũAhk', ':H	[8)8%5~XO6\\', '', 0, '?'),
('X-4J_3', 'wp-content/plugins/wordfence/lib/wordfenceHash.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceHash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y!\0-?*L', '3JԄ3kUPbX;9)', '', 0, '?'),
('''>[·', 'wp-admin/js/user-profile.js', '/home/binawebp/omsrislb.my/wp-admin/js/user-profile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q4[[$', '"F4x*ƃ-kco', '', 0, '?'),
('݈H.', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.r~rƚe (', '/f{d7]@r?/vȋe`rj', '', 0, '?'),
('hLvrDk', 'wp-content/plugins/elementor/modules/checklist/steps-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dx''=eB', 'xTgH"}Wtu?Ҧ/+N', '', 0, '?'),
('Pdc3', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.<$E\0g:T', 'ƝER%f\\ɾ\rv8C^h', '', 0, '?'),
('Vs\0', 'wp-content/plugins/wordfence/lib/wfIpLocation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIpLocation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fQBDI', '=9qQX|taOn_bKA.ru^Y', '', 0, '?'),
('OXg]<f@', 'wp-admin/css/farbtastic-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S@[\\,3|!', 'Sm'';d`eM0i=?>?{', '', 0, '?'),
('uWۓWP^(L', 'wp-includes/blocks/post-navigation-link/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OvSi?\0Â(', 'ŶCϭhF0:2Iv\ZT', '', 0, '?'),
('3Ƈe(ú9', 'wp-includes/js/jquery/suggest.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/suggest.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's\\+A)n.;', 'I<{\04`<!jZ8돲DHW', '', 0, '?'),
('bN8hk', 'wp-includes/rest-api/search/class-wp-rest-term-search-handler.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0a^bR\\r', '0EtZ[ĈiuО', '', 0, '?'),
('\0Oz', 'wp-includes/js/dist/script-modules/interactivity/debug.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/debug.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xq\\P;\nÅ$Ń', 'AI\n!d?ۖӌ&)o$!', '', 0, '?'),
('>''n0U', 'wp-content/plugins/elementor-pro/modules/mega-menu/traits/url-helper-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/mega-menu/traits/url-helper-trait.php', 0, 'Ոq''>R', 'Ոq''>R', 'v#ե\\\r")|QZ,r!6n', '', 0, '?'),
('f.r(', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZD(1eIC', '=p_:|ClJw`[', '', 0, '?'),
('\\(wBI', 'wp-admin/network/update.php', '/home/binawebp/omsrislb.my/wp-admin/network/update.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l	ΒRU;ppb', ',!m4fNR\nB^', '', 0, '?'),
('"OM\0Bٲ:', 'wp-content/plugins/elementor/core/page-assets/loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qk̒5ۑm', '.?eʢ(6''9l{Fv', '', 0, '?'),
('&yqG~\r', 'wp-content/plugins/elementor-pro/modules/query-control/controls/query.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/query.php', 0, 'Όwk5"', 'Όwk5"', 'dݨEfUB+jv2csV', '', 0, '?'),
('(tTlDά7&MP.', 'wp-includes/js/tinymce/tiny_mce_popup.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/tiny_mce_popup.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B7I10d', '''З/!\Za!~)1D', '', 0, '?'),
('/	E:KR寥v', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V[SPkC', 'ںمŴ}C:ø=~Q(8$Q', '', 0, '?'),
('@F Ӡ(e*[', 'wp-admin/js/theme-plugin-editor.js', '/home/binawebp/omsrislb.my/wp-admin/js/theme-plugin-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r4,bL];w#', 'lCP\\~\r)''Y^\Z$5l[;', '', 0, '?'),
('Aeׇju\Z', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\nOm7ce>p@', 'GL.&mj8E''IIפּόz', '', 0, '?'),
('F GJBs7', 'wp-includes/js/media-models.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-models.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kib&. \r', 'fl:h≫dA0R s7c', '', 0, '?'),
('MȮs%}+=', 'wp-includes/blocks/latest-posts/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƚ"Cƾ	v5', '"^C+4-\Zť', '', 0, '?'),
('W= \\''x"W}d', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'թK^㥾', 'M8:naƋGZqQdý!''&g1', '', 0, '?'),
('Y9Up-#%J#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/curly.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/curly.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r]92t4z)%r/', '-evcF\\xwvNބ6NmxX', '', 0, '?'),
('Yػ甩*', 'wp-includes/css/dist/edit-post/classic-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?YEAdN$;f^%', 'Q\nZqQ;rO', '', 0, '?'),
('i81a\\', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-glsl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-glsl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=9ƃ|-P', ';`4\0#mbh*vBl٧0T[', '', 0, '?'),
('oRSI\rVʽƘe', 'wp-content/plugins/elementor/includes/api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\l_pƇ', '<l\r/zH2#SXloNb', '', 0, '?'),
('w5)', 'wp-includes/css/wp-embed-template-ie.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template-ie.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hg9iyg7P*', 'C!`\rA\08M^/\0p', '', 0, '?'),
('\rl;E', 'wp-content/plugins/elementor/assets/css/templates/widget-toggle-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-toggle-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uT])V<;', '[vv۟4\n\\(Pkʧ$', '', 0, '?'),
('\0+OW+', 'index.php', '/home/binawebp/omsrislb.my/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm]#NX,', 'Dz\n}_7x,9t:''\r', '', 0, '?'),
('޼K\r~', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$l\rhcs!H', '''$I啖E#_-BRkˈӽ\\', '', 0, '?'),
('е"kjG', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uJ;#cP', 'imaMӎƴ2Ũ&_כS]', '', 0, '?'),
('739`8', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/support-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/support-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zfߋõi', '.MWiD?[}[t]͡UF<b', '', 0, '?'),
('mg^4.@H)', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dockerfile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dockerfile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zؒ%`\nI\\J', 'eT1ɮ|ww7x#?O1Cd', '', 0, '?'),
('A1\Z;', 'wp-includes/rss.php', '/home/binawebp/omsrislb.my/wp-includes/rss.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'inzRJ7mB', 'MrD]3c9B+!R)2', '', 0, '?'),
(':<CEly', 'wp-includes/SimplePie/src/Category.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Category.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';D@0\\G', 'XBP%\Z7#fq5/⎷&''3', '', 0, '?'),
('ͽ\n^s', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-editor-config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-editor-config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mHe\\ض', ',u~pȦӲJ2{DqW\\H', '', 0, '?'),
('wc:;8J', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/python.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/python.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7=/\Zu', 'io\nW}eA/+P c', '', 0, '?'),
('¶B&h&a$', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/export-runner-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/export-runner-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}\\@nyNy', 'o2?;ĈDOJWs', '', 0, '?'),
('C`f_Ʉx', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vala.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vala.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1	}qY8EP[', 'Y`''/̈?-b+Ș~m', '', 0, '?'),
('ȳ)b4.sP', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-logo.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-logo.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-z-@-d', '{ez~yU0oߤ,.ѥMce', '', 0, '?'),
('14R', 'wp-content/plugins/elementor/assets/shapes/split-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/split-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jHC@/)', '=$c(^5C#L2z', '', 0, '?'),
('̈$9-H&#el4', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VW皷Umo	', '>Yķ-HOA|]_R劘=', '', 0, '?'),
('{hB-o:Ih', 'wp-includes/blocks/query-pagination-numbers/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@E(1˱eB', 'O;\nV[%\Z3Ehdx:{', '', 0, '?'),
('Ѣ/# |g[) )', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q8Z5ԶxF', 'ub{<ah##4\0B~<_\n_!uze', '', 0, '?'),
('ؾldjc|f`^', 'wp-content/plugins/code-snippets/dist/edit-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[i;"W=	', 'h)ϵ>8kڦtGwIvm5', '', 0, '?'),
('b^&', 'wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q(9WpY', '({\n<7oFGP\ncjv', '', 0, '?'),
('tU^6L', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U9\rm{P[k\Z|K', 'syW5 2#ي\\$y;}q\r', '', 0, '?'),
('ܥƙV!׈1', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JѨy{\Zԏ', '.W|pטB\nq/)fa՟\02$"', '', 0, '?'),
('ީǕQhd^ܡm', 'wp-includes/SimplePie/library/SimplePie/Core.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Core.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#߷\0''\nFt', '-Oz\n-ջ1o[	', '', 0, '?'),
('٩D0oVY[b', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/hidden.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/hidden.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݔl|65)2T ', 'N\n,@t9?.~F_|QDP', '', 0, '?'),
('vA\nGr3C9`', 'wp-admin/includes/class-wp-internal-pointers.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-internal-pointers.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'frȗVC4ϸ', 'u	o L"fz''ס=^k՘]WOu', '', 0, '?'),
('7x5\0},xp', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_biD3D͏', 'rrh `y[)5\rx{nxz\\', '', 0, '?'),
('d!w''~9', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B$XޔJ', 'Ka!lwB-3+8EM', '', 0, '?'),
('gG ZHt', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/click.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/click.svg', 0, '¦M{i', '¦M{i', '(sT{SgXH\n<,~=', '', 0, '?'),
(']ނִ&iU', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/module.php', 0, '`TüLy', '`TüLy', ']J)a&=k8"_q?T*=', '', 0, '?'),
('ƶq	f', 'wp-content/plugins/wp-optimize/vendor/bin/minifycss', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/minifycss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6K:9', 'ƵJ[5\\]zF {oيC"', '', 0, '?'),
('$EGmmO|', 'wp-content/plugins/elementor/modules/image-loading-optimization/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/image-loading-optimization/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KNv$&ٮZ-|', '/9\Z~*#gJ/a_#a ygL', '', 0, '?'),
(',Q>;ij', 'wp-includes/SimplePie/library/SimplePie/Registry.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fi<h|', 't]8%cFU)FnrfIe', '', 0, '?'),
('7[j=LcBrro9', 'wp-content/plugins/elementor/modules/shapes/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/shapes/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܔKg۩i', '-@LӨq$:z¬ |', '', 0, '?'),
('Ebl8y}', 'wp-includes/js/tinymce/plugins/link/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/link/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*NȒmQ', '`3cYQ9Wޭ#lpS+G4', '', 0, '?'),
('WnJ.''/x', 'wp-includes/blocks/embed/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vM0AW+{-W', 'ΛQ=12g60j0', '', 0, '?'),
(']M4:BId	', 'wp-includes/blocks/math/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' N\\0 Aͮ"', '߉^^SxSϟ1h*fq[k', '', 0, '?'),
('_\Zr*ZS', 'wp-content/plugins/code-snippets/dist/editor-themes/ayu-mirage.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ayu-mirage.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fMMc4[\r0', '։&޳b8|j׿bk#', '', 0, '?'),
('h''hQ{9`', 'wp-includes/Requests/src/Exception/Http/Status401.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status401.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RuM6/R\\', '9`s-KGHےw3޲7	', '', 0, '?'),
('nyE[ծg\Z', 'wp-content/plugins/elementskit-lite/modules/controls/image-choose.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/image-choose.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aM㵂Kt̗', 'fJ@-*vn\\r''R}I', '', 0, '?'),
('s9(S*n9{', 'wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js', 0, 'S!q`%Bs''', 'S!q`%Bs''', 'xQhj\Z5w˹h|Dۢղ', '', 0, '?'),
('wOcV̴W', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xquery.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xquery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''r+n', 'ANp`ߣ̀\r]/\Z~RP4x', '', 0, '?'),
('{KǍ:R,$1', 'wp-content/plugins/elementor/core/settings/base/css-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/css-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-qdK''z}', 'fO9&DF:ce/B9ɹtO^H', '', 0, '?'),
('|(\0]\\.', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-number.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-number.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*$CH\Z[4', '3Y&o\nc{))''}(&', '', 0, '?'),
('\\JIv6N''', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZD(1eIC', '=p_:|ClJw`[', '', 0, '?'),
('؎}̏<', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/1.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/1.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؚr㤷	YB;u˲', '''	d)]ZF/zP_1E$;V@%tH', '', 0, '?'),
('WkV', 'wp-includes/blocks/comments-title.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@RxᛱH', '/eA[''\\o=o*dE@˛0', '', 0, '?'),
('QYZƖ䶍p', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~éSnR::', 'iQ\nf0N?³<;', '', 0, '?'),
('?z6aDz', 'wp-content/plugins/wordfence/images/loading.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/loading.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K:m𙗣P', 'j*edoX~7&N9|L', '', 0, '?'),
('YO,H/L6GB', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/ClosureCompiler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/ClosureCompiler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˽,HJC', '~c%t*Oھ+};"ۗf[', '', 0, '?'),
('nosMx', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockReferenceNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockReferenceNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zr', '/({<iTQݺu', '', 0, '?'),
('אabބ^,X', 'wp-includes/blocks/term-name/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g&\njVSbf\\[', '*v''o4P{+`4BLUӻ;[S', '', 0, '?'),
('и+:3XnNtexX', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{W7h>', '	2mw3)zWgv{AfHu`Co', '', 0, '?'),
('ʆnD㮖(', 'wp-admin/css/install.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/install.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|4X', '/Y$._	r<fuuJj', '', 0, '?'),
('j5fj', 'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B؎S-', 'R@@lQF܃''(m^znwnxqO[', '', 0, '?'),
('ɛ\Z \Z_\Z', 'wp-content/plugins/wp-optimize/images/features/wp-cli.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/wp-cli.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kޞ߭yW/A`', 'qLhj}\0xyF|>7@V', '', 0, '?'),
('~ܕRvR', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sii|vj-', '54\0u|44-lB=%', '', 0, '?'),
('KSEōL3', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V=r@ٸ~kt', '|J\0R]-23zTH?U', '', 0, '?'),
('5(QKm', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v)̵P2]V', 'Y`@S<ާ@O|(v;', '', 0, '?'),
('S~KʌS', 'wp-content/plugins/elementor/modules/wp-cli/library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|=#5\Z[Ma', 'i¦>I3xMy!>>\\IH9]K', '', 0, '?'),
(')ũ2[	4_a', 'wp-includes/class-walker-category-dropdown.php', '/home/binawebp/omsrislb.my/wp-includes/class-walker-category-dropdown.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԂIV*t', 'Iw^KHĶ\\s~BW㺾fI', '', 0, '?'),
('+o28E+K%;', 'wp-includes/PHPMailer/PHPMailer.php', '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/PHPMailer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r]ʽeIHhl$', '2ePA9ebi3H/U\r]U~', '', 0, '?'),
('8͆wuD', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/red.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/red.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm\02qjs\n', '0+x߉/$ ,;sY\r0', '', 0, '?'),
('9Dka&w~', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/EscaperExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/EscaperExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mwf<S', '"P=Y7z۸\rX_5wa65', '', 0, '?'),
(':+[gCZ', 'wp-includes/template-loader.php', '/home/binawebp/omsrislb.my/wp-includes/template-loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Up!S^il\Z', 'L2m3\n#so9N+)AY^"#k', '', 0, '?'),
('Ji)#k	ͷoJ', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-text.php', 0, 'ij0 Y:^{', 'ij0 Y:^{', '(BOd7?hI=pǝ֒[', '', 0, '?'),
('Yr~Ҁ:$!', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[{7DYhЧmf}\rf', '\n?\raؐAL:, ={L5}+,', '', 0, '?'),
('].aagGt', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(K˱wuj1', '\n{5]W7b8QcK\n[lHW', '', 0, '?'),
('^_]Sc`@', 'wp-content/plugins/elementor/vendor/autoload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.m	\nwjgUt)', 'uplÍNG#^Lp(', '', 0, '?'),
('_I͵٩ep', 'wp-content/plugins/elementor/core/base/background-task-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-task-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')94ذ6z', '>1Htl{,ߜMjdz$', '', 0, '?'),
('i2O׍+sX.', 'wp-includes/js/jquery/ui/core.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/core.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '82Yfgp', '?U7DoszX-҂b|\Z', '', 0, '?'),
('o}3kvUOa', 'wp-content/plugins/elementskit-lite/widgets/widget-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/widget-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hU>mJP', 'C"//dK\0#\0\r', '', 0, '?'),
('>,\0.tZ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/scripts.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/scripts.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EzoM]', 'JV6=ٶgA>ZGA@~', '', 0, '?'),
('qtOD1v[', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/_index.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/_index.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ѓ"XRqO', '*/1r1Gab;qv=j|t', '', 0, '?'),
('@<N8iy', 'wp-includes/blocks/separator/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EOcm{', '/`i-^3җ;BT;#\0r}:j', '', 0, '?'),
('VE>Gzp:cm', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.b18af78282979b6f74e4.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.b18af78282979b6f74e4.bundle.min.js', 0, ')alE(', ')alE(', '*e|ziF".CPyu4ܿ', '', 0, '?'),
('PM˝=U', 'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʿm\\m10f*)', '	mY_\\''.]WyW00', '', 0, '?'),
('ޖ,ΫHWDD', 'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/KZBѢ\0q3', ']YYgjֵP/v(ۯ [', '', 0, '?'),
(']g#՗\\', 'wp-content/plugins/elementor/includes/widgets/tabs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/tabs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~:b', 'L;^XMSLn^a*\nR\0-', '', 0, '?'),
('e-\nyV', 'wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|Wwb>EyJ', '''~6ȝ\nBagzdQ', '', 0, '?'),
('|--x', 'wp-includes/blocks/post-comments-link/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j\nz', '''N2Yly7xHy|', '', 0, '?'),
('B-MR', 'wp-content/plugins/elementor/core/app/modules/kit-library/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/kit-library/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4hy+v[#w', 'NCsEXM=d̄υ|34^o', '', 0, '?'),
('PUac', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YAG=bu', 'z,ͥt	<{@Y{iysc(SL', '', 0, '?'),
('Q=KX0', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ConcatBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ConcatBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e3k_', 'bQvbSgQ֌6yMpkF&', '', 0, '?'),
('?؃e}&', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϬmMtѼJ', 'f.%*ƚWnCsSi', '', 0, '?'),
('ӧl~ΣV', 'wp-content/plugins/code-snippets/js/services/manage/requests.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/requests.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fi\n0	 \0', 'q`7e{X>8,', '', 0, '?'),
('nvZYV', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n6G6)(P', 'CXEa/fPK{˾^j"C3FeִS', '', 0, '?'),
('OuF%@', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-archive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-archive.php', 0, '`o_\ZO`ph', '`o_\ZO`ph', 'tÌIعei\n|q?g)', '', 0, '?'),
('Ê6P\0-b', 'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-posts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-posts.php', 0, 'D`6+pe|', 'D`6+pe|', '~	dSwk#=S3L', '', 0, '?'),
('%+aU#''', 'wp-content/plugins/elementor-pro/assets/js/social.68fec39648b9a03c6275.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/social.68fec39648b9a03c6275.bundle.js', 0, '>*1S6Tb', '>*1S6Tb', 's7L>%Yq]\\FF	Fq@', '', 0, '?'),
('+DQ(X', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<;\noWA*^', '6|VbR+k<a1ee', '', 0, '?'),
('\Z^-5ABy', 'wp-content/plugins/elementor/includes/widgets/heading.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/heading.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9;{lpq\0I', '~1buȫo&tm"L2', '', 0, '?'),
('"yUP=ēt', 'wp-content/plugins/elementor-pro/modules/compatibility-tag/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/compatibility-tag/module.php', 0, 'h7(N<k9u', 'h7(N<k9u', 'iad0Mˢ<P?Pp', '', 0, '?'),
('ZDl=컫', 'wp-content/plugins/wordfence/views/waf/waf-install.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wD?a/', '&񵛀I4{>ros\\K'' [^o', '', 0, '?'),
('{/趒Z', 'wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e1!hmeI֜)o', '3B\\DhDWIl@0', '', 0, '?'),
('$v]pѹ0', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^:#{RD', '\rzU`p$~|%!@wocYb}2*', '', 0, '?'),
('&''{S', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Op)Ű-L', 'xj7o='')I4K<l{<NV,\r', '', 0, '?'),
('?\0h3L', 'wp-content/plugins/elementor-pro/assets/js/animated-headline.ffb4bb4ce1b16b11446d.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/animated-headline.ffb4bb4ce1b16b11446d.bundle.min.js', 0, '6\\Tt8V', '6\\Tt8V', '~ա"\0O}\r2f', '', 0, '?'),
('@KQQQC7e\Z', 'wp-content/plugins/elementor/core/base/elements-iteration-actions/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/elements-iteration-actions/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F}P&ٻGAek[j', '3?T75%\\pzJT6]|ZHR', '', 0, '?'),
('B%v6I"Jb4ӡT', 'wp-admin/link-manager.php', '/home/binawebp/omsrislb.my/wp-admin/link-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T5}+;	M	', 'qHrY)Y7F;eq-t$G2q', '', 0, '?'),
('xcױͼ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k`?g(Zn', '\r,\\j([LȽAp', '', 0, '?'),
('9}#Ɓ', 'wp-includes/blocks/query/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i[I,HN', 'yq?Kbh8B>_O	k75Tŀ', '', 0, '?'),
('*\0a\0Fo', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MatomoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MatomoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^:q#]1Ū''\r', '\\~1\0|`EMVeɈ', '', 0, '?'),
('w.(	=', 'wp-includes/blocks/navigation-link/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dqL,', '-ly y-ROM\\te=fh&%r', '', 0, '?'),
(' "-79', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P"ajq\Z(E|', 'x5Igb]1&3{uU2-}ƒ', '', 0, '?'),
('I6F', 'wp-includes/blocks/rss/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'clsv4\r', 'h;X#0A(Gbɿr', '', 0, '?'),
('>AB7Sz!e', 'wp-admin/includes/export.php', '/home/binawebp/omsrislb.my/wp-admin/includes/export.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_/}ǀ]I1N', 'bSՍ3e P6\Z\r*YI', '', 0, '?'),
('Ӂg"t`C', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parent.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parent.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6xL;YAL', 'Ď\r\rT^UhPdbhg/VU', '', 0, '?'),
('%l7k', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library-on-off.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library-on-off.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':«.>G', 'Mz -''$N;3SiAv', '', 0, '?'),
('2P&zZ.ۍ', 'wp-includes/blocks/term-description.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aT', 'ꊊNy%"\\eJֶ\\2f#', '', 0, '?'),
('LL=#2', 'wp-content/plugins/elementor/core/debug/inspector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/inspector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zތv''', ',ξ}L1+!}lV"(\\j', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('Q?늷Gq', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/AbstractVault.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/AbstractVault.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{^R>H;7?', 'e-3K^2!}ӧ8B.ǱP\r', '', 0, '?'),
('0[0SOvٛ', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag-trait.php', 0, 'dMV\0SniP', 'dMV\0SniP', '3w\re11s`ZpQ*.7HH6"', '', 0, '?'),
('Ĩ=8@_rr+\r', 'wp-content/plugins/elementor/modules/system-info/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',Q-HGrS ?', '%ὁ.W,@NmT&>:ޝ', '', 0, '?'),
('|0O+]lU', 'wp-includes/js/dist/a11y.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/a11y.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k5]!nO82', 'pID\\	\ngdwT҆\0', '', 0, '?'),
('.;x%:', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7Y,}', 'Jz%vz:O2YFcA>2~5uˉ', '', 0, '?'),
('%H	U`', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php', 0, 'm	銏AT,q', 'm	銏AT,q', '>Uyn#iی\nxd\rh''?', '', 0, '?'),
('Oy''!\0b', 'wp-content/plugins/elementor/assets/js/container-converter.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container-converter.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʤonva', '#8*+]ɖI*#Mc̄', '', 0, '?'),
('#\na*җZ', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark-btl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark-btl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z|֏px', 'zLB3di璉{EbeRl&H!', '', 0, '?'),
('1eUMV^', 'wp-admin/includes/misc.php', '/home/binawebp/omsrislb.my/wp-admin/includes/misc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?R\Z甖', 'A;7RTRe+:%\rz|;\r', '', 0, '?'),
('F_qCF!o4p', 'wp-content/plugins/wordfence/views/scanner/scan-starter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-starter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1xh3\\', 'U~AVkr%Rx$pZ1"U', '', 0, '?'),
('J]9dY`ß', 'wp-content/plugins/code-snippets/dist/editor-themes/duotone-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/duotone-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XʘeJhJ訋', '/U3hwA\0VwM_f3&', '', 0, '?'),
('USAJclw', 'wp-content/plugins/elementor/includes/template-library/classes/class-import-images.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/classes/class-import-images.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SRj2g#>l', '\ngy&c\\)dLmadu錋', '', 0, '?'),
('VQ/l@bJ', 'wp-content/plugins/wordfence/css/license/premium-global.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/premium-global.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@3|"٦^', '<~pS2Tll|R2Cwa*n', '', 0, '?'),
('^zaw-YV?]w4', 'wp-includes/js/dist/script-modules/block-library/search/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/search/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0<IT]\0Z', '&sva&m\Z~<ݕ~UV', '', 0, '?'),
('asϔw*F', 'wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oQf,[:%Q`T', 'OӉ^׷\\CXA?=,Ɲ/cg', '', 0, '?'),
('dܭMirU.', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-media.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '({E19Zu8', '5\\%ɜ"?!Q.H)\\\0', '', 0, '?'),
('*vQlj7', 'wp-content/plugins/elementor/modules/apps/admin-pointer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/admin-pointer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$->⯠f', 'mB	y_V{CiJU0>;bnQ"Vx]~', '', 0, '?'),
('FճD~֫Cʽ', 'wp-includes/css/dist/edit-post/classic.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W"!hQ([oZ', 'pNZ*4HPPI^MnZCV', '', 0, '?'),
('\0>#z(', 'wp-includes/bookmark.php', '/home/binawebp/omsrislb.my/wp-includes/bookmark.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']2s!fv', '!ˈ/><tP@mlqh', '', 0, '?'),
('D\\HdZZeh', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-core-render.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-core-render.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X4rX4', '\0oFf;ĸD=$E*', '', 0, '?'),
('JNˠQ', 'wp-content/plugins/elementor/modules/atomic-widgets/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9~4', 'l<1X<+&^ǋ\ZVyJ[=', '', 0, '?'),
('tMnJ-^#݄', 'wp-content/plugins/code-snippets/js/editor.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/editor.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rgҘUJpHKl', '57EJ9>VwYquUY#n''/', '', 0, '?'),
('+B{;', 'wp-content/plugins/elementor/modules/checklist/steps/add-logo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/add-logo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ොyFɞqm1', '(R5ŊIny[eS n', '', 0, '?'),
('}', 'wp-admin/media-upload.php', '/home/binawebp/omsrislb.my/wp-admin/media-upload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F5<I''PECpx', 'jsiڙ#\r`~l@h:\\', '', 0, '?'),
('c\\a+&G', 'wp-includes/SimplePie/library/SimplePie/Category.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Category.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '܌4یAڠ', 'vEt8G0%GPր?>f9[p', '', 0, '?'),
('L xEb', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-03.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-03.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֚_cɚ', '/ڑYwS&05נ', '', 0, '?'),
('WʰnQk~', 'wp-content/plugins/elementor-pro/license/notices/trial-expired-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/notices/trial-expired-notice.php', 0, 'Cϖ	', 'Cϖ	', 'z5^zPйZW\r9uF+DQ?`', '', 0, '?'),
('@''yq', 'wp-includes/blocks/query-pagination/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '呔`J[,', '75oj@qԵucd7ieÅP\r)', '', 0, '?'),
('_zJ*_hWu', 'wp-content/plugins/elementor/assets/css/templates/widget-progress-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-progress-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\ȿtG#=^OO\n', 'IJ*UA/22ܠ2F䉄.XF\0', '', 0, '?'),
('kV72+', 'wp-includes/blocks/heading/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FUU<<_FK', 'pEkKO$ʗ(}{*1\Z', '', 0, '?'),
('䨣FwX', 'wp-includes/Requests/src/Exception/Http/Status431.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status431.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?M--k\\Ѥ', 'J]e&Ɇ%49 S3JCػ\04쳫 ', '', 0, '?'),
('W+N#u]\0!', 'wp-content/plugins/wp-optimize/templates/settings/system-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/system-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!h3^ك*^i', 'Voi<u&PįX.NZ:g', '', 0, '?'),
(':Jrh^u', 'wp-content/plugins/elementor/assets/images/announcement.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/announcement.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*xG#Nu', 'b$`%F:>9', '', 0, '?'),
('ْ&MKX{?', 'wp-content/plugins/wp-optimize/images/notices/summer.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/summer.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TBE\r', 'd,=>alxƩU6y', '', 0, '?'),
('Ṳx;\\q3', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_score.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_score.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$`b)n$Pz', 'Eҍ{dW[xw~V', '', 0, '?'),
('ק\ZSܹc.-', 'wp-includes/Text/Exception.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-ɭQ>\Zw=', ']n_ԓJ]R㻁\nk0+usGM', '', 0, '?'),
('JH6KFp~', 'wp-includes/blocks/social-link/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&VuYf\rXCuz', '<^;ܕ"M,gYJEYv!S"', '', 0, '?'),
('Pw0h9', 'wp-includes/js/tinymce/plugins/fullscreen/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/fullscreen/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y2İ\rm}%', '3].BCBeʢS( ?Z{', '', 0, '?'),
('N|X]<X#/|', 'wp-content/plugins/elementor-pro/modules/forms/fields/time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/time.php', 0, '%A&$', '%A&$', 'ƈ%2G)("oz0 p', '', 0, '?'),
('# +_HLk', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Attribute/YieldReady.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Attribute/YieldReady.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-UOƤ􃁧s_y', 'ax\ndOi`űtyCŇ8A', '', 0, '?'),
('%n4:ac$', 'wp-content/plugins/elementor/assets/js/ai-admin.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-admin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0?WШlሺw', 's+:p?q\0 )n,g☊^~m', '', 0, '?'),
('''5nGCkT4`', 'wp-content/plugins/wp-optimize/templates/minify/advanced-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/advanced-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LcZMrk', '94YC`mXW[>P:|L', '', 0, '?'),
('._	^4U', 'wp-content/plugins/wp-optimize/images/features/number_of_weeks.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/number_of_weeks.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T-(_', '#hoiC&9\\ͤ\Z', '', 0, '?'),
('.ہY)eFn', 'wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!<^\Z*J{', 'ij?ݮGYM sK=y', '', 0, '?'),
('0p!s&7W߻U', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r6I"E+H\0`', 'B\0ʟۮx''5omVZ1', '', 0, '?'),
('1C6l?W', 'wp-content/plugins/elementor/data/v2/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DdH:y~q', '\09⼟]9JZ)P[Ns', '', 0, '?'),
('1L(	?'',օM#', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/categories.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/categories.php', 0, 'Z]J7DY6G$_', 'Z]J7DY6G$_', 'dqAоxBm)9ٯq''j?ec+', '', 0, '?'),
('956pT', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-gallery.php', 0, '%_y~}uL', '%_y~}uL', '\\5rᔬ|򓧒/xp	+', '', 0, '?'),
(';j|:1/', 'wp-admin/site-health-info.php', '/home/binawebp/omsrislb.my/wp-admin/site-health-info.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sXPE4,p', 'VۈeP;\\io%<ġC\Z', '', 0, '?'),
('>4;˺r', 'wp-content/plugins/wp-optimize/vendor/bin/cssmin', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/cssmin', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oPt[W>', 'Zlt0V-)N )7W]V"ա', '', 0, '?'),
('B yw+|t', 'wp-includes/class-wp-http-requests-response.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-requests-response.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f;h%+', '߈ÏS#4{2_ʰbHTl', '', 0, '?'),
('F~LL`\0iz', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Native.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Native.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5s/@452', '(8($[j峜H,sQ_S', '', 0, '?'),
('J&_#3Sq', 'wp-admin/images/spinner-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/spinner-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '12^#8', '#˒=$c6	B46', '', 0, '?'),
('V+@0pɏhi', 'wp-includes/rest-api/class-wp-rest-response.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/class-wp-rest-response.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q_?e:@u', 'E\ZNP B[˙5\\-̱', '', 0, '?'),
('V]TL}mՏE[', 'wp-content/cache/wpo-cache/omsrislb.my/testimonials/mobile.index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/testimonials/mobile.index.html', 0, '[U1O{', '[U1O{', 'JٱΟ	[K2]', '', 0, '?'),
('WɘRA\Z', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=:fX-D', '`IeM	?(k7/\rZpOTt', '', 0, '?'),
('Z)_w''$X', 'wp-includes/class-wp-block-parser.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԊW''o/4UXg', 'hu>p=[YME$av', '', 0, '?'),
('^Sx_?uGD', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hd9<Cˤbl', 'K.Boࣸvb%S~1K', '', 0, '?'),
('b~5aI@)*', 'wp-includes/class-wp-site.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-site.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g&DÞͦ', '\n9TJ~af''@>;D1@', '', 0, '?'),
('fG<@៝N-', 'wp-admin/includes/class-wp-privacy-requests-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-requests-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۘ\\\rl', ']ٍM1L Xd0=\n', '', 0, '?'),
('x9p2wB', 'wp-includes/ms-network.php', '/home/binawebp/omsrislb.my/wp-includes/ms-network.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5~,|:䑺`]', '(Vβؿ=ղ\Z_y', '', 0, '?'),
(';uD6ub', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-breaking-bad.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-breaking-bad.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cة,b89', 'Xn$ŗ>n#m_JzN.B.Pa7(', '', 0, '?'),
('콴)IS', 'wp-includes/Requests/src/Exception/Http/Status418.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status418.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pwu5`4', '2en2Τ}a&\0&Ҡ#[%', '', 0, '?'),
('ֺ?9̓?	', 'wp-content/plugins/wp-optimize/optimizations/commentmeta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/commentmeta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E*8\rm:P>', '-8yf}ݱ)\0/.5b^E', '', 0, '?'),
('\\:ڈ)g,\\', 'wp-includes/images/smilies/icon_twisted.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_twisted.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lv[?+*8;', 'VHhK\np;.&/E', '', 0, '?'),
('ZViAMu', 'wp-includes/blocks/term-name/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6qVjgg^;*', '3/2vδh\n+9kF', '', 0, '?'),
('6Sk<4jyWh', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$vx.6Iz', 'gAh<osvT5;F1G', '', 0, '?'),
('!ES7x', 'wp-content/wflogs/rules.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/rules.php', 0, 'cZDX''5Y+', 'cZDX''5Y+', '!kD)w6^v6\rspν%n\\+ϴJ.', '', 0, '?'),
('3vU\Z3P^O ', 'wp-admin/css/widgets-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/widgets-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i1f@wQ^', '	FTG,{/yj{fȪ5U%}', '', 0, '?'),
('4<ϾDVi-', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/indicator-bullet.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/indicator-bullet.js', 0, 'ly&zl5', 'ly&zl5', 'K!>:YBź{L''L. ', '', 0, '?'),
('L Ufu<', 'wp-admin/images/icons32-vs.png', '/home/binawebp/omsrislb.my/wp-admin/images/icons32-vs.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',P*{>vUf', '?UzP\\@`8g;\rE', '', 0, '?'),
('86?b%`', 'wp-content/plugins/elementor/assets/css/widget-progress.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-progress.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wqN/]xN', '#hf5G>}2rSKdȗ|\\37@+u', '', 0, '?'),
('e3Vz''\0l', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NullCoalesceExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NullCoalesceExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';u\\oƴ6Lg(', '=KO\\X0nOí_F+Bg\n[', '', 0, '?'),
('\\^@P/\nR''', 'wp-content/plugins/elementor/assets/js/admin-top-bar.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-top-bar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l嚝w', ',J緀vJ90'')60Aܓ', '', 0, '?'),
('m*;%f4x;', 'wp-content/plugins/elementor/assets/css/conditionals/dialog.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/dialog.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zq>&.|j', '!L{O\0|\rKTp!', '', 0, '?'),
('vdEI|I', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i3s&a\Zw', 'M8JgA\r`cY5~>,Ea%og', '', 0, '?'),
('ף*Gߚ͔\n', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&yq҉', 'Y#=r\0\r77ĲȆm~?_', '', 0, '?'),
('EHB[''ip', 'wp-content/plugins/wordfence/views/scanner/issue-wfAssistantPresent.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfAssistantPresent.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2H`޶{":', 'O(@"\n;0@Zfh', '', 0, '?'),
('U`RMϬ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-snippets.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-snippets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A/''08탵', 'Bob.nV&ZOWh$+t', '', 0, '?'),
('#;NEm+vyJU', 'wp-includes/SimplePie/library/SimplePie/Content/Type/Sniffer.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Content/Type/Sniffer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zWn+', '=0sF8b9qHbm2S', '', 0, '?'),
('dpR"ԧ', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/rate-now-thumb.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/rate-now-thumb.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yj*BANg', ' AS%!Q̛ *ro&', '', 0, '?'),
('\ZneQiȱ\Z80', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q)1\Z/c', 'v݄"^v?yI	zjCR1', '', 0, '?'),
('ZQ+xr0', 'wp-includes/blocks/media-text/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' x&"sG]', '7n,iظB/GJO߿(', '', 0, '?'),
('@.m<\\?_h', 'wp-content/plugins/elementor/includes/controls/groups/text-shadow.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/text-shadow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':A1uWΉ', 'q\nz\\Ֆ>uՈI%h`bTS', '', 0, '?'),
('rY/v\rY', 'wp-content/plugins/elementor/assets/js/toggle.375da8e2f6fed12731c2.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/toggle.375da8e2f6fed12731c2.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kOw.9frP&', '\ZHƳ:l,KazfiDBQN7', '', 0, '?'),
(' Vޓ2~\n', 'wp-content/plugins/ooohboi-steroids-for-elementor/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>+q"YeW|', 'Ƨm9yD;nw;erd0\ri Kul&', '', 0, '?'),
('" 6A7^H', 'wp-includes/blocks/cover/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cW)z\nC/', '$Io@Bt6w׀x8+', '', 0, '?'),
('*=z51OJO', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidAnnotation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidAnnotation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-OMW^\\}LO', '@''Je`0>U`', '', 0, '?'),
('+Y472ue', 'wp-content/plugins/elementor/core/utils/static-collection.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/static-collection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~a Gt', '6C^Ο)s܉ߖ?', '', 0, '?'),
('-u/p:8c|~', 'wp-content/plugins/elementor/core/isolation/wordpress-adapter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/wordpress-adapter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`XO;', 'j,"	X>k"{Z4&;j,.Ue', '', 0, '?'),
('5+l@-\n]', 'wp-includes/js/dist/script-modules/interactivity-router/index.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity-router/index.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[\nQS#0չ', '%K-p+Aѭ;IXv=Om[', '', 0, '?'),
(':=%M۵', 'wp-includes/template.php', '/home/binawebp/omsrislb.my/wp-includes/template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\0eW,:', 'XE(RY\Z%l߂7r\rw1', '', 0, '?'),
('F#8;F', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-smarty.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-smarty.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}$gedf', '_Ү%:qml]_-EɍpY', '', 0, '?'),
('G $]\rk''C', 'wp-content/plugins/elementor/assets/lib/animations/styles/pulse.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/pulse.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%0AP\Z6|}', '7&G(7|O''pDf?)g', '', 0, '?'),
('I{?r]7', 'wp-admin/images/resize-rtl.gif', '/home/binawebp/omsrislb.my/wp-admin/images/resize-rtl.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nC%YfvF.z', '@St-]z''+k2{j,QN~)	>', '', 0, '?'),
('S''Lӿ', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Signed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Signed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4(p洨<ٷ', 'h{)]zY|AL}J}-E#', '', 0, '?'),
('` ƢXv{;', 'wp-includes/js/dist/edit-post.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-post.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u\n*{r|', 'Pss=4Q\\ mǪS}-(u', '', 0, '?'),
('rf*kmM7[E)}', 'wp-includes/blocks/math/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CJt\r{Oh>', 'ZTГtQ4><mi<', '', 0, '?'),
('|9Rdᷨ3ȍ', 'wp-content/plugins/wordfence/css/wf-colorbox.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-colorbox.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PX)p!N8j', 'ot0\rP2NiKu', '', 0, '?'),
('~G꒦Wv_y', 'wp-content/plugins/elementor/modules/gutenberg/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/gutenberg/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ȳOd\0x', '7)P@{q`)|HL|ˊ\Z#', '', 0, '?'),
('~Z-"DŶ', 'wp-content/plugins/code-snippets/CHANGELOG.md', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/CHANGELOG.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '٤P#7G', 'L,''͸FaD94\0Νe"i', '', 0, '?'),
('~c*c{i', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9 	TD$FgiEn', 'S]S(nZ\0ʲ', '', 0, '?'),
('eMy*Ҟ', 'wp-includes/js/backbone.js', '/home/binawebp/omsrislb.my/wp-includes/js/backbone.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q_)', 'ꀠ=񑞒=ܫāEߑq', '', 0, '?'),
('5=&lP', 'wp-content/plugins/code-snippets/js/services/manage/cloud.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/cloud.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Fb,vM', '`>#h;Qtbiݑz1V', '', 0, '?'),
('@k&XItǜ', 'wp-includes/class-wp-block-styles-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-styles-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	:9^Cγ&-^n', '_*d6d?9zMڽU~\\ۼzq', '', 0, '?'),
('B+y\0xa$', 'wp-includes/blocks/table/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*''Vm', 'BO&''o1IYy%D', '', 0, '?'),
('B9\r', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`*(ƀ;', '~Q\n}FNѲ|~ر2', '', 0, '?'),
('pAz1w', 'wp-includes/blocks/navigation/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*c*B\n.6~', 'jdJ%\Z<<gj', '', 0, '?'),
('[sh.''t', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/SelfResolvingDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/SelfResolvingDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KrOtG\r0D', '?x3֌m3C1#ߤvf%', '', 0, '?'),
('KkfgT#V', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'erx|2c', '.C@2Pc֜^n\n''-v[~', '', 0, '?'),
('n\n\0܁-i', 'wp-content/plugins/wordfence/images/blocking.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/blocking.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''-Hf<1', 'A5Y9\0OtqЖL\\}a&', '', 0, '?'),
('N%c)҉c', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1sN:;I', 'g:jpBDbRorf?U', '', 0, '?'),
('g[z\0ή', 'wp-content/plugins/wordfence/modules/login-security/views/page/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݤ)e&vW4', ']Z*W!OeHv8al|\r30', '', 0, '?'),
(':ƍSU3T', 'wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I[Mvm$B8', '0hlZW43|<H\n"\0T%)&V㠉', '', 0, '?'),
('''6,-Ao[', 'wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-base.php', 0, '''S<CIk!0+', '''S<CIk!0+', '",z"i.k:(H'']=', '', 0, '?'),
('CRwBSE', 'wp-content/plugins/elementor/assets/js/editor-environment-v2.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-environment-v2.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '⨺#$!a{ꎀ', '0mWVxG=m9[/z', '', 0, '?'),
('\\-\\ftKDs', 'wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']NVK.~)_', '"d>[jiv֍,0	\r1', '', 0, '?'),
('&cNX.xqZ', 'wp-content/plugins/elementor/data/base/processor/before.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/processor/before.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BG-@y9', '"sq5\Z4x!fcfjQraQf', '', 0, '?'),
('rFY)>}0', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-search-list-table.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-search-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']<Wz', '{40vxԈ\\Vc{cO;#', '', 0, '?'),
('z]62L', 'wp-content/plugins/elementor-pro/modules/woocommerce/classes/current-query-renderer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/classes/current-query-renderer.php', 0, '?I\r#ş~r״', '?I\r#ş~r״', '-4\nmVmҭzJ', '', 0, '?'),
('RН&n', 'wp-content/plugins/elementskit-lite/modules/controls/assets/css/imagechoose.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/css/imagechoose.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MSnZH', ';>fʝB[ 8V8H=bn"', '', 0, '?'),
('(L	լA#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ini.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ini.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0*5GYUӿr', 'v#[y<M\\!:-p', '', 0, '?'),
('	cQH\ZŸ&y', 'wp-content/plugins/elementor-pro/assets/js/table-of-contents.a6bbe930b65f39ccb74b.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/table-of-contents.a6bbe930b65f39ccb74b.bundle.js', 0, '%nRyG+3VN', '%nRyG+3VN', '&^BjhiњBQʅ', '', 0, '?'),
('\nGikOA', 'wp-content/plugins/elementor/modules/editor-events/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/editor-events/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A}$A;!~', 't9a񧬑\n_U=.jnx(-QrՆؚ', '', 0, '?'),
('  g%!', 'wp-includes/blocks/site-logo.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̣+:%39.', 'hYxG.pOە.fin~u9', '', 0, '?'),
('"nޑkL<8', 'wp-content/plugins/elementor/assets/js/adbbe9b5d6b520e98e4c.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/adbbe9b5d6b520e98e4c.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*AJj2P', 'CQ4J&MȮo!u1s_I(', '', 0, '?'),
('.xQ}t\np', 'wp-includes/rest-api/endpoints/class-wp-rest-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6np:', '''Rho󏆵ܿe4f4Yl<', '', 0, '?'),
('2P@敘)', 'wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?4&9ۧg', 'H-rWi{WqQ$_', '', 0, '?'),
('7*"{\nK<', 'wp-admin/includes/ms-deprecated.php', '/home/binawebp/omsrislb.my/wp-admin/includes/ms-deprecated.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f}?{GjeGi', 'egv\Zx!74F\nD', '', 0, '?'),
('?8ZN', 'wp-includes/ID3/module.tag.lyrics3.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.lyrics3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*\\''Htbn', 'N 2''"韗''m5YFhP0g', '', 0, '?'),
('G5EUƅ9z;f', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/UnsignedSerializableClosure.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/UnsignedSerializableClosure.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Rg>C$P[@~', '\Zvh+m%"Ѳ_ԕ>,8', '', 0, '?'),
('LM\nJ1(l', 'wp-content/plugins/elementor-pro/plugin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/plugin.php', 0, '0/~dD)Jk', '0/~dD)Jk', '\0{мK" r;wCv', '', 0, '?'),
('N\0m\\*<!rY>', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/shop-page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/shop-page.php', 0, '\\176nĞ', '\\176nĞ', ';stZ}JՐ_k ʟ.LA''', '', 0, '?'),
('T<I׼KFoIB', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fortran.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fortran.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q/Ԧ<pL', 'G3@\0 %wW#ʳwq', '', 0, '?'),
('X*VL	_', 'wp-includes/css/dist/block-library/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xeh75:Q', ';Z?OLLVP3inH̆a', '', 0, '?'),
('_ 6TNG?', 'wp-includes/blocks/search/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zaDt^[*', '%\0m}Ty.mW؞\\r', '', 0, '?'),
('`o.QS`', 'wp-includes/blocks/image/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k~B0', 'Wߤ%mdD''.][\Zԅc<', '', 0, '?'),
('d3(', 'wp-includes/sodium_compat/src/Core/AES/KeySchedule.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES/KeySchedule.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N,ßVy\r', ' aIY6csR+dиY', '', 0, '?'),
('hR\ZuB', 'wp-content/themes/twentytwentythree/styles/pilgrimage.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/pilgrimage.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jz7Λn6{f[l&', '\0I%.!4CS[%O{?Q,', '', 0, '?'),
('jI<꟟iU', 'wp-includes/category-template.php', '/home/binawebp/omsrislb.my/wp-includes/category-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TrXS%', '[|]c\n!g=8oCq', '', 0, '?'),
('~Cg \ZX', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/edifact.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/edifact.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xj)θD', '^򁄆!PG,LWtA', '', 0, '?'),
('&}?\Zs`', 'wp-includes/js/wp-sanitize.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-sanitize.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n|\Z{(D', 'abBe$cIE,', '', 0, '?'),
('QWsA7d\n', 'wp-admin/css/site-icon-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-icon-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bK\\''z', 'vT7UJ\0#B>`\\m3', '', 0, '?'),
('nJ-25W', 'wp-includes/blocks/rss/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ḊCk51"', ':A;&Ӻ[29A)<a4', '', 0, '?'),
('e\\1tƋ<	', 'wp-content/plugins/wordfence/lib/wfUpdateCheck.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfUpdateCheck.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jV+KI~0\n', '7&.ηDӛ]e', '', 0, '?'),
('GGa"', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*M]YnM$^ù"', 'ϐNoKtQV\r3-y-', '', 0, '?'),
('\\;3=BR#', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x`V^)l;O', 'ۑ7=qےtn0n`gpty#	', '', 0, '?'),
('Z|075o', 'wp-includes/sodium_compat/src/Core32/Int32.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Int32.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'siQ$gFr', 'M=cS~[\r<)ǖ3O{xھ\0w', '', 0, '?'),
('B]nȄ87g', 'wp-includes/images/smilies/icon_rolleyes.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_rolleyes.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yuu 	2', '\\	ueT\rvj!ҳ7R', '', 0, '?'),
('Q3@*', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&+Nok', '.<O	x^Ercf4r4Cu*p@7ׁ', '', 0, '?'),
('cK=*GI7!', 'wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KAzy>==', '\\|	,zx0x0?ߖlcTJ', '', 0, '?'),
('&+Fw@/tv', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/DeprecationCollector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/DeprecationCollector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Bl=oe=$3', '/[($w${btvVo}q', '', 0, '?'),
('fR/1< PC', 'wp-includes/js/dist/shortcode.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/shortcode.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wr4&Pi(v', '|qxG\rJҽD@} wR''xpY', '', 0, '?'),
('ulH', 'wp-content/plugins/elementor-pro/core/preview/preview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/preview/preview.php', 0, '.Ư(FrWr', '.Ư(FrWr', '?PC9XF|*|+ʗy@j2', '', 0, '?'),
('I4T\Z^W', 'wp-content/plugins/elementor/assets/css/modules/apps/admin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/apps/admin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';+\\JKe.', 'E1NjN** xX=@So', '', 0, '?'),
('VZ8=vc', 'wp-includes/blocks/freeform/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X]? 5', ' gZj#<ٶ7{e^\0F_0', '', 0, '?'),
('ڸPֺb', 'wp-includes/blocks/social-link/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ocƩrJN', 'h%Qߓ_@keeOky', '', 0, '?'),
('\r	\0cZ8۩r', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('jt\n;''ϗ/jFU', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`4sªܤN#', '*@Qn=(y', '', 0, '?'),
(',zMj', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}B1y\rP', '`zD2bFrV8+P+#', '', 0, '?'),
('Kȁ;$z', 'wp-includes/js/dist/notices.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/notices.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lc57P''m', 'ܔNERgLqmzzTrh0S&', '', 0, '?'),
('cAk6I', 'wp-content/plugins/code-snippets/dist/mce.js', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/mce.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ө26!&ϙ?', '$ilnOui:KlF/ҏ1', '', 0, '?'),
(')ך', 'wp-content/plugins/elementor/includes/container/config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/container/config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߇hc?Ln޻+', '\\SXlatr=#', '', 0, '?'),
('.8y4@\nB(|', 'wp-content/plugins/elementor/includes/base/sub-controls-stack.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/sub-controls-stack.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3_+', 'nVN8^^!!xEWN*4', '', 0, '?'),
('0rd\Z^', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o֦5\\evg', '2*e>vqsR!BKJ 6', '', 0, '?'),
('=@,Zd', 'wp-content/plugins/elementor/assets/lib/dialog/dialog.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/dialog/dialog.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z*!J%==m', '6ґY\rf;TgS)M5k#td\0', '', 0, '?'),
('?{!r*BH', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i$<Hs8狀m', 'ᤫE^Τ!,=^0ƤٹK/5LQB', '', 0, '?'),
('M/6GQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/json.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/json.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0$4 n;\rEȥ', '	|T{yMЧ<X;Ajfލ|6P', '', 0, '?'),
('XqNM\r\\ZZ>', 'wp-includes/images/media/interactive.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/interactive.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E3aH[$^', 'KM4g@MwU޺', '', 0, '?'),
('_?U9W', 'wp-content/plugins/elementor/run-on-linux.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/run-on-linux.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '896X\\1\Z', '7aF6$8u"N*R@3', '', 0, '?'),
('kIKV[	5', 'wp-includes/sodium_compat/namespaced/Core/Ed25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Ed25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v>#!n(', 'DFUu|v/]2x_ERL2QlP93s	15', '', 0, '?'),
('qO9cX_:L', 'wp-content/plugins/elementor/assets/js/nested-tabs.1fde581754604147f6d7.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.1fde581754604147f6d7.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y Nx2a*?Bڪj', 'S1hІ*WBhXz&@(T', '', 0, '?'),
('rQ;JRM', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-header.php', 0, 'NYOF?`', 'NYOF?`', '+^<c	UE؝+3', '', 0, '?'),
('w\ZdϢ\ruD"', 'wp-includes/IXR/class-IXR-request.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-request.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%p.<Sǡz1Ϣ', 'Q*k_}2>Tq<_S:Qh', '', 0, '?'),
('vr@{c{', 'wp-includes/blocks/social-link/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ocƩrJN', 'h%Qߓ_@keeOky', '', 0, '?'),
('D\rZi&', 'wp-content/plugins/elementor/assets/js/admin.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('4fGAZ%', 'wp-includes/class-wp-styles.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-styles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JXYULK[8+', 'ӟ33x},V܉@t', '', 0, '?'),
('q FT', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>>bz69YO', 'fQ=ԉD<kY*U\nMR8"x', '', 0, '?'),
('/\Z)y\r', 'wp-includes/blocks/html/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/html/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd͗C4Q', '+@I BWkӊ#}Bl&', '', 0, '?'),
('T@!um~E', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RoGn,OpI', '@s1]H7lB&bfM&2', '', 0, '?'),
('ď.\nf[3a0[X', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/DefinitionHelper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/DefinitionHelper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~6T80j', '4^Ve!JI]jyӅ$', '', 0, '?'),
('$xM1>_8P\0', 'wp-includes/js/swfupload/swfupload.js', '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/swfupload.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('pG-G', 'wp-content/plugins/elementor/includes/controls/groups/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|y[zNu\0t', 'D6^͵}imMt3', '', 0, '?'),
('ʃ8c݁<Hh', 'wp-content/plugins/code-snippets/dist/editor-themes/xq-light.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/xq-light.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xT~vd*', 'e)PDǤHJDe(xWR\r\0J?', '', 0, '?'),
('6vO5~W', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-radius-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-radius-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǥEim\\_''S', '.jK%a3rD"tlD', '', 0, '?'),
('35no~.', 'wp-includes/blocks/archives/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Kݑ։', '9j鹠٠4Sqò_\\`', '', 0, '?'),
('߫P%D', 'wp-includes/class-wp-dependencies.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-dependencies.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ISAI<	', '7kRZw}dDPƯY}Ö{]', '', 0, '?'),
('Wy''', 'wp-content/plugins/wordfence/modules/login-security/js/login.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/login.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nu#IAّɷ', 'O7`c2P>4ρ\ZgO_', '', 0, '?'),
('Qs|cL؜VH)', 'wp-admin/includes/class-walker-nav-menu-checklist.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-walker-nav-menu-checklist.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O3<XLC', 'Fj!ioXXxu\Zs]', '', 0, '?'),
(',EhjZ,4''7', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OOw*?', '\ZI|V#j6n6(ե\n', '', 0, '?'),
('/8&Dg|#', 'wp-includes/js/dist/viewport.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/viewport.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U:yW(H݉''', '/:̑sr81\nS\n@f>7@', '', 0, '?'),
('9¥4H)T', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&=gk', '̂TaUKDyέ>6MI9IY', '', 0, '?'),
('7]s', 'wp-content/plugins/elementor/includes/controls/color.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/color.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DE7>i\0σ6!', '&xMG&8V+R.qW&H', '', 0, '?'),
('!&\na;', 'wp-content/plugins/elementor/core/debug/classes/htaccess.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/htaccess.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KpjJ@Ś''o ', 'C"z̺Mm\n=&=&f&y/', '', 0, '?'),
('<ou!ѸP ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5؀\0 Eq\Zv', '8߃gԄ#:DEkbdW0', '', 0, '?'),
('<͐noz#?:', 'wp-includes/blocks/widget-group.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/widget-group.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@xߊca+', 'bĴl3?:<c6d:,', '', 0, '?'),
('A"Y''wUΣ', 'wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5s|I}947', '%c27q7\Z4|*5y\nT', '', 0, '?'),
('HiҸB@D', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/FactoryResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/FactoryResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KNXpR', '삛WgKñpv㧠/dUV', '', 0, '?'),
('NM\nzނڳ''ě', 'wp-content/plugins/elementor/modules/checklist/steps/setup-header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/setup-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[\0NZ', 'zk$(HpnÒ]G[=.ֺ', '', 0, '?'),
('Oxرc5(', 'wp-includes/css/dist/block-library/theme.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b,66IV', 'iK[هYQvaljuq~x$', '', 0, '?'),
('Uzcp', 'wp-includes/blocks/separator/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ٞ\no''', 'j7W\06$e~RIp%zP', '', 0, '?'),
('[*H߹Ƃ', 'wp-includes/Requests/src/Cookie.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Cookie.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3EO+e:ڝ', '1	I,yrh=+_smW7NK', '', 0, '?'),
('\\''u}fP߃T', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/query.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/query.php', 0, '7?K腁', '7?K腁', '#<W:;"e4Z:n7HH57Y', '', 0, '?'),
('h-''!Am-ұ', 'wp-content/plugins/elementor/assets/lib/animations/styles/tada.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/tada.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zs+WGd-ӣ', 'w|Re]ſ<R\rjĤWo7', '', 0, '?'),
('l\rXbA>', 'wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xϜ5L', 'yJ	Sq2>|84 G2M5K''', '', 0, '?'),
('n97I.Oҝ޿', 'wp-includes/js/heartbeat.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/heartbeat.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0Isp)fն', 'c<éauvH5tuX6w"V=B', '', 0, '?'),
('o9sd4-', 'wp-includes/blocks/loginout/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S	:ז_bM', 'yT5m ZV#!:Z', '', 0, '?'),
('r#@U%@-x', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_noise.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_noise.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ŧx/ol', 'fz#64G\\m8}3m=q', '', 0, '?'),
('sW5#<l9ȼ:$', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(銻ϦS_b', '*YHjp\Z"Tr|ih?>}', '', 0, '?'),
('|BlIHҼOSƱ', 'wp-includes/js/mediaelement/mediaelement-migrate.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-migrate.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<C_hz3<7', ',b#0!aOVc,ؕSԏIл%p)', '', 0, '?'),
('٬K\ZP', 'wp-content/plugins/elementor-pro/core/utils/registrar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/utils/registrar.php', 0, 'xAL=GWj', 'xAL=GWj', ',KN43٪.wGٔϿ(F', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('ب&G)k{', 'wp-includes/sodium_compat/namespaced/Core/HChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hP', 'Kd%.RAOFjo-', '', 0, '?'),
('fX^[MSL', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/page_load.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/page_load.svg', 0, '0''{Qi ݉ѧ;', '0''{Qi ݉ѧ;', 'C<56dҌJw6@=:\Z', '', 0, '?'),
('R\\p', 'wp-includes/blocks/comment-template/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`9Qr9y5', 'lfz)=Z+L0	', '', 0, '?'),
('1Kg,]c', 'wp-content/plugins/elementor/assets/js/admin-notifications.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-notifications.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '</P\0k7', '*ťXnN{r05u:R', '', 0, '?'),
('z<M{} 4\n', 'wp-content/plugins/elementor/vendor_prefixed/twig/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tH\ZMt<', ':;9M?|.̀*=a', '', 0, '?'),
('[6dcHa ', 'wp-includes/blocks/latest-posts/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k"@eʮf!', 'eFiD}[\nLLM=h', '', 0, '?'),
('\\֯B!aV', 'wp-includes/blocks/comment-content/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?݅0', '?|r.EIZ%KW௶^', '', 0, '?'),
('h+B', 'wp-includes/js/tw-sack.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tw-sack.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xh+t\r\r/A', '\\mN톬3oE\0Z)yB', '', 0, '?'),
('F"vh$Lb', 'wp-includes/js/imgareaselect/border-anim-v.gif', '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/border-anim-v.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' z!<7*', '>d:j1<!46g', '', 0, '?'),
('˩6f/6YjI\0W', 'wp-content/plugins/wordfence/modules/login-security/views/settings/options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/settings/options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fq+fw\0', '̦bF׮C~u;m}PaM2,0S,', '', 0, '?'),
('c<[', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7קE0IqX', 'mO⩱XX\0E,Z*y*z7;', '', 0, '?'),
('MAH\0[d_!', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5,}vĨ3G)', 'Er4@\0ԡ$z3$l\Z`iexl', '', 0, '?'),
('yc0Og)ρMf', 'wp-admin/network/site-settings.php', '/home/binawebp/omsrislb.my/wp-admin/network/site-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w.S[%\Z', 'X+#k2&[gF%v"', '', 0, '?'),
('U]R)Ym', 'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nj09', '\ZҨ2#s:Р\n		vØ+l', '', 0, '?'),
('(;U<_ZsH΋h', 'wp-content/plugins/elementor/assets/js/nested-elements.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-elements.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oN\0\0rO', ';''50ߠV-P', '', 0, '?'),
('s]dU', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.asset.php', 0, 'Q{Li~x', 'Q{Li~x', 'P4''·&Fn;/\ZF>rr9ΆP', '', 0, '?'),
('U''i5s5', 'wp-includes/js/tinymce/skins/wordpress/images/script.svg', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/script.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܟ+`1IF', 'z8$(ˍd)ȡx6	{z/', '', 0, '?'),
('\\sUwuP׍	', 'wp-content/plugins/elementor/assets/js/webpack.runtime.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/webpack.runtime.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '92#,x0RP{S', '#v5xfɼFQcS?', '', 0, '?'),
('tǱ%F', 'wp-content/plugins/wordfence/lib/wfNotification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfNotification.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0Ǎ V2(dhVD', 'SaYgj+| JM8', '', 0, '?'),
('\r7JbU?rϴ', 'wp-includes/Requests/src/Exception/Http/Status410.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status410.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iL))7ff}', 'BRX?	6E,n`\\c', '', 0, '?'),
('0PPRV#', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c)8C)z''y', 'uWkBW@ҽ;O|f3@0', '', 0, '?'),
('#@)5', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/odometer.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/odometer.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*ی|G"', 'H.:+GR$YB~23Ǻڅ', '', 0, '?'),
(',lu\\\Z)', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lisp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lisp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '´0<', 'V*Bab14ggT?K''y!S', '', 0, '?'),
('/\\zgަ`', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xߑxL5', '\\!?yB|ԉ·sTcqv', '', 0, '?'),
('1ϣI', 'wp-content/plugins/wordfence/lib/wfImportExportController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfImportExportController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+>', 'dlы۹`J#|i{', '', 0, '?'),
('<|~E.Y^!]', 'wp-admin/js/widgets/media-audio-widget.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-audio-widget.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ntw|茇^\r<K', 'd^2?PF~>ݾm', '', 0, '?'),
('?\n5H?', 'wp-admin/css/customize-controls.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xugbH.}', 'Ԁ\\	?b+YKl^W', '', 0, '?'),
('Gdd́`w', 'wp-includes/assets/script-loader-react-refresh-runtime.min.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-runtime.min.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0!j1M/>?', 'V<#Y&=z;I0Nlz', '', 0, '?'),
('Sv\Z9:Ɋa', 'wp-content/maintenance/assets/images/facebook.svg', '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/images/facebook.svg', 0, '7^H^h>y9', '7^H^h>y9', '.E{rH-Nq\n37', '', 0, '?'),
('VmPLb3.G>', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V]%ػ\Z1', 'lo.\Z?`F*tk7b}9EeC', '', 0, '?'),
('X''J\0p', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q\0N7M־', 'YUU\n@6r?`>j8', '', 0, '?'),
('XT(sǦ9', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q|遃S\0@o', '[#HHɂk)SlZzWO', '', 0, '?'),
('ZR', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wemnq!ZK.BE', '[osyTGIAت"zl Ϫ', '', 0, '?'),
('aó\0@', 'wp-content/plugins/elementor/assets/css/conditionals/dialog.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/dialog.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(|"5}pi>Ch', '|!"<?W@@_E_', '', 0, '?'),
('a3-s?a>', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4"<p5mV|', 'fh(''鲳Syc	<j+S!', '', 0, '?'),
('wB~~BP8', 'wp-includes/blocks/post-date/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3٦>L''', '?ahƖov5nh', '', 0, '?'),
('y9~M*c', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-required-setting.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-required-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M"v6\\>F', 'Gk\Zd$BNeI?PuA1', '', 0, '?'),
('yyg$esZG', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/src/LocateBinaries.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/src/LocateBinaries.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5.Hc0', 'G#F9g8(J#dd(', '', 0, '?'),
('y!7\Z&|', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S<f{iat.', '6oӫ]LJ*Տ]V+', '', 0, '?'),
(',tVu6o7', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/InvalidSignatureException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/InvalidSignatureException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|W8qݔ6[N&	', 'i*)GN6(݈p ٙ$1a', '', 0, '?'),
('juGCtO', 'wp-admin/css/colors/coffee/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y~$TGA', 'z{"A@ӟ~&^f', '', 0, '?'),
('l.H|S{', 'wp-includes/js/jquery/ui/effect-transfer.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-transfer.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@h*׻kAi', 'ne^P!yF1.}.\\''Vv', '', 0, '?'),
('DuZ!m`', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_elixir.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_elixir.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd#)GpF[^w', '\\<賖S\nXV}9a)g2$', '', 0, '?'),
('ISU`uTF', 'wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*B]{fW9', ';T1yAP	*[TQ', '', 0, '?'),
('Òl-aβZ\\', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/terraform.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/terraform.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UD$5Y', '	seJuu?Qo4kؽZ', '', 0, '?'),
('ϑũv@`:''', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ExtendsTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ExtendsTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ՉeEkXm', '^3TQHi斖Ŭd-|t', '', 0, '?'),
('S%ќ"r!', 'wp-includes/blocks/list/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.`K.R!_', 'b\\Fa]r:\rJ~;W\0P6ruC', '', 0, '?'),
('\\AGx}B', 'wp-content/plugins/elementskit-lite/widgets/button/button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/button/button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J52I+', '\\K.i\0Y8|q"ҁL1G4g', '', 0, '?'),
('7ffœX>3)w', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/firstChild.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/firstChild.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W6`/-!e', '9?SaG¾G~-@\Z_4}o', '', 0, '?'),
('藡hU_	Vw2[', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nextSibling.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nextSibling.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N5}K5k$6b', '&jB''"$8S0܃f~H7 a', '', 0, '?'),
('`7>.0d]', 'wp-content/plugins/elementor/modules/ai/preferences.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/preferences.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' E>XY5|', 'J:!a''{?)1GцCO\\', '', 0, '?'),
('\ZHm%]w۬', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G+>W&8''KgY', 'u:@ܞ(5\nTy+?=,,>', '', 0, '?'),
('G', 'wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G;l&UY', ';+TNq~J!NT\0Z7', '', 0, '?'),
('5V"MZtVe', 'wp-includes/SimplePie/library/SimplePie/Sanitize.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Sanitize.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cUQ4ui?%', 'okCPmg%ģ\0\0لl\Z', '', 0, '?'),
('Ex@zfzN', 'wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-loop-product.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-loop-product.php', 0, 'ݿ"?,', 'ݿ"?,', '?#jc5~Ԉ#nij', '', 0, '?'),
('3d݌DCR=', 'wp-content/plugins/elementor/assets/js/floating-elements-modal.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-elements-modal.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3߲=VW)', '|h=q\\yb]{&ۦ5'')IA\rJ', '', 0, '?'),
('rubEp=]', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/logged_in.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/logged_in.svg', 0, 'v?^,1~', 'v?^,1~', '({vŁ\rtF~PB@I2', '', 0, '?'),
(')5ҲrХ5v5', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-terraform.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-terraform.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x5''>ش7\\$:x', 'v:Z}T8Y`r?(X''', '', 0, '?'),
(' }n* h', 'wp-content/plugins/code-snippets/dist/editor-themes/zenburn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/zenburn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z}\\鉍L/', 'KoRGֳ8="z', '', 0, '?'),
('$b	o&8', 'wp-includes/blocks/button/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8ZHn׳-\Z/', '1[gւ8́7Mfe#~w', '', 0, '?'),
('%h2d9a', 'wp-content/plugins/elementor/assets/css/widget-alert.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-alert.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AD!`bp!ۺ*y', '$gX6sn"}#J^$AsP', '', 0, '?'),
('+ȴ\n>nb=	', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/index.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/index.js', 0, ':x{Vyo1', ':x{Vyo1', 'Rw~\Z@Ivs<@/W9', '', 0, '?'),
('4 Mt5	', 'wp-content/plugins/code-snippets/dist/editor-themes/ambiance.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ambiance.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']٩xJҩN1ƚ', 'fe7G^hZz=hSLݼ', '', 0, '?'),
('4lr$fBG', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Minifier.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Minifier.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')EQƻh3j$', '55`BU"쩂EC', '', 0, '?'),
('CV%i', 'wp-includes/block-supports/border.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/border.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aGoM\\', '\ZoJ(F"c[-9乹"W\rb\Z', '', 0, '?'),
('C_9', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pFA]PO__kK', 'JCX__''*6ݪMl''H.)', '', 0, '?'),
('Jݟ%j#Ҥ1R', 'wp-includes/blocks/site-tagline/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ndc/.', 'g\ZfȄa	xTD&?<', '', 0, '?'),
('X\0K]A=jp&0', 'wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php', 0, '$m\ZKB_\r\0X^', '$m\ZKB_\r\0X^', 'Sm \r##DsM>uLtBq', '', 0, '?'),
('b)qUCm\Z', 'wp-includes/blocks/comment-edit-link/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':S60	iEo', 'Oo*/ѷ8?/hh''*', '', 0, '?'),
('xGmP̟-O', 'wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	}>ʠh', 's\nEoK`&UOJtMA', '', 0, '?'),
('zK\n\ZPn', 'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js.LICENSE.txt', 0, 'ڄ(Z%;-b', 'ڄ(Z%;-b', 'ndӅ"JGrOI', '', 0, '?'),
('} yTZHcDJ', 'wp-admin/js/custom-background.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/custom-background.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|+TGTt\0', 'rB~<W59[;]ޓ5SD', '', 0, '?'),
('32ugfQe,׉', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/listener.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/listener.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԃ|gY]Y', 'szkJ&H9o]g.', '', 0, '?'),
('Xz9h0t', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-page-document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-page-document.php', 0, '[n?)&HW', '[n?)&HW', '"\Z0r"yy?|IkNTX', '', 0, '?'),
('E\r<4<J;I', 'wp-content/plugins/elementor/assets/images/logo-panel.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/logo-panel.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c\\py\0y', 'mMP8XawZ2O,c=:HS-0`', '', 0, '?'),
('{0l(Ʋu9,wSu', 'wp-includes/js/media-audiovideo.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-audiovideo.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gsdZڶvo', 'e/҆뎱+Rt\0;>t8yfE', '', 0, '?'),
('	2.FLMz', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abc.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abc.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-nz h', '=*ˏBN^{uĿb#.\0', '', 0, '?'),
(' ,֛U\\X1', 'wp-content/themes/twentytwentythree/styles/whisper.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/whisper.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':DѴqR', 'xVMY\ZJ m@*O'':', '', 0, '?'),
('tg![D_H', 'wp-content/plugins/elementskit-lite/libs/framework/views/layout-user-consent-for-banner.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/layout-user-consent-for-banner.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*^GDD#}', 's''*<vk:Z\Z"*]R', '', 0, '?'),
('&ƙ~', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/OptimizerNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/OptimizerNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N\\2;}\\Ӻ\Z', '5<?`@itϋ3Rj.4zq', '', 0, '?'),
(')!)6>}74', 'wp-includes/css/dist/block-library/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&m2U	ON ', 'Pn6W9̦dlqc&B+M!Lq', '', 0, '?'),
('{eu	I', 'wp-content/themes/twentytwentythree/assets/fonts/inter/LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/inter/LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',\\u`', 'x`R#GEd[qȟh\nxs', '', 0, '?'),
('	6ĵ!:.', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӄx8H<))', '6ܠLJa{M@*O*', '', 0, '?'),
(':j$A*', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/Q^P# H', 'Xfx\n\\\Z4߫^󲰘Rb-', '', 0, '?'),
('--3xR#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sqlserver.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sqlserver.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eӣʫ2DNAT', '\rs-dր&%5~Ok\Z(Hߐ_F', '', 0, '?'),
('LVY*', 'wp-includes/js/plupload/moxie.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/moxie.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hjb(', 'xT Z$ \Z\nJC؋(<', '', 0, '?'),
('	\0=Z\0d', 'wp-content/plugins/elementor/assets/js/wp-audio.c9624cb6e5dc9de86abd.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/wp-audio.c9624cb6e5dc9de86abd.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';''Acm', 'aMCcQMxWv$HdazxT', '', 0, '?'),
('MK5΄\0~^', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/SubmitButtons.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/SubmitButtons.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|S1VvVOWO', '][[<}c\\$}@K\Zto', '', 0, '?'),
(' A$ۤfCN37', 'wp-includes/query.php', '/home/binawebp/omsrislb.my/wp-includes/query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8.Ӯ(Wn\\F', 'o"ٽRب +й2l<`v', '', 0, '?'),
('!q"[5;', 'wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7#r|pXfG', ',<Wt&%Ն[`I:B', '', 0, '?'),
('#G=JS$8\r', 'wp-includes/blocks/loginout/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nm%HLzd7', 'Xra!Q{Q<N{"۷WtSg,', '', 0, '?'),
('(הWh@=a', 'wp-includes/images/smilies/icon_mad.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_mad.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V!@c0S', 'd[O:Ǉjl}q', '', 0, '?'),
('56sGA''', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/featured-request-thumb.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/featured-request-thumb.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڲ#G?^', 'ŇYqWڍn*=*D(@MM', '', 0, '?'),
('70,		M', 'wp-includes/sodium_compat/namespaced/Core/Poly1305.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Poly1305.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qy?;8V\n', '\0-]뮳XEt)`1C}Mr2/', '', 0, '?'),
('>:Wk/>R,', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/faq/0001.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/faq/0001.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B׎ҽт\0', 'l	N\Z!+5o\rע_C,0qu', '', 0, '?'),
('C,ڦR1A	X', 'wp-includes/blocks/latest-posts/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n6\Zf6', '\0̐ӯ\nZ	/AJ{''g(', '', 0, '?'),
('EH!h<y', 'wp-includes/blocks/site-title/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GM"t|', '` \rpJɁ6ې\Z[2k', '', 0, '?'),
('Qz[Q(Xp]', 'wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js', 0, 'DZ]!c>', 'DZ]!c>', 'ܼ&6peb+7k@CWĖI:k', '', 0, '?'),
('g\Z\\\r`=m', 'wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']#%Z	Ѧ	', 'P;X]IRV^4Ƣ\n&h˱w', '', 0, '?'),
('iBj]', 'wp-includes/sodium_compat/namespaced/Crypto.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Crypto.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G8J+	z', '>8''XiUbGн,<T`64Ѝ', '', 0, '?'),
('p-j܌w', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/video.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/video.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C_+', 'țV\n]ZPZҦFv+&', '', 0, '?'),
('q{E%', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/XCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/XCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ml7wKk.', 'l :\\_$72@T7Ș{q]2&', '', 0, '?'),
('zF, ij', 'wp-content/plugins/elementor/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%m3<=Y5(#', ' 6$ݨR;@8]i', '', 0, '?'),
('O9qG\\YXbK', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y\\G\\ø]AY@7', 'RʦY%;uMi2-"T', '', 0, '?'),
('vόY9', 'wp-includes/ID3/getid3.lib.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/getid3.lib.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}	ve+A8', '9$y$Ϩ%?j(Ƨua.', '', 0, '?'),
(']\Z~-Cn', 'wp-content/plugins/elementor/core/isolation/wordpress-adapter-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/wordpress-adapter-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ų#l(C\\>', '\r^D-(w!j7濡6n>s\Zێ', '', 0, '?'),
('jѱup_^\r	', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/NumericArrayResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/NumericArrayResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''C\0CKxW', ':	$D>?CÔmO1K', '', 0, '?'),
('QG', 'wp-content/plugins/elementor-pro/modules/library/widgets/template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/widgets/template.php', 0, 'LHsEuFu:\\d"', 'LHsEuFu:\\d"', 'cƌQ]馋5=K', '', 0, '?'),
('XHov', 'wp-admin/css/common-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/common-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B&#a"]', 'q}t2''#ApZ:ϊi\0', '', 0, '?'),
('!NDw`[', 'wp-includes/js/jquery/ui/dialog.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/dialog.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vnI`uI\0', '{PG/X^_7G:Pqzi@Vay', '', 0, '?'),
('Xp~0D', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Woe~oB2_;', '5qSrL]OXsq+l<ɒ', '', 0, '?'),
('D !1gqt%Z', 'wp-content/plugins/elementor/core/files/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n!p"G$9', ',kZ0j".o{8̿-h\Zрt`', '', 0, '?'),
('֗]NRS{qv?', 'wp-admin/css/wp-admin-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',*i[p]<', 'r5SE?29/)_PJvVhR', '', 0, '?'),
('\Z,zҐU', 'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Z', '><ص@ʘFHFqEEjNn`C', '', 0, '?'),
('~k(G&VD', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!*''\Z3J͓', 'IT)tJl/)f{_\\71R', '', 0, '?'),
('|\\ˌj\\d', 'wp-includes/js/dist/vendor/react-jsx-runtime.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-jsx-runtime.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KI=tjA', '\0.z^23/R(.=0x', '', 0, '?'),
('"\0#z\rF(j', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\VwƢC(Yc', 'RweQyTi]=?-f', '', 0, '?'),
('O܎$8Je', 'wp-content/plugins/wordfence/models/scanner/wfScanner.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/scanner/wfScanner.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!M.$\Z', '7pGg5Z=)hJ0i8', '', 0, '?'),
('*v<TCUXJn', 'wp-includes/blocks/column/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/column/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^BSl\rs', 'R̢`]Kg/\0 %5S', '', 0, '?'),
('V܂0\0U`5C>', 'wp-includes/css/dist/components/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nIJbc<^l', 'pJz#~}lf^Ձ', '', 0, '?'),
('	JD뇁e96', 'wp-content/plugins/elementor/assets/shapes/curve-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wlN_Wh', '쌩&L{1c@L`k\r~', '', 0, '?'),
('ї"=-\Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_score.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_score.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iL(''-$ag', 'g%i\r,\n$	v*''?ܶ', '', 0, '?'),
('\Z R[''>', 'wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J\\c7yxгl', '~qV*''1]3^m', '', 0, '?'),
('$jX])D:', 'wp-load.php', '/home/binawebp/omsrislb.my/wp-load.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aؔg\0p', 'G-`+\r7G', '', 0, '?'),
('(\\+_VFOW-', 'wp-content/plugins/elementor/assets/images/contrast.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/contrast.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qʕjR\\M', '>LձMaq*&m9	I|+Ժϕ#', '', 0, '?'),
(',\0`by\r}', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\}"7ڷDZ', '.IH\Zg\0H!7`gޠZzȄž6|', '', 0, '?'),
('/x)\r!e', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dart.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dart.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(ֶ!5@]', 'I}Jmķq\0t~53]`', '', 0, '?'),
('2--gy5', 'wp-content/plugins/elementor/assets/shapes/zigzag.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/zigzag.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/G@?\0:{Q', 'N*w|	Șx<J:kT ', '', 0, '?'),
('2\\17Հwi{', 'wp-includes/js/dist/vendor/wp-polyfill.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')BX.%', 'ciPHKMFr*8NK=.9Y)', '', 0, '?'),
('7iE(D?', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i쒬	', '\rG8Bbh_\Z/0~EM)fe', '', 0, '?'),
('92"(*ǐ', 'wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.html', 0, 'p>-VRw', 'p>-VRw', 'de/l{_ 0"cku', '', 0, '?'),
(':r0\nGN\n?', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S^NϦgD''', '|iQ!d폁gF9x®EdX', '', 0, '?'),
('@Ĕl!$F\Z~', 'wp-includes/blocks/code/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\JNPT-7]', '</lU0*ߥW$VvC]4', '', 0, '?'),
('CtqJ>Ŭ闉', 'wp-content/plugins/elementor/core/document-types/page-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/document-types/page-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fV\\$O\\[	c', 'tHpnQLl\Z/z,TuX@~8', '', 0, '?'),
('C観WqF#?3', 'wp-content/plugins/elementor/assets/js/checklist.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/checklist.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߩz>5\\u', '=00`%!U''(M[8&E', '', 0, '?'),
('H)jHj', 'wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@ˊtru''', '#_\n:8aDؠr٪2/ߘ', '', 0, '?'),
('L.Qɛڕ2', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j<Tª', '\Zɵ?ABݓAKPb=o', '', 0, '?'),
('Nsf#@Q;;{̻', 'wp-includes/blocks/query-pagination-numbers/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P,#0O%<8|', 'qniȅ\nфo3Q۾-NP3NH', '', 0, '?'),
('Yn~WjY,i', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/color.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/color.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ѕ3=)QX', 'Bp3vb)צ\Zu&1;', '', 0, '?'),
('Y&jos!T', 'wp-content/plugins/elementor-pro/license/admin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/admin.php', 0, 'k^za4B', 'k^za4B', 'TJ lԫc^+T ^H', '', 0, '?'),
('[$_ VB@', 'wp-includes/Requests/src/Cookie/Jar.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Cookie/Jar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cn[LM(', '\n$S`''@#GT+w', '', 0, '?'),
('\\XM>)', 'wp-content/plugins/elementor/includes/fonts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/fonts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0MƖzL', 'ۋdAŸ(9*P۲둶!#@\n', '', 0, '?'),
('j%Mɍp)Z', 'wp-admin/images/generic.png', '/home/binawebp/omsrislb.my/wp-admin/images/generic.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''[#98!', '{uK[g͆Ex{:߼lͨG', '', 0, '?'),
('zXt3coܩ/8O', 'wp-content/plugins/elementor/assets/js/admin-feedback.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-feedback.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2~<<', 'H{}JP3{/=A7>=0', '', 0, '?'),
('4:e$EZ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/praat.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/praat.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\0Fx ', '94+f2`u|P\Z#ɵn"^', '', 0, '?'),
('OzV2q{', 'wp-content/plugins/elementor/includes/managers/wordpress-widgets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/wordpress-widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZOL g\n', '5玠3KmŒ^e\0^BҨ?u', '', 0, '?'),
('l<3UP4/|', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseXorBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseXorBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AG&4j_J O', '浗[Uk>(:1Ea', '', 0, '?'),
('697Y"G`KK', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date-time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date-time.php', 0, '	\\8jޢM', '	\\8jޢM', '\0@=^Ec^&L`M(1mWl', '', 0, '?'),
('X7v_c', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7-C1G', '\\$pvYN<3[@DrnM|t', '', 0, '?'),
('xF*sXŧ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/ImageMimeTypeGuesser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/ImageMimeTypeGuesser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3.', '	V@{+	g\ZL%', '', 0, '?'),
('$\neJSt}U', 'wp-includes/SimplePie/autoloader.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/autoloader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n8fJaP#', 'p\ry*C<C*dfiͯh', '', 0, '?'),
('5UHa]	Z?i', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#\\TvYs	<J', 'PbEaiyyzICh܉', '', 0, '?'),
('BP$ nPZL', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j9޼t', 'p!-єBՅIӏ	 "֬', '', 0, '?'),
('1oގmzS%', 'wp-content/backuply/backups_info-0uelYu/index.html', '/home/binawebp/omsrislb.my/wp-content/backuply/backups_info-0uelYu/index.html', 0, 'f~\n', 'f~\n', '#xx=\r"Y*7', '', 0, '?'),
('RKQ5v-	', 'wp-includes/css/dist/edit-post/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a6廘N>`"', '272jFϳ Z?Y`0y', '', 0, '?'),
('v Yޚ', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\{NZRUg	k', 'U]\0*juM_F#;"', '', 0, '?'),
('q뻣D(j', 'wp-includes/blocks/list/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.`K.R!_', 'b\\Fa]r:\rJ~;W\0P6ruC', '', 0, '?'),
(';(Xp`ҙpݷ', 'wp-includes/js/plupload/handlers.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/handlers.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pɽc\0', 'eWĢ\ZG(^bڟ\nH}&Ժ', '', 0, '?'),
('⮘ Fw\0', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kEmi[tRa', 'Xj/+M@Dpeϫů/-pQ0Vɂ', '', 0, '?'),
('a-{u3\0z<%I', 'wp-content/plugins/elementor-pro/assets/js/social.2d2e44e8608690943f29.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/social.2d2e44e8608690943f29.bundle.min.js', 0, 'UE*tFi', 'UE*tFi', '$"&4j1\0D5%<h*YNbt\rVa', '', 0, '?'),
('x:*{u', 'wp-content/plugins/elementor/modules/landing-pages/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$?yh2k\Zr', '0{Wi"EQ{\r', '', 0, '?'),
('\ZGub|e0wt', 'wp-includes/Requests/src/Exception/Http/Status501.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status501.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jNf', 'DNifqJ?3+B', '', 0, '?'),
('t0ga/', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~-x''	', '{ڋNo#X+Xe''_>\Z', '', 0, '?'),
('\nqoqZVyX9', 'wp-admin/includes/menu.php', '/home/binawebp/omsrislb.my/wp-admin/includes/menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7pF|`tb', 'g3]<*p3\0\n''16', '', 0, '?'),
('Ȼq,s$2', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/expect.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/expect.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZK2nsc>uA', 'QY78SАlTFȯpc^<', '', 0, '?'),
('JeC|_', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls-pro.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls-pro.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HVzۋ=', '-E\097\Zd6%J`%FHj', '', 0, '?'),
('MLo@T\\', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '䭗!Xrwm	', 'Lq1r)iq', '', 0, '?'),
('&McݝE\\DKt', 'wp-content/plugins/wordfence/lib/sodium_compat_fast.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/sodium_compat_fast.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd<{޼\n]qY', '$/HpV8C.zb`C', '', 0, '?'),
('.(!>L@-K#', 'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Hello.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Hello.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>e9''Ce', '\rxeߥ:G>\n=)^''-', '', 0, '?'),
('78ywJî', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-tag.php', 0, 'd79|QkrFu', 'd79|QkrFu', 'sR֓Ϙ<wVaA-', '', 0, '?'),
('=<Oܘ', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z^]F#', '|_ؘ=>H{iz˸', '', 0, '?'),
('Cߊ	>?', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';W;-կ', 'd\rsڑ97m<C	KP=', '', 0, '?'),
('GJ1;0c^n<J', 'wp-content/plugins/elementor-pro/assets/js/loop-carousel.4e8fd6593adbba21698e.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-carousel.4e8fd6593adbba21698e.bundle.min.js', 0, 'a&^Kh', 'a&^Kh', 'Ă!|ñ3{h7FT', '', 0, '?'),
('VqH*3\0/œJ', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-numeric.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-numeric.php', 0, '>yqO!z', '>yqO!z', 'j^fwbuOܻ9''', '', 0, '?'),
('emrD', 'wp-content/plugins/elementor/core/utils/import-export/wp-import.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/wp-import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u4ojz', 'r;C\\c[vN,Uqf', '', 0, '?'),
('x6եNϿ@', 'wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N\\#DmaUf', '\r@"_NP''" ung@z(&o4괶', '', 0, '?'),
('zun,6ȓn8', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=yv|	GRq.V%', '^?\n]\n[-,ae¹z)0', '', 0, '?'),
('Il񦏌q\r', 'wp-includes/blocks/math/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U$a-', '/^u)[=L|N_4AZJ,', '', 0, '?'),
('Ư	''CԻګ\Z', 'wp-includes/images/admin-bar-sprite.png', '/home/binawebp/omsrislb.my/wp-includes/images/admin-bar-sprite.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S:W^', 'rN!`VOcKviՀ{Fn\Zle', '', 0, '?'),
('lS`@&-`i', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!GB?IPus', '#\0HŤ;ACM^hkF]W', '', 0, '?'),
('4#հ}', 'wp-content/plugins/wordfence/modules/login-security/views/manage/code.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/code.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_29,HK', '\0Ø>$Y^!L晚ez5G_E', '', 0, '?'),
('>\0 z\Z', 'wp-includes/blocks/navigation/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CtE@%Rp', '2+w8^j]7l)t', '', 0, '?'),
('n{@$v', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̘\ZkwojTid', '3dYtIzaլzHjC{', '', 0, '?'),
('"Z0\0ؿeԦp', 'wp-admin/css/admin-menu.css', '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0>''P', 'z\n+w}|ny(^IgX/	u', '', 0, '?'),
('^gX¶Dg	\ZA', 'wp-content/plugins/elementor-pro/modules/query-control/controls/template-query.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/template-query.php', 0, 'W0K8`', 'W0K8`', 'ηlu+v%W$ANZ)}MSLR', '', 0, '?'),
('.H N', 'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/admin-global.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q!\0𭀠''', 'W4$a''x-Kμ#Z', '', 0, '?'),
('نJևd(&x', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-textile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-textile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''IӃ', '.ye-̉2t6S׮', '', 0, '?'),
('"8Y74O<', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'diBDJD5O', 'NaiB\rAO]@P', '', 0, '?'),
('x8[!>X', 'wp-admin/includes/class-wp-users-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-users-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9&gwul:', 'K.l?;?VkoG	9/t`Rxx', '', 0, '?'),
('0],`f\Zh', 'wp-content/plugins/elementor/modules/checklist/steps/create-pages.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/create-pages.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~G&J_ZN', 'n";<7m8Iّ{Voo\nr#m.v', '', 0, '?'),
('阮[̛~ہr', 'wp-content/plugins/elementor/assets/css/widget-tabs.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-tabs.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qy+\Zދ=N3L', '|+=z	֖Ē&<>', '', 0, '?'),
('n>--x_F', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/protobuf.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/protobuf.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DHraa=', '!qQ;)V1s%UڇH+\ryAk:7', '', 0, '?'),
('h1''', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/elementor-icon.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/elementor-icon.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ِCHQ\\', '{UDizwt2V8\na', '', 0, '?'),
('"On(M5', 'wp-content/plugins/elementor-pro/modules/custom-attributes/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-attributes/module.php', 0, ']d\Z)', ']d\Z)', '#J:P\n\nA}UܙVP', '', 0, '?'),
('zk"Pdҍ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BaseLogger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BaseLogger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZV\nCEUnzA', 'X0̂@\0@ZJ', '', 0, '?'),
('	̱#''', 'wp-content/plugins/elementor/assets/js/56a155a8adcef506ce8a.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/56a155a8adcef506ce8a.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$O_5zk	', 'yfқgR1P$,~揇%9', '', 0, '?'),
('oe$`D8!', 'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n,д/M', 'M;8,e_?o܋a	\Z\n	?ḷ', '', 0, '?'),
('ue{X1', 'wp-includes/sodium_compat/src/Core32/Poly1305/State.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Poly1305/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DM"E4bќB\0', '"CYW6A\Zp7\r ', '', 0, '?'),
('#6~	A^R!', 'wp-admin/images/contribute-main.svg', '/home/binawebp/omsrislb.my/wp-admin/images/contribute-main.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UVƦ2\0', '9H;!-V$zd{mU%Y', '', 0, '?'),
('\ZyAaL{ר', 'wp-includes/css/dist/commands/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u\\wb?cG$L', 'yEЍJak}dXM)0y', '', 0, '?'),
('u߃oSW0 ', 'wp-content/plugins/elementor/assets/js/packages/env/env.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȧغC"', ')0ZHxn\Z_vUaZMJ^', '', 0, '?'),
('!0~iVΡ', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2P4!M[', 'A	Zz|2#\\u', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('/0)\Z', 'wp-content/plugins/wordfence/views/scanner/issue-database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-database.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S>ZG', '\n#Pw3Id}͇%JjU+', '', 0, '?'),
('39h9k''F)D', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-makefile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-makefile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kF\\+CBp6ੰ,E', 'hT^- ޣnmή]bwO\r\n', '', 0, '?'),
('@qG-$|', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_wV-^+_9>', 'os/}$	_x\0u>', '', 0, '?'),
('D.8Y\ZP', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BRbhxpL6', ':ޡ9z$\Zõx*L|8x*', '', 0, '?'),
('SKK2iɈ', 'wp-includes/comment.php', '/home/binawebp/omsrislb.my/wp-includes/comment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8?~流7', 'JeA''4ۘ\n$dכ޷', '', 0, '?'),
('U''~Xtݥ=', 'wp-content/plugins/elementskit-lite/widgets/button/button-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/button/button-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ksqd?\ZU', 'A[MUB]\0\rg.qx<', '', 0, '?'),
('Wā\nYQ\Z.', 'wp-content/plugins/code-snippets/php/class-data-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-data-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o{tW{$Qj', 'G0ZdEvexKN`v:ފ', '', 0, '?'),
('^/', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields-class.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields-class.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4+_', 'U4L"Y̣᩵v=\n+', '', 0, '?'),
('bS''#vuh', 'wp-content/plugins/elementor/modules/atomic-widgets/base/style-transformer-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/base/style-transformer-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*.D\Z+B', '\nwpC>=)m*u΄NA', '', 0, '?'),
('fLa	l', 'wp-content/plugins/elementor-pro/core/app/modules/onboarding/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/onboarding/module.php', 0, ' $ \0', ' $ \0', 'iWhy6	9E=Fi홉]`', '', 0, '?'),
('x_,[5', 'wp-content/plugins/wordfence/images/sort_asc_disabled.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc_disabled.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǐ#a]2', '[8lYckl	u#KVn', '', 0, '?'),
('ygzaU"	XKG', 'wp-includes/js/hoverIntent.js', '/home/binawebp/omsrislb.my/wp-includes/js/hoverIntent.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$a', 'yf`D&LI9@q=AL', '', 0, '?'),
('xA', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ForkCMSInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ForkCMSInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@5:S)E', '鵑	ڥ}NI\\̉?d+ݔg\r', '', 0, '?'),
('$@e', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExists.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExists.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+\Z>f[O', 'Q瞋haV"^X5΂=/\\w&]=Qi\\', '', 0, '?'),
('顗H`k!U', 'wp-content/plugins/elementor/assets/js/frontend-modules.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend-modules.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CV7=j.)Ƃ', '_*PXV[_=9)A5<w', '', 0, '?'),
('G&rZ݌>', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(hp9N(*', '|pO#,NMg|"B&', '', 0, '?'),
('O9CXG\0u', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/anime/anime.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/anime/anime.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W-fPqnf	W:d', 'lֲ@a>-q^r', '', 0, '?'),
('\Zmg\r3BڭP', 'wp-content/plugins/elementor/core/kits/documents/tabs/global-colors.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/global-colors.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aorsz', '\Z Ҡ뫧JDpߒgjK', '', 0, '?'),
('H/L[l', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xv%2W,', 'n/?7~G3I\0ml\\$su~', '', 0, '?'),
('vRz@7g*T', 'wp-includes/blocks/navigation/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O">{C', '<EhYi3e\Zwi:FNl', '', 0, '?'),
('y*p}c', 'wp-content/plugins/elementor/assets/js/packages/http/http.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X҆''{!', '.J<֐U [@wjmMjȬ"_X', '', 0, '?'),
('̈ƩܥMƟe', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/eiffel.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/eiffel.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*v.Xmh1w', '_E7A(ך,Kb\rhUQ{', '', 0, '?'),
('wINxV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-stylus.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-stylus.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۻjR}5\0b', '60T:nv}*''', '', 0, '?'),
('NTZto\r%F', 'wp-content/plugins/wordfence/views/scanner/options-group-general.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-general.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tLGa\0oҠbY', '26ln\r" c:ƅzvJ1ܶ', '', 0, '?'),
('tj\n \\', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/export/class-ai1wmue-export-retention.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/export/class-ai1wmue-export-retention.php', 0, 'wĻ.\\+x', 'wĻ.\\+x', 'cv\nyRh7SC	q-X?k', '', 0, '?'),
('RpB@LJ', 'wp-includes/blocks/archives/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4?	UEw', '̴2I3QS*"@L$	"V?', '', 0, '?'),
('wT', 'wp-includes/blocks/button/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1/3kLl', 'P(3Z2XR.N>[E̐1', '', 0, '?'),
('''˝X.S<', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-switch.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-switch.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c:n$,z!', 'ˤ}yƜ}:^)6~y_xAhnaL$}', '', 0, '?'),
('@,Qui.FW~', 'wp-content/plugins/elementor/modules/floating-buttons/widgets/floating-bars-var-1.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/widgets/floating-bars-var-1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0!{j|𼴹c', '&&	ؖO<\n(u**t', '', 0, '?'),
('\01$WޱTC7g', 'wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.69f365c96dc0120de70b.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.69f365c96dc0120de70b.bundle.min.js', 0, ')\rW҉vv', ')\rW҉vv', 'Ld3׎}>Jgvr\r8ݥ', '', 0, '?'),
('\rT`[0=淯7\\', 'wp-content/plugins/elementskit-lite/widgets/accordion/accordion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/accordion/accordion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@dM/#?h\n', '6?nvHb#1ݡF-W', '', 0, '?'),
('Z3Z''Zо;', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/save.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/save.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\2\Z1xo%', '\nMLK]zg }2h 6{{?', '', 0, '?'),
('TEaMYZ4CDi', 'wp-includes/fonts.php', '/home/binawebp/omsrislb.my/wp-includes/fonts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$/ks+}\Z', 'ҽ2;gF˥ZjjÔ''os', '', 0, '?'),
('GvLhwN', 'wp-includes/block-bindings/post-data.php', '/home/binawebp/omsrislb.my/wp-includes/block-bindings/post-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EisR?', '╺;>\\my7\0K\\K', '', 0, '?'),
('/ɘ]^W\\q', 'wp-includes/css/wp-embed-template.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TmAVAЖX', 'KˠĖl:\\Q`:#EBߤ''zb', '', 0, '?'),
(';t7FU]', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '()NŚmm!p-adu', '*dȄТrQG`få	w:', '', 0, '?'),
('=ߜN,', 'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/documents/product.php', 0, '2>nqʴ(Q', '2>nqʴ(Q', '@T"\0Vvi:;UrZ)	UȐ', '', 0, '?'),
('^05MvN!0', 'wp-content/cache/wpo-cache/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('ghH@T ', 'wp-content/plugins/elementor/assets/js/editor.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/HO#8\n ;zJ', '/ZR9m`l~Ib', '', 0, '?'),
('v{LJlōYz`(', 'wp-includes/js/thickbox/thickbox.css', '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/thickbox.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QHѰ1v]', '''мDY%ENLTzR%!qFGZ', '', 0, '?'),
('x\nx:	ۥd', 'wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D)', 'zn»MTF6YC[oI5*U\Zp', '', 0, '?'),
('^	"uZS ', 'wp-includes/blocks/comment-edit-link/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kcw!11', 'kwϫ s왃NI', '', 0, '?'),
('z>O]^', 'wp-content/plugins/elementor-pro/data/http-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/data/http-status.php', 0, '^v@UvZ|,', '^v@UvZ|,', 'r(Pi*I樻j6f(0+\0', '', 0, '?'),
('(NL;	', 'wp-includes/js/dist/api-fetch.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/api-fetch.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(zoU&͹#', 'm92cUy	GӬ\reD!', '', 0, '?'),
('$׭', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/GetAttrExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/GetAttrExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fQXTE)@', '^51ÿ>v.Qu[tH', '', 0, '?'),
('ʦy:,4WA', 'wp-content/plugins/elementor-pro/assets/js/form.72b77b99d67b130634d2.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form.72b77b99d67b130634d2.bundle.min.js', 0, 'Z}Ųq', 'Z}Ųq', '\0*р:$ι9	\\zv', '', 0, '?'),
('[GA=O', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r {mu@=', 'iMg4Y͏o\Zb\\', '', 0, '?'),
('''!MĻ\0G', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W"WO<ԩ`', '	6ծuK$D{PsRo5rYY', '', 0, '?'),
('#X1M/t', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-init.php', 0, '(R祆Җ(^r', '(R祆Җ(^r', ')RLwJ۝U(?3R8', '', 0, '?'),
('\rms\0@=[', 'wp-includes/blocks/text-columns/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǎO׌u', ':/I`69	R03', '', 0, '?'),
('K8yJP', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/NotFoundExceptionInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/NotFoundExceptionInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!?A1VSy	', 'k''׉Ռ3e!L1zVz</', '', 0, '?'),
('֬+I7^', 'wp-includes/blocks/file/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n\\T8)|''Uw', 'chzX=A!zyEЯy`H&+GׇM;	', '', 0, '?'),
('ǲE"T\0O%|', 'wp-content/plugins/elementor/core/utils/import-export/wp-exporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/wp-exporter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ys]E0', 's?ܗ`묑>оrQQDF7bɖ', '', 0, '?'),
('XVטO|8}', 'wp-includes/theme.php', '/home/binawebp/omsrislb.my/wp-includes/theme.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5!O]', 'umtW+*h4(+_', '', 0, '?'),
(' m<-''8Y', 'wp-includes/css/dist/preferences/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}2{ёƮg', 'oqhc,JٸB₿dl&^', '', 0, '?'),
('$?R<-', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shopengine-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shopengine-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kc_ԹW>m5', '''D2X۔Jj׏!~:m,$', '', 0, '?'),
('&ї\0', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/InvalidImageTypeException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/InvalidImageTypeException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6SXf}ֿ', ';(Bd-&"<9XsIQ', '', 0, '?'),
('0"G\Z=hV4', 'wp-includes/blocks/separator/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EȪh', 'אZȽn_6{Nn;FM>un"', '', 0, '?'),
('4<:;u|a0N', 'wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SyGGZ\ZNm,_', '*Gu|G>><^S+t@9;', '', 0, '?'),
('9W\ZZB=K?(@', 'wp-content/plugins/elementor/assets/js/web-cli.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/web-cli.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'moxĉw\0Wd0*1', ')@!k!`pŉvU?kdx0#2<', '', 0, '?'),
('BH*mzN83', 'wp-admin/css/edit-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/edit-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''rlP)א', '`GT\0a+:wx:ktW`̭E', '', 0, '?'),
('Im`dw@G>\0', 'wp-content/plugins/wp-optimize/images/icon/wpo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/icon/wpo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ʊtn.|bO>', 'Oj߽Jq:%fHkYn', '', 0, '?'),
('JXhQ3y', 'wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2jЗ6Hи', '2X(Ty^3ƈx!!Msǳ	', '', 0, '?'),
('R\rR0O)\Z|sz8', 'wp-content/plugins/elementor/modules/nested-accordion/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-accordion/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ēxN1^', 'tT,ڠ˶|tQLa#eY6N', '', 0, '?'),
('VvTc{O\ZB}', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y"oP<\0)I', '\\.śBu`.kMXjXB*R', '', 0, '?'),
('V}Pm/|I*', 'wp-includes/js/customize-loader.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-loader.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5G11QōΑ', 'ˎ4p5dHmԒ؂z', '', 0, '?'),
('iY[[ә	=', 'wp-content/plugins/wp-optimize/vendor/composer/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']_#D\0', '\Z ے%4~N~Gh!b:wɌ''', '', 0, '?'),
('ihtDVprn[', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/widget-scripts.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/widget-scripts.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hQ	m7Vb', 'oM^<D-O9!]un\n9=B', '', 0, '?'),
('lt:{0+79C', 'wp-includes/sodium_compat/src/Core/HSalsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/HSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hx+07`}', '@qzjI \0DaW6n{y', '', 0, '?'),
('q$p9b', 'wp-content/plugins/elementskit-lite/modules/controls/widget-area-modal.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/widget-area-modal.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\raCRõ~', 'ǌ7k:*I,׶(ϑ6l*`', '', 0, '?'),
('ut|#oOn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/range.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/range.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QsP믎<ld)1', '{+NYlމڥ/}jY', '', 0, '?'),
('yՁ>-@	/_', 'wp-content/plugins/elementor/core/utils/hints.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/hints.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''S;\0$H', 'cH\0ɚtU6htw-tHl', '', 0, '?'),
('|tsKC', 'wp-content/plugins/elementor/core/common/modules/connect/apps/connect.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/connect.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p<bf.FU~Lu', '5ybWQT+CwIj', '', 0, '?'),
('1c\Z_yV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&t', 'A}Va$[&I}	EY)\\I', '', 0, '?'),
('.v8-rJŕqQ', 'wp-includes/js/wp-auth-check.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-auth-check.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2YTxw', 'EID(10i|V:^s\ZXǂ\\9kOG', '', 0, '?'),
('>-4', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\^zV!N\\''9&\\', 'yZ):R®v,sPE\\$J0wC', '', 0, '?'),
('z>N}!^x', 'wp-includes/l10n/class-wp-translation-file-php.php', '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-file-php.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɖx+YTM', 'g)rǡWKX,IpLQׯ', '', 0, '?'),
('*$)bh', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-base.php', 0, '5$Y{Ib-+', '5$Y{Ib-+', 'Oc1.K7Aź7', '', 0, '?'),
('6UѦu', 'wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EWR῏\0', '裐;J-<"86exּT(`ߒL ', '', 0, '?'),
('7E#wŧj', 'wp-admin/includes/image-edit.php', '/home/binawebp/omsrislb.my/wp-admin/includes/image-edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p]X3\\9iQ@', '=A-5{r,6>T`s', '', 0, '?'),
('UՉB', 'wp-includes/Requests/src/Exception/Http/Status415.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status415.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ne\Z^Ffm', '*حҟ|9/_<1?+V', '', 0, '?'),
('bq/Fk', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7¤\rFg', 'nV''VV)F|*ᑝ2Nz', '', 0, '?'),
('_eK', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/SignalHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/SignalHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',SY38)', 'FADQWt$Ef:wrZ/g', '', 0, '?'),
('yw;=', 'wp-content/plugins/elementor/assets/svg-paths/spiral.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/spiral.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')ȒQN-gSǓ˸', '!3ͷ}CSSL:&y', '', 0, '?'),
('ܟ_8H\r$:', 'wp-content/themes/twentytwentythree/styles/electric.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/electric.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǭ\ndQΩ6_', '.zu櫺U Tpɸ-', '', 0, '?'),
('ݦx=31`', 'wp-content/plugins/elementskit-lite/libs/framework/views/layout-onboard.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/layout-onboard.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HɝHC-kN4r', '\r!o\rF\\P(\n\\hMTtqx', '', 0, '?'),
('HNf5+', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(UM[l', 'JnѤČ))\ZmWЀà', '', 0, '?'),
('dl*,wVKՏ', 'wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('`KE#t]{&', 'wp-content/plugins/elementor/modules/system-info/reporters/theme.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/theme.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c<dވZEQ', 'K\0~w{`R}NPdDmkSLTۉQ', '', 0, '?'),
('v|-', 'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!<]r', 'p[L7F|˖ZBR', '', 0, '?'),
('eHM]', 'wp-content/plugins/code-snippets/dist/settings.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/settings.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>@~6b~ٙw', '߰~I&/nz%-T\ZG/z~4', '', 0, '?'),
('AiJh !mѼ', 'wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_1E-&c ', '۹l*7=^ℐhe9=', '', 0, '?'),
('iMuj楝', 'wp-includes/Requests/src/Exception/Http/Status306.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status306.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/Hk{O;,<`S{~', 'Muy%hחHlcA', '', 0, '?'),
('\n;E t\09', 'wp-content/plugins/elementor/includes/base/skin-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/skin-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZWЄZC\nȇ	D', '9+1Bzշ9բ";\\j#J+WD', '', 0, '?'),
('I\\դb_\0@M', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-generate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-generate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K#\0.VU', '\rl5_b\\`}g 1!*', '', 0, '?'),
('!HUN&"z', 'wp-admin/css/widgets.css', '/home/binawebp/omsrislb.my/wp-admin/css/widgets.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D9k', '+R>9t>3OQA}Mc', '', 0, '?'),
('**H-ʿՙ~#Oc', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g1H,/', 'St+6sC=ݪ*J-_<`\0\r', '', 0, '?'),
(',,''Q#', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e1-2ܡVt;', '|٧H^qhx8\rAkڶa', '', 0, '?'),
('BHNicyrK', 'wp-includes/js/dist/script-modules/block-library/image/view.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/image/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mv', 'cm)(ah<<E', '', 0, '?'),
('F߇#ata', 'wp-includes/block-patterns/query-small-posts.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-small-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f@Iva=9uQ', 'ͷ%w@3#FZqt`so', '', 0, '?'),
('IhdC{n?', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub.js', 0, 'k5#uΨᦽ', 'k5#uΨᦽ', 'B#K$c\0-cvwggE', '', 0, '?'),
('L~iS?vC>@y', 'wp-includes/blocks/latest-comments/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qcx+}%P', 'j\ncIrt8\nhx;Y!Q";', '', 0, '?'),
('S7zǫW~2', 'wp-includes/blocks/site-tagline/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9s+2c1\\%\0{', 'ZkR⨈\Z5pm\\nz', '', 0, '?'),
('U4Nb<#_', 'wp-includes/blocks/video/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')>Hh?7F', '3ᙼ<Ht?>NOuΊEgݎJ', '', 0, '?'),
('[A6a(&A"', 'wp-content/plugins/elementor/core/common/modules/finder/categories/general.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/general.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Glq', '\r]0ro\\~<?0PjrMħY', '', 0, '?'),
('atUq^!0ƣl', 'wp-includes/post-formats.php', '/home/binawebp/omsrislb.my/wp-includes/post-formats.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oގ.O', 'cTl_"bM*y"N;,', '', 0, '?'),
('k_L/n/', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D''`Jd@i', '@[ȊޱТA:$pdīJLe', '', 0, '?'),
('kzߣboR', 'wp-admin/post-new.php', '/home/binawebp/omsrislb.my/wp-admin/post-new.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c\n1U\\EȄ', 'lr}^u1w3;.?NN`r', '', 0, '?'),
('vO#JN+쁁', 'wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aa+JD$2J', '/#?TiOLyvuTKɤ\\ػ', '', 0, '?'),
('{ч3zҮ+u', 'wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~(cgWW<', 'ݳJXazWAѡ<rG>', '', 0, '?'),
('|vP0fhT', 'wp-includes/js/dist/block-directory.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-directory.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=Xf\ro̷w', '[`*+M7\\6 }l', '', 0, '?'),
('X'';yfF', 'wp-content/plugins/wordfence/lib/wfFileUtils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfFileUtils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1}o!8|O''', 'jcORox&#A\\!ǌР,2̖r', '', 0, '?'),
('@{J5䷴X', 'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U,:)؋"QqY', '"Ooۈ<oES-MO÷YN!', '', 0, '?'),
('qe5v{OG', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/elementor-icon.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/elementor-icon.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ِCHQ\\', '{UDizwt2V8\na', '', 0, '?'),
('&qjd6', 'wp-content/plugins/wp-optimize/js/wpoadmin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpoadmin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hmK:', '"ہ.H+5³	i>勝^a', '', 0, '?'),
('!\Z쌀7Z=', 'wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-carousel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-carousel.php', 0, 'YbS\rsb', 'YbS\rsb', '6Ճ>e?.q]Y\\AQ1a', '', 0, '?'),
('uGy70	 =\n', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/get-post-type-taxonomies.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/get-post-type-taxonomies.php', 0, 'X<Q,+\\', 'X<Q,+\\', 'C*$v	^15o!sXt(M)kX', '', 0, '?'),
('s>@x_', 'wp-content/plugins/elementskit-lite/core/handler-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/handler-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i#avAOg', '83PYm.[_7`8va}WH>', '', 0, '?'),
('L6	׳', 'wp-includes/ID3/module.audio.ac3.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.ac3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>Y\Zk0aM', 'b^#¨(t^rߘz9F', '', 0, '?'),
('\ZpnE<=Q', 'wp-content/plugins/code-snippets/js/components/TagEditor/TagEditor.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/TagEditor.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '27kأ', 'ҕ:a\Z9T7/up݋JHi8G', '', 0, '?'),
('uzb/0-'',=', 'wp-content/plugins/elementor-pro/assets/js/hotspot.d43ef85fb9e56c4414f4.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/hotspot.d43ef85fb9e56c4414f4.bundle.js', 0, 't''a8\nyu', 't''a8\nyu', ',jp-̞nB7yP"c5', '', 0, '?'),
('Ohd[wx', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n͔~pU', '\\.c,]/"KC٢9N>', '', 0, '?'),
('TV\\', 'wp-admin/import.php', '/home/binawebp/omsrislb.my/wp-admin/import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''{ţn\n>Y', 'mAVT%KR\nZU4{cx.', '', 0, '?'),
('ܵ[Ҳm%6S8:D', 'wp-includes/images/toggle-arrow.png', '/home/binawebp/omsrislb.my/wp-includes/images/toggle-arrow.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '·a;d*', '[b\Z;]f0s|:%', '', 0, '?'),
('Q<Q/O[', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-table-management.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-table-management.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*nbAA>', 'O&]CF%<yg', '', 0, '?'),
('$Oqyܹ', 'wp-includes/blocks/audio/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pxں5)C4\ZM', '^}b>?K8<R܊${06', '', 0, '?'),
('!ެ߳p', 'wp-includes/images/crystal/default.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/default.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A>)*/!-', 'n$_u	$Q3E׏r|Jm', '', 0, '?'),
('\0_!mc', 'wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cPlպ>6n', '{''j&J$%-\\&ц:m)&u', '', 0, '?'),
('I	2RNjY', 'wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c+9O˚d/R\n', '>s$/C yv', '', 0, '?'),
('&MXWO', 'wp-includes/error-protection.php', '/home/binawebp/omsrislb.my/wp-includes/error-protection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@GX=">7Ś', ',끭@cZ/_,<Җk', '', 0, '?'),
('\nB_o7', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^NK\0Z	', 'R0HEOp+\Z)cD*<o1;', '', 0, '?'),
('F$Ⱦ]\02', 'wp-content/plugins/elementor/includes/widgets/image-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image-box.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^:Бz(=n}e@x', '3=L"ۂ5GIn!', '', 0, '?'),
('\n+Ԏ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-main-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-main-controller.php', 0, '>r2v<', '>r2v<', '}VTBe^DA(e̐{\r-\0)', '', 0, '?'),
('w(նܔ$', 'wp-content/plugins/elementor/assets/js/nested-tabs.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('8V-ʜA', 'wp-content/plugins/elementor/assets/css/templates/frontend.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u]oLFUyČ', '1/R\Zm6W=B', '', 0, '?'),
('G\r@-x`m', 'wp-content/plugins/elementor-pro/assets/js/gallery.8ca9a354ce039d1ba641.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/gallery.8ca9a354ce039d1ba641.bundle.min.js', 0, 'Asļy#u', 'Asļy#u', ']._ϐY/J<UiJ&', '', 0, '?'),
('I;z"2A', 'wp-content/plugins/elementor/assets/js/alert.b696182ec6f18a35bc69.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/alert.b696182ec6f18a35bc69.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6&na+.i!''Ư	', '&CctīG\r!5sHR', '', 0, '?'),
('PIUxfJ%q', 'wp-includes/blocks/footnotes/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڌ\ZZSI-', 'PINΙZtr''ׂ=,]-', '', 0, '?'),
('U6"+}yYs', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-full-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-full-content.php', 0, ',SC{', ',SC{', 'rhJQH''˩	1bә\\ȓhoEE', '', 0, '?'),
('W-}Q$\ZZ', 'wp-content/plugins/code-snippets/php/class-db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5͟KHKU&J', 'oϲfGY\rkck(]?', '', 0, '?'),
('\\Дhc', 'wp-includes/blocks/page-list/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2밈LvV\n', '.R7U	1H+''C Nqܰmb', '', 0, '?'),
('a}D欙uAYZ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-twilight.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-twilight.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd~áM', 'Wc&5:QVʬ~U1ws%d', '', 0, '?'),
('o)hZQyDkc', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/scripts.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/scripts.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e >KIQf0', 'gڎ\0V+7&"АTO<gt,', '', 0, '?'),
('sr0/yJ{1R', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/Debug.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/Debug.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&J]k&t«Z', '"=V}o\rdҪ1KW`{', '', 0, '?'),
('sc&MUYXp', 'wp-content/plugins/elementor-pro/modules/forms/actions/email2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/email2.php', 0, 'Tj1/\\=C', 'Tj1/\\=C', '- [`/[G	ӻ.x!A''~', '', 0, '?'),
('u1HM:E7/{', 'wp-admin/includes/class-wp-site-health.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-site-health.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '18=5άsƸ', 'O٤,Z7h%W׶˰vv', '', 0, '?'),
('<]\0N[ \0G', 'wp-content/plugins/elementor/assets/lib/animations/styles/flash.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/flash.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c[2&r', '>:p]g-C!RAQ(϶g', '', 0, '?'),
('tO;ً	', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?HICrOiƻ`', '/Mu0/4?L6B?', '', 0, '?'),
('ZԬ=!Ri=7h', 'wp-includes/js/dist/vendor/wp-polyfill-object-fit.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w$1)x5)L{p', 'ǈv㡴y"0Mp@RTඒK', '', 0, '?'),
('Jo2;G~}:', 'wp-content/plugins/wordfence/js/knockout-3.5.1.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/knockout-3.5.1.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(aUHw˲IO', '&$z;o,4ca', '', 0, '?'),
('"m܁Q', 'wp-content/plugins/elementor-pro/modules/code-highlight/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/code-highlight/module.php', 0, 'ZQ]%̵', 'ZQ]%̵', '>eYVש9C5՟Sx^:`o', '', 0, '?'),
('*&|7[', 'wp-content/plugins/code-snippets/dist/editor-themes/railscasts.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/railscasts.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v''`\0÷', '+o%TULǼ2Smx7d5aά8y', '', 0, '?'),
('p4kcQ(0h', 'wp-includes/blocks/avatar/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D||PyXG', '~_8x~5K<A{ؚe ', '', 0, '?'),
('ßpq9Yy@', 'wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$imj', '`&,\\3i]\0Lk^YI', '', 0, '?'),
('ǀ3<&YĆ', 'wp-includes/class-wp-roles.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-roles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}cI<N7~x', 'VmàV~5WjWW\rWFսG', '', 0, '?'),
('ǧ3Fǭm', 'wp-content/plugins/code-snippets/dist/editor-themes/yonce.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/yonce.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r.Kd	#n\r', '\\fă﬌w4^Oo(a3B', '', 0, '?'),
(']w1҈&6\r', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/properties.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/properties.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd:q<í', '"!͚9ĨJyn@SYhbj	', '', 0, '?'),
('f0ͭ~)', 'wp-includes/fonts/dashicons.woff', '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z_rY+ʂ;', 'yU]f8tlL.', '', 0, '?'),
('	]Pmz]', 'wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('ۤ:L~Y*', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=8QHb*8', '4ϧF{''{\nZ18ͰFٍͷv(', '', 0, '?'),
('527R''W', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '׶oQwvͧ', '+HqnOyT;(T+~7fl''1', '', 0, '?'),
('MO,s\r', 'wp-includes/class-wp-http-encoding.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-encoding.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Myy`DJj4$ڈ', '~?r2߭PɅ[	\nY9fK', '', 0, '?'),
('cM<e}R\0', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/bootstrap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/bootstrap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z)l\\%G', '\Z=y75-@EGlU7Ds', '', 0, '?'),
('<Jyhc;9sh', 'wp-content/plugins/wordfence/css/phpinfo.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/phpinfo.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>Q!0w/蓴', 'a@|I\r=\Z^εd)[W', '', 0, '?'),
('m\n[J', 'wp-content/plugins/elementskit-lite/widgets/header-info/header-info.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-info/header-info.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C~\Z=', 'WTm3Mz6JNY', '', 0, '?'),
('dޏcJQ', 'wp-content/plugins/elementor/core/admin/menu/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>', 'I3>̃n]w_1S&aVb', '', 0, '?'),
('0AY0Z<', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-animation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-animation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\݄\\S2', 'SCE|H8:XzvX', '', 0, '?'),
('4\r}+', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-02.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-02.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3wX', 'hXTSQ.ƤLaG', '', 0, '?'),
('zJ/B&C%', 'wp-includes/blocks/post-featured-image/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HBk5nϲ', 'ťX>e9WYeS>!.4', '', 0, '?'),
('!]5^DCj(h', 'wp-content/plugins/elementskit-lite/modules/megamenu/walker-nav-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/walker-nav-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aͣ+1/z', 'ƳN=%`ڜvNXߪ^C>D', '', 0, '?'),
('#ynہ彐[hr\\U', 'wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3]>^#;Y', 'O·]V-n.', '', 0, '?'),
('''''-[bAg', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sa*\ZU', 'ˁպi&"csz̭O', '', 0, '?'),
('*6M7Ob(	', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionTypeException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionTypeException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1xЋ(Ti', 'x&)9P3U9z%>r\rpN', '', 0, '?'),
('2u5X*', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/ai1wm-wp-cli.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/ai1wm-wp-cli.php', 0, '8\n7(	3i', '8\n7(	3i', '%Y<{kZNA\rTu>', '', 0, '?'),
('5;T]\0', 'wp-includes/blocks/post-content.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q I"c?O', '''f~ bh\\yCMwpNXA', '', 0, '?'),
('6|;;8Q4k', 'wp-admin/install.php', '/home/binawebp/omsrislb.my/wp-admin/install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''z0', 'F6aV~eVm#+\0\n`G%	a', '', 0, '?'),
('9eEbݾl3', 'wp-includes/js/wp-lists.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-lists.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V1+ޫ7oT', '%jhAk"q2QWixFxY$', '', 0, '?'),
(';$|PzOL', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tݼ9vGH', 'h>t\\ .~XQ@Xz`.!d|s', '', 0, '?'),
('=\\by|/,\r', 'wp-content/plugins/elementor/includes/frontend.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/frontend.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QCc|''r]', '%ٞ+@<>YxP"mP', '', 0, '?'),
('MB~oz\r2J,', 'wp-content/plugins/elementor-pro/core/upgrade/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/upgrade/manager.php', 0, '-&d,U=>s3', '-&d,U=>s3', 'Gań~Z_2x\rRNk|GV', '', 0, '?'),
('Wqc.g', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-archive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-archive.php', 0, '?\n|\rхԦ', '?\n|\rхԦ', '!"X4ni[aDvN>ZD', '', 0, '?'),
('l:SѸl=ԋ6', 'wp-content/plugins/elementskit-lite/modules/megamenu/api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǃ/:(r', 'mM"jm.\Z=\nR^\r߸', '', 0, '?'),
('s6Z$ӾyD(', 'wp-includes/blocks/group/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'abЖZFUl\Z', 'bS %qR7Fֻ', '', 0, '?'),
('v*~\n=\r!3\n', 'wp-content/plugins/elementor-pro/assets/js/e1314d8e113e32e00c20.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/e1314d8e113e32e00c20.bundle.js', 0, 'ZgHQdQ`/ջ', 'ZgHQdQ`/ջ', '74]{}/u(PǃLe؄', '', 0, '?'),
('y6qY!H', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/ConverterInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/ConverterInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-vm#ɥ\0]', 'SHmƃC-acf 3H', '', 0, '?'),
('z9	`d3\0Iay', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mgQ~[#\\b', 'PMT1;B`', '', 0, '?'),
('\Z5o#R''/l', 'wp-includes/fonts/dashicons.eot', '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N\Z>w@R-/Y', 'B\nZ\Z_pn͂Q?/\r3s})', '', 0, '?'),
('t=O+kz%B', 'wp-content/plugins/elementor/assets/js/gutenberg.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/gutenberg.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vͱq\r', 'G蹜Z[}{CV&LfOmK', '', 0, '?'),
('ןvK', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lsl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lsl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j)-IPQ-!', 'Vp۾+I%I6j', '', 0, '?'),
('I^\r8qr', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tex.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tex.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ў>XxI?[L', 'U/MT6{ehr"B~Ko', '', 0, '?'),
('SXw6Mߠ-', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php', 0, 'ãc05*wR', 'ãc05*wR', '^ϗv}ۙ!)OMM', '', 0, '?'),
('X}	aw*	EB"|V', 'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')ef#`P~7n', '-mznNFE\0ѭ\\vqsL?Z\Z', '', 0, '?'),
('ab<` ', 'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-async-request.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-async-request.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|uF#"{', '(P@"!{A){h]ĖЦ''y	7X', '', 0, '?'),
('E?Юᾠ', 'wp-includes/js/media-views.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-views.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z/>5o*S\r)', '^ב~)ɲq`aئ_N4-', '', 0, '?'),
(' vbu)', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=Y@_x', 'ް\Z^3ɟvU.a\r]fhI(sA', '', 0, '?'),
('ƾ/f=', 'wp-content/plugins/elementskit-lite/widgets/page-list/page-list-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/page-list/page-list-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ne!}`"\n', 'FVa$&Y$&Q.r2<', '', 0, '?'),
('R:^e+x2c', 'wp-includes/PHPMailer/SMTP.php', '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/SMTP.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W\022_w', 'P$\Z qoL`{m<$RB', '', 0, '?'),
('=?;~7SQ\Z', 'wp-includes/blocks/comment-author-name.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B"k"Њ+^', 'ӤB&)`(=ë,[}ߢyE"', '', 0, '?'),
('Cg}|E', 'wp-admin/js/word-count.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/word-count.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xgU0V', '0twTz+of/\rh', '', 0, '?'),
('ihʖsK', 'wp-content/themes/twentytwentythree/parts/post-meta.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/post-meta.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '83ډ5]&qY', '|M\rރBX?q[$}', '', 0, '?'),
('4ߖT6''(', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/css/ekiticons.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/css/ekiticons.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NWlX', 'h/)%G(OX', '', 0, '?'),
('3KLvڭx', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nix.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nix.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`aM_[S', 'Ɲ~:,P=Hq	ڹ`', '', 0, '?'),
('	vO.|ߤҵ', 'wp-includes/js/tinymce/license.txt', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ox:`', 'Y#wOg^''b:^	=跨|', '', 0, '?'),
('\n`]DW', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Signer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Signer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V[CmD\nzO~J', '.߁f(/={Bs2N!', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('"z>Uq|Ss', 'wp-content/plugins/elementor-pro/core/utils/collection.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/utils/collection.php', 0, 'a(0VyU', 'a(0VyU', '[ZЃ:\0S\\eM.^0Q:', '', 0, '?'),
('$l⎙|m', 'wp-includes/SimplePie/src/Cache/Redis.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Redis.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ogЬ2IP', 'рrzS~}MRM?O$j', '', 0, '?'),
('CQ%@	Ja ', 'wp-includes/blocks/archives/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kx#ksyR<\0-', 'i˫Y:T`lPO"b2.\0', '', 0, '?'),
('G8[(', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/Compressor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/Compressor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2*:<vw', '4NCx\0ü-$,Pz\ZI\0', '', 0, '?'),
('H+@= Sp', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/size-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/size-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_+Yt2	ǻ', 'y*SI0N2"@ppgw[VHO', '', 0, '?'),
('I`oum', 'wp-content/plugins/elementor/modules/notifications/options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notifications/options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't~mRo`', 'vYQ7C}Y;hes', '', 0, '?'),
('LߨϤ(R', 'wp-admin/css/code-editor.css', '/home/binawebp/omsrislb.my/wp-admin/css/code-editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gqis픋-', '~:"`he&@*A', '', 0, '?'),
('X[FnĭzτU	', 'wp-content/plugins/elementor/modules/system-info/reporters/server.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/server.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PCX{,v', 'Z4=/>O]+nV	)xٸ	x&', '', 0, '?'),
('k5*32D', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/1.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/1.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'it09kLX', '(vT1D\n(c', '', 0, '?'),
('y/\\!10a', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-size-scale-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-size-scale-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S6\Z#Squ#N', 'E_̪|\nnOݜU [xT8t', '', 0, '?'),
('cFJFVH', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CloudConverterTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CloudConverterTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\Z2', 'a`#''Yi\rT%RVG0N=', '', 0, '?'),
('Zihп.', 'wp-content/plugins/code-snippets/php/class-contextual-help.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-contextual-help.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/J˕c', '\\W XbA0uP@TG0ߣ', '', 0, '?'),
('pKb\0!(', 'wp-includes/css/dist/block-directory/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ޫ#<Zj$myU', '8S#N(n,h2k''-]чw', '', 0, '?'),
('1[hB z28', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L{gNJǸSa4', ')c{Q8G43G=ۘ<wZ?', '', 0, '?'),
('&', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';¯^Q''', 'gn\rLaPE7|vRXi', '', 0, '?'),
('tc88d@}', 'wp-content/themes/twentytwentythree/styles/pitch.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/pitch.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?l<.8>Yoݩ͒\0', 'eBHW''\\ndzF*P', '', 0, '?'),
('W۩O<', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/accordion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/accordion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0+YslNY\rv', '߮v<)ye<:e	䯙	{߈F', '', 0, '?'),
('9\0\0r!e/Qf', 'wp-includes/SimplePie/library/SimplePie.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4kI6q', 'QT@;}?C9~:)~D', '', 0, '?'),
('|5Y{.ի', 'wp-content/plugins/elementor/assets/js/kit-library.b0f0ab89c95fe1f6fde3.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-library.b0f0ab89c95fe1f6fde3.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T,Vq\\2', ' k6OFeiA.NwEuޯ', '', 0, '?'),
('/\ZGan\0E`', 'wp-content/plugins/elementor/includes/widgets/google-maps.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/google-maps.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C^*Ra5', 'lՈCYx5ad`''', '', 0, '?'),
('])_&e!', 'wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-eighties.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-eighties.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!pP?;ӑ5e!', '82$e1?aӐPn<dG|[r', '', 0, '?'),
('Ia/Q87K', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/5.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/5.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P\\\0Zub', '˽C	mg#\rW}%|	^?	', '', 0, '?'),
('N6Q5dr#', 'wp-content/plugins/elementor-pro/modules/assets-manager/classes/assets-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/classes/assets-base.php', 0, '%nw22\nr', '%nw22\nr', ':azb2ht38;58%Os0', '', 0, '?'),
('Hh', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/info.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/info.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c''sA;\\p', '"''M\rڼ1`''_Q7si油', '', 0, '?'),
('|~', 'wp-includes/sodium_compat/src/Core32/Salsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Salsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')6):', 'H0Lї?㞹.1MIe٣', '', 0, '?'),
('b|e~', 'wp-admin/css/customize-widgets.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+`viӟ)', '<|#ʴnѓӊI"I\\J', '', 0, '?'),
('alV?f\Zё', 'wp-includes/IXR/class-IXR-server.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-server.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l6(-??]', ')Bch5##"XDŪ^', '', 0, '?'),
('\0hKf\0', 'wp-content/plugins/wordfence/images/forward_enabled.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/forward_enabled.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U\0/3e4e', '0Q7018ު9-z9ؽqSrĒP', '', 0, '?'),
('2E5X6fB>K', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=[R4\n2TY9В6', '"I?]E-7A\n=,Bp\\9w#', '', 0, '?'),
('0F3XfD:', 'wp-content/plugins/elementor-pro/modules/forms/classes/honeypot-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/honeypot-handler.php', 0, 'PST=O/V^;O', 'PST=O/V^;O', 'e]k!HU[.nZiZzi\\', '', 0, '?'),
('H06', 'wp-admin/images/browser.png', '/home/binawebp/omsrislb.my/wp-admin/images/browser.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K\\b$F', '&$ĉ9~_SH_̓%L''&', '', 0, '?'),
('_jw6', 'wp-content/plugins/elementor/assets/js/container.cb1e834c5aad68e9c908.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container.cb1e834c5aad68e9c908.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p?D2', 'B:y	ղ,G\Z,;_U', '', 0, '?'),
('8(\ZjZ]}', 'wp-includes/js/jquery/ui/effect-pulsate.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-pulsate.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ՀʱC\0(IW', '"T>ݾG(jЬ;_2A''{', '', 0, '?'),
(' ;P637PUF', 'wp-includes/blocks/comment-content/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v%]K', 'U֑w@,m1ŴC,"FYjk', '', 0, '?'),
('''x5|$A', 'wp-content/plugins/elementskit-lite/widgets/image-box/image-box-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-box/image-box-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7Y;2AAv', 'rbŴE~. ]Pjj#3`', '', 0, '?'),
('4ľ9f	Ήt', 'wp-content/plugins/elementor/modules/elements-color-picker/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/elements-color-picker/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܵIF2{', 'Í3Ժs*ҋ8ƯFظ*X]}', '', 0, '?'),
('7AE"wg7?!', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('9Gn"QH', 'wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZЏ\Z(P}', 'dc_|[Nqztvp!RUw', '', 0, '?'),
('@*SkA@\Z.Sr', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/jquery-1.12.4.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/jquery-1.12.4.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^{ZUX', 'Np[s"`A_ۺs(d3', '', 0, '?'),
('I<>Ekh:9', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/DefinitionParameterResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/DefinitionParameterResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'au\\h', '92=PC"q*5''@C.', '', 0, '?'),
('N02>ņh3', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-new-interface.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-new-interface.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N\nFG{', '8ԫ[z`U$)3HVP>9', '', 0, '?'),
('P,\rS>̘}', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFolderException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFolderException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J#TRx@$SBH', 'xE''B=	3xI5a9XL\\ſ', '', 0, '?'),
('R`!H´H"6', 'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o3', 'R,`LWxjǽnPy', '', 0, '?'),
('US\rBc>\r', 'wp-includes/blocks/latest-comments/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ow]Sp?O', '2֞>ܠ si1B^\rIP6w', '', 0, '?'),
('XRev OU', 'wp-includes/blocks/quote/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''cq"<(M]', 'lk\ZR։OBt8+ij!0', '', 0, '?'),
('Xg5(=c', 'wp-includes/js/tinymce/skins/lightgray/img/trans.gif', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/trans.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7I 1FGuj^', ' ûͥJOmO:ϙlW5', '', 0, '?'),
('e\na%oE', 'wp-content/plugins/elementor/assets/css/widget-progress-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-progress-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wqN/]xN', '#hf5G>}2rSKdȗ|\\37@+u', '', 0, '?'),
('gdзnX', 'wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wMEs<Ȏc[', 'adBtVVuMmÝ''bm1Si2', '', 0, '?'),
('pt_ Y7LKt', 'wp-admin/css/deprecated-media-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sr\rIsL', 'Uِ1mݨ:0ܒ>', '', 0, '?'),
('}9jKc`S', 'wp-content/plugins/elementor/assets/mask-shapes/triangle.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/triangle.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4''9k', '[[1KA~R*pW1qꄐ\rDf', '', 0, '?'),
('ZtStM', 'wp-content/plugins/elementskit-lite/modules/megamenu/options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{jndpy8K', 'Bڊ2VH\ZtR@`FSq`)', '', 0, '?'),
('TDFK1', 'wp-admin/css/media.css', '/home/binawebp/omsrislb.my/wp-admin/css/media.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\n@Y! _', '2\rPLB3C6	QP0', '', 0, '?'),
('f_p''9q', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ImportNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ImportNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''g`dY>', '5"|RObh9.;MՒ|', '', 0, '?'),
('\n!9VQs7=', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/comments-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/comments-template.php', 0, 'E;\0M&', 'E;\0M&', 'ϋtT.<''Zq)d''Y', '', 0, '?'),
('+i=@{#K', 'wp-content/plugins/wp-optimize/templates/notices/cache-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/cache-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȷo^Rg', '͋qg3 $ͬ8', '', 0, '?'),
('FAYq]4', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photomorph.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photomorph.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tAn/', 'CR7d2)Q-E)?|=', '', 0, '?'),
('/GΞӶ[ǜC', 'wp-admin/js/gallery.js', '/home/binawebp/omsrislb.my/wp-admin/js/gallery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':kvT''nd', 'y=]\Zs]jp̛ׅ6bva', '', 0, '?'),
('gA&b$rj\0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/diff.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/diff.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'شͣ4?Dr', 'R,DƟcµpw=	\Z<k', '', 0, '?'),
('[/9}`:wP', 'license.txt', '/home/binawebp/omsrislb.my/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/)>y,ܐJ0S', 'J+pPJ|`NUoa7%nfV3', '', 0, '?'),
('vK:ZF', 'wp-includes/blocks/site-tagline/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"r38ߟ', 'ŲuΑu- xmoC\0/#', '', 0, '?'),
('t)', 'wp-content/plugins/elementor/core/isolation/elementor-adapter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/elementor-adapter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I;\ZbA}l', 'ݣD(mE-aEc"5JNr', '', 0, '?'),
('7%̬&', 'wp-includes/css/dist/block-library/common.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|dOAp', 'HiK_&5hOqSѨYIc\r', '', 0, '?'),
('\r݅#cq -$', 'wp-content/plugins/wp-optimize/optimizations/pingbacks.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/pingbacks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}3M\n7ח', '9H9K9&B2$)tWC߆(6', '', 0, '?'),
('\0.}fwA', 'wp-includes/date.php', '/home/binawebp/omsrislb.my/wp-includes/date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϿNae\\E', 'CRH<fT|Ϫ/"Φh$', '', 0, '?'),
('F	TI7', 'wp-content/plugins/elementskit-lite/modules/widget-builder/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H?U	+₠\\', '2JVCQ2ؑ/\ruu7HK5', '', 0, '?'),
('GO,,穟', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Z%8|e-B', 'ebvTK-{	<P)#', '', 0, '?'),
(' /x{(', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elm.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elm.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˳q&H`~-ȣ9(', '?9OA#浗\ZF(', '', 0, '?'),
('//ʾgb{1', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-rating.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-rating.php', 0, '$wg3.c/', '$wg3.c/', '(5.X8ԑ,N\\\nF', '', 0, '?'),
('0ɜ.Sp,', 'wp-content/cache/wpo-cache/omsrislb.my/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('1	$@aZ?)I', 'wp-content/plugins/elementor/assets/js/editor-loader-v1.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v1.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"ιB <', '3$+c&?5bB>/kln K*wA', '', 0, '?'),
('8ٮ{pT(65N', 'wp-content/plugins/code-snippets/php/class-upgrade.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-upgrade.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BlB8rx=I', '\ZDSGӺ4\r;g9Oł_DI', '', 0, '?'),
('P0kWZK', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z<_Չ\\&LB', '<TT\ZP^̬Ԥy;d1\n', '', 0, '?'),
('R%0i1V%', 'wp-content/plugins/elementor/assets/js/editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7ʺ\r\\''+̺\\ ', '"FV"#%6\r$|]&pB9_s', '', 0, '?'),
('[QH"pS1Ȫc', 'wp-admin/images/arrows-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/arrows-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' Q}ydb#6', ',c˿\Zi(~)''8[A/Ix', '', 0, '?'),
('[QG`|	Eq', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/square-scale-up.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/square-scale-up.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LB-oCKKk', 'fhx(47Pw<)s', '', 0, '?'),
('\\l/S	ʨz', 'wp-includes/blocks/template-part/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%Rǽ.ϴ', 'Sv\nAt&2AU!u£g\0', '', 0, '?'),
('o2lY-؍x', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-date.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-date.php', 0, '`}Qj', '`}Qj', 'o,Uz̕-I<<`VlGz"', '', 0, '?'),
('q1 #dBܑ\Z', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SandboxNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SandboxNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R*m\nP||D', 'Gpl\rܤ)]-TҰOE', '', 0, '?'),
('x++\rP', 'wp-includes/blocks/footnotes/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f`)_', 'D邴]=呔2Uh{HE8A_', '', 0, '?'),
('I1\\T-q', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(EϦ"=', '\0	̀poDWT<JjD', '', 0, '?'),
('\0O\Z', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.fc30c6cb753d4098eff5.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.fc30c6cb753d4098eff5.bundle.min.js', 0, 'MgŤWQ\Z[Q', 'MgŤWQ\Z[Q', 'q9''gm8R2ܔfMX\n.', '', 0, '?'),
('993%', 'wp-includes/blocks/comment-date/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e\08/>YF', '½2}8ezF>X:f\0Y"Mꄴ', '', 0, '?'),
('[ixTq~Wve', 'wp-admin/network/plugin-editor.php', '/home/binawebp/omsrislb.my/wp-admin/network/plugin-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8@_vaє͓N|j', '<	gKKԆ{ȑnVỦ\n2', '', 0, '?'),
('F~yc7v-', 'wp-includes/js/customize-preview-nav-menus.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-nav-menus.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mQ\Zy*', 'k7(W^D&ָ7}8&Gz', '', 0, '?'),
('86(!', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P{;v0t\\]g', '&Z=45DE-KUYh<)h"q-', '', 0, '?'),
(' ~kѯ}B{', 'wp-content/plugins/elementor/assets/css/editor-preview.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WV;^MM', '1xid\rU*F.MW%P.œ', '', 0, '?'),
('ހ, m+_B', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/AnnotationBasedAutowiring.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/AnnotationBasedAutowiring.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^+	', '`P+~୉}O3q|*sc;.', '', 0, '?'),
('@4vfV:|', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing-functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*wjBQh', 'gLg+ZڱԵР+;5$C', '', 0, '?'),
('ȕoy^z', 'wp-includes/blocks/image/view.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"z_&![', 's}l68yau4}QK0s#', '', 0, '?'),
('G1ƀ\0', 'wp-content/plugins/elementor-pro/modules/popup/document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/document.php', 0, '_0k ', '_0k ', 'ʷ+8DX+z!uEZZ`', '', 0, '?'),
('Lx{s5', 'wp-content/plugins/elementor/assets/js/nested-tabs.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|[67', 'GMtQgO8c_VZ7Vk\0', '', 0, '?'),
('䑖w7:''h*', 'wp-includes/js/dist/vendor/lodash.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/lodash.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C`]1~', '׳[p:	zKQWwt}HI(	', '', 0, '?'),
('i%o)#\\', 'wp-includes/blocks/image/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p.spBvL''?za', 'Kwx#u>sNa<UNy', '', 0, '?'),
('xbu;', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/OrBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/OrBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '88X', '%|qEQbѬOZٽ', '', 0, '?'),
('WЛ~L+c', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2Rc.}3\\', '$872\r62QqbSke/c}', '', 0, '?'),
('2:', 'wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b4''&', 'ۼ4P''hNa>E5ఛ', '', 0, '?'),
('uvf ~', 'wp-content/plugins/wordfence/modules/login-security/css/login.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/login.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZeBϖajo', '_j1\\Qv4|%it9|:Fk4', '', 0, '?'),
('@_gU9', 'wp-includes/Requests/src/Auth/Basic.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Auth/Basic.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wY{ӓ1}`o', 'o,،bD''&<؟	e]''=\n', '', 0, '?'),
('[-\\\Zw', 'wp-content/plugins/code-snippets/php/front-end/class-front-end.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/front-end/class-front-end.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0pcDhՅ.', '	ӓi 6*4>rM"Kژ9', '', 0, '?'),
('PEJ', 'wp-content/plugins/elementor/data/v2/base/exceptions/error-500.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/error-500.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*ǂe=ã&s', '`5i&̻AFl5rZGi(', '', 0, '?'),
('Z&\Z0\rX', 'wp-content/plugins/code-snippets/php/class-snippet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-snippet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bp+ܽ\Z7y', '=gJj_1w!K/T*h/i`h', '', 0, '?'),
('\Z-x7(A4', 'wp-includes/js/swfupload/license.txt', '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('T\0j\Z9թ0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-css.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-css.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0cI@!]H6,', 'ƄFǋdÍhkС}bY\Zf2\\O', '', 0, '?'),
('fWpOA!', 'wp-content/plugins/code-snippets/php/deactivation-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/deactivation-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!?W\nYj	gF', '`2f\Z:	jpP9^4ފJ', '', 0, '?'),
(',:3չC@~', 'wp-content/plugins/wordfence/modules/login-security/classes/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aabvr', 'C''r9@Kކtw#@k', '', 0, '?'),
('1W;cN"u', 'wp-includes/pomo/streams.php', '/home/binawebp/omsrislb.my/wp-includes/pomo/streams.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aAm@4q#T', 'mCؙ~{ҁ@F}˗nɨ', '', 0, '?'),
('<jkhC3w', 'wp-content/plugins/elementor/assets/css/templates/lightbox.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/lightbox.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '41Eoqd', 'yp_4$"Ӈ?a繨}', '', 0, '?'),
('B<Óe̅F"0$\\', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/TagsInput.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/TagsInput.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M._t!ƻ,', '{	p''bDXiY)ĥɃS', '', 0, '?'),
('Bf=-k\Z%~tL', 'wp-content/plugins/elementskit-lite/libs/pro-label/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-label/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aRQTx%\n#HVҌu', 'bkQ±&''J(', '', 0, '?'),
('JBGT;,lT', 'wp-includes/images/smilies/icon_exclaim.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_exclaim.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':\\>5\0rsg', 'LɵHA(xʓ2EP%	##5', '', 0, '?'),
('NOB\0as2', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/dynamic-value-provider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/dynamic-value-provider.php', 0, '-L\Zk)4lmsL', '-L\Zk)4lmsL', 'ЧH~gJDb8\0-e', '', 0, '?'),
('V^3m6._P', 'wp-includes/customize/class-wp-customize-background-image-setting.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-background-image-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#挷[^7,', 'lxE&35̅Nj!%Ƹv', '', 0, '?'),
('clze؇', 'wp-content/plugins/elementor/modules/checklist/steps/set-fonts-and-colors.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/set-fonts-and-colors.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/T-n|(', '4XоNz\0s_,\Z', '', 0, '?'),
('e64U-xe', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/array-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/array-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')_1{Z', 'Ie:enMlLT{XnwD', '', 0, '?'),
('idOҮa', 'wp-content/plugins/elementor-pro/modules/screenshots/screenshot.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/screenshots/screenshot.php', 0, '>~hx\Z#i', '>~hx\Z#i', 'jV)!Wwm\nu(', '', 0, '?'),
('q2trۗ,]s*r', 'wp-includes/blocks/audio/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CuȀc4B)', '(4KqbQX{d*P\nz', '', 0, '?'),
('r(c6{', 'wp-content/cache/wpo-cache/omsrislb.my/services/mobile.index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/services/mobile.index.html', 0, 'Dryttmzb', 'Dryttmzb', ')NKzpʮ5^vokc', '', 0, '?'),
('t9֌}', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-color-picker.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-color-picker.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}O\r|Sh}', 'EVKZb۠qRUS\\Z3F ', '', 0, '?'),
('Ҿ垈H@}', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForLoopNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForLoopNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$	WTf(', '@m"ҭ\Zs19(n~78(j!wVE', '', 0, '?'),
('Է	Q.dV', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/object-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/object-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tXbS21F', 'QjP''p^\ZІ,8.UrGc', '', 0, '?'),
('7M3$', 'wp-includes/images/smilies/icon_question.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_question.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[-\0''WF', '7b|6#9/?x~[%t', '', 0, '?'),
('GS=', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell_cabal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell_cabal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd|kvq-7ڄ', '=\n[nh{6Ｒmj:', '', 0, '?'),
('2@kw>K2', 'wp-includes/feed-atom.php', '/home/binawebp/omsrislb.my/wp-includes/feed-atom.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[Cm^q', 'z&jS9\rtͬ^#|o򳠰', '', 0, '?'),
('H\0ۙhC', 'wp-admin/css/colors/ectoplasm/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WX^C1϶>:&jC', 'q$rA,L7UAʓ^Ӗ', '', 0, '?'),
('wtH-s\0n', 'wp-includes/js/wplink.js', '/home/binawebp/omsrislb.my/wp-includes/js/wplink.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'URw/!', 'xm%׌J ¡^ڝ{q#X!慴R', '', 0, '?'),
('14+l', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-stock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-stock.php', 0, '=P/V=', '=P/V=', 'mgeyuBv_!+Lq<~', '', 0, '?'),
('=֬H@-i', 'wp-includes/css/admin-bar-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jH9G%sm<', 'VvMu\\0F0-G', '', 0, '?'),
('p6ɨZL', 'wp-includes/blocks/widget-group/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/widget-group/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^1; :ʊ', 'Y^Ġ0ׁsAєn-dvIO', '', 0, '?'),
('ƨ\\Mr}yґ', 'wp-content/plugins/elementor/core/logger/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?PrNSq', 'Nd.h(ncxU@d`V''ԂN', '', 0, '?'),
('>)&8ĻD', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SpaceshipBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SpaceshipBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aZ@ú!d`', 'b{GE\r3~1EA-8Tئ', '', 0, '?'),
('(BA!', 'wp-includes/theme-templates.php', '/home/binawebp/omsrislb.my/wp-includes/theme-templates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ЏڛSemđTt', 'ͬ:v<QP+]+|#l', '', 0, '?'),
('cEJ_#W}[', 'wp-content/plugins/elementor/modules/compatibility-tag/views/plugin-update-message-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/views/plugin-update-message-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QI@!#!6;', 'p/QLv̶ٚڼ̳޲ZC\0+a', '', 0, '?'),
(':vH', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/get-help-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/get-help-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R\\|\ZO\04', 'ePD̊i1hO\\"eQu', '', 0, '?'),
('SMBQ(%*', 'wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-promotion-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-promotion-menu-item.php', 0, '3]OP*\Z02', '3]OP*\Z02', '\ZGJg''Dg-y5z', '', 0, '?'),
('\Zro', 'wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p[i{', '=.0<1D-,3_.db`h|', '', 0, '?'),
('-''fߕ?X:4\r!', 'wp-includes/blocks/table/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IbFsymPpI/	]', '?g(ջ¢pRg&XWkt[{', '', 0, '?'),
('hLJHX#0', 'wp-content/plugins/wordfence/lib/wfUnlockMsg.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfUnlockMsg.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K'']~Dw', '<_ѣ!U4<vŠr', '', 0, '?'),
('+{V3;', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O%<^:Ѐx', ')sr5h	8ٱgk5tk)R\0', '', 0, '?'),
('<c''6?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/graphqlschema.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/graphqlschema.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<U', 'ݜ`Aʸw94,M8%p4G', '', 0, '?'),
('b`3n', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''\\r+7', '9ڇ~=q+Y2jѦ', '', 0, '?'),
('^''q0', 'wp-links-opml.php', '/home/binawebp/omsrislb.my/wp-links-opml.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʽ2) )s', '{7ѦZ#Jan\\5/', '', 0, '?'),
('	2', 'wp-content/plugins/wp-optimize/images/features/advanced.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/advanced.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`gPTx"%', 'OvK+\r[\Z@nrYQc-I', '', 0, '?'),
('-M!!e#T	0', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*oi]R( ', '=m?nJ:kιoq@OC֊X', '', 0, '?'),
('%nTߒ	^gXΰ', 'wp-admin/js/inline-edit-post.js', '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-post.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&H/|5PlCA', 'zIKzoNԓ\Z6cv.!', '', 0, '?'),
('-(Yc<M ', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*ԟ ׻#', 'aq,قGkB"g\Zeϓb?eM', '', 0, '?'),
('0y¥êG', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|6l[*', 'n\\h	~	ve5(', '', 0, '?'),
('3aDwPq', 'wp-admin/includes/class-theme-upgrader.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-theme-upgrader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':D g3>$Y\\', 'D?0]I#?+Zs!}', '', 0, '?'),
('4g)X{-', 'wp-content/plugins/elementor-pro/core/modules-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/modules-manager.php', 0, 'Źk>#^', 'Źk>#^', '\0_sO߬nAJ#vM\r:W[O', '', 0, '?'),
('6ZUb2:', 'wp-includes/js/dist/style-engine.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/style-engine.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')m[[sl3NW&', 'O?-U*H4Ӕqk\\2>vK', '', 0, '?'),
('<3)ݚd', 'wp-content/plugins/elementor/modules/generator-tag/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/generator-tag/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9|r&#r', 'ꔋ;3o+ykC-nj5~B', '', 0, '?'),
('V\Z''[#(\ZG', 'wp-content/plugins/elementor/assets/shapes/clouds-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/clouds-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ƞl''[.V', 'HWmLلǨdޟ)㰳X', '', 0, '?'),
('_\r(q<^6G_s', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-price.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-price.php', 0, 'T\0}O', 'T\0}O', 'J&y\ns8b^0', '', 0, '?'),
('c"Pf|J', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>8f]Kd', 'ߺL%#\Z)CtCfo6A8\0', '', 0, '?'),
('j@b_Eݎ\rdnq', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/creating-dom-objects.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/creating-dom-objects.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pSa?_', '=R10w@}''Mvzk/#x', '', 0, '?'),
('m`5\n+7', 'wp-includes/blocks/search/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=ѿȆz\0', 'K)/J9.s%txto', '', 0, '?'),
('t}Kq~G˘', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/recent-posts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/recent-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A	h_\0', 'Dz|m;{S/\\QĢ$yO', '', 0, '?'),
('L^PSF֫f`', 'wp-content/plugins/wordfence/css/activity-report-widget.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/activity-report-widget.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J^x;yc', 'ӡfaMWv+W%}`DN', '', 0, '?'),
('vs>4$2', 'wp-content/plugins/code-snippets/js/types/KeyboardShortcut.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/KeyboardShortcut.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%5B 7	l#9', 'C\r+V0NŧdO''CPu4', '', 0, '?'),
('٪%޿V', 'wp-includes/blocks/accordion-heading/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PEo*~%+', 'mWXplv~K|168k', '', 0, '?'),
('Q6Ơ5cԪ', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/wp-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/wp-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':)Ӏ\nt', 'xZi/7)ALO"UR', '', 0, '?'),
('\ri_%%2\r(T', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B!Q->pUA9', 'oF^g\ZN:\ZN^\nsaR{2', '', 0, '?'),
('3<>\Zb', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '56y䢴', 'o<@H \ZQJ*9JM', '', 0, '?'),
('n&n!崬', 'wp-admin/css/site-icon.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-icon.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^݈ǅ~g', '0[w!hb4Q,uLW', '', 0, '?'),
('"O~', 'wp-content/plugins/elementor/core/upgrade/task.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/task.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sџ!rG(a', 'XAЛq&E''Jx.\nms4 L', '', 0, '?'),
('­{e', 'wp-includes/blocks/comments-title/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v#>:u p', '3igRʈ(L:ʛ܋-@˪G?\08', '', 0, '?'),
('XaІv\Zj.', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-in.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-in.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Tp0_u', ']ؒ	zb&P}TޯD,y', '', 0, '?'),
('?-%\nfS', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-command.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-command.php', 0, '$]M', '$]M', '"N%r̪e0ohf\\3I', '', 0, '?'),
('|''$q', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vC}44jAO(', '\\%-CI%JHTy(ܞ', '', 0, '?'),
('Qe@W''1b', 'wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{jϸO"1', '%w赐ժs{-;睖)`AY\Z\nA(zڲ', '', 0, '?'),
('{{8B%@\0x', 'wp-includes/blocks/post-featured-image/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HBk5nϲ', 'ťX>e9WYeS>!.4', '', 0, '?'),
('\rG·떇0G', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-date-time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-date-time.php', 0, ')90z>P\Z\r', ')90z>P\Z\r', 'ЬR6G:VEy0,b匿qʰ7', '', 0, '?'),
('EX|T', 'wp-includes/blocks/media-text/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';Kaf''"g', 'ڒ\ZkH?<uHu&]P', '', 0, '?'),
('rqtvҰM', 'wp-includes/Requests/src/Proxy.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Proxy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZLpyc', '\\WĘ:%W|i!wVm-V', '', 0, '?'),
('bⱯJE\r', 'wp-includes/js/dist/script-modules/block-library/query/view.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/query/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DjܒcYT', '\rɦJXC+ߐGb˄	<ދ05', '', 0, '?'),
('JΤP`<SS|', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/radio.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/radio.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(LRX u\0^', ':	P޳Z}=]h{ds\ZV', '', 0, '?'),
('םkŐC<', 'wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w}j75', 'vPy4P{S iLEe', '', 0, '?'),
('ޱvc', 'wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php', 0, '篱4$L1Z6͖', '篱4$L1Z6͖', '|!.HT0Q2UL^SDa;', '', 0, '?'),
('-|*4	OCrW', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-yaml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-yaml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ti	9R''H9B`', 'ֹƥ<nB !	cH&', '', 0, '?'),
(']jl''/x5', 'wp-includes/js/wp-sanitize.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-sanitize.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']U)R3=', 'b-)ǯ$z&cѝ;ʢr', '', 0, '?'),
('W{\\,Yu', 'wp-includes/js/jquery/ui/effect-explode.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-explode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%Q:DA-', 'v5=%BQb*׻uc', '', 0, '?'),
('71}\n', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '12+;FнNM', 'w"*5U T@nyȳ^au''', '', 0, '?'),
('?', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ly#U', 'p"78Bstdޕ&b', '', 0, '?'),
('$SK Eכ', 'wp-content/plugins/elementor/core/editor/data/globals/endpoints/typography.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/endpoints/typography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P!$	7', 'r嶯4;,t', '', 0, '?'),
('vzG٧g', 'wp-includes/html-api/class-wp-html-open-elements.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-open-elements.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jd_Gs+', ')7c4n@#5[MV1-2M', '', 0, '?'),
('+M66\0Cg؍%"', 'wp-content/plugins/elementor/includes/admin-templates/new-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/admin-templates/new-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~w;o:', '"#j.H}Ph/2𑍞', '', 0, '?'),
('$GE', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-terms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-terms.php', 0, 'k.?բQ2 ', 'k.?բQ2 ', 'S`#Hp!?\ntAWo=j', '', 0, '?'),
('$DRoQe', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Source.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Source.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pؕ8 !9.', 'N[MsBP1-xs}{c#TkJ22w', '', 0, '?'),
('2X69G3\Z+}A6', 'wp-content/plugins/wordfence/views/waf/option-whitelist.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/option-whitelist.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '. #v}', 'i$h}wsX2c', '', 0, '?'),
('5\rk', 'wp-admin/js/color-picker.js', '/home/binawebp/omsrislb.my/wp-admin/js/color-picker.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_;\Z5', '\nmm^G&%\0SKmY2p#', '', 0, '?'),
('8t\nJ¸Q%,', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/CallExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/CallExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2!''-ѣS', 'N)ǞVFȟQ-m0kƚ^f', '', 0, '?'),
('8P5aĨ	', 'wp-includes/images/smilies/icon_wink.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_wink.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e?2i', '(V{VBko(`ZV	6', '', 0, '?'),
('9]ZC3\Z<5', 'wp-content/plugins/elementor/assets/mask-shapes/blob.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/blob.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1qDcpX8 \0', 'Y,ѝy«nZ*_Y', '', 0, '?'),
('H#ލ$YC|CZ', 'wp-content/plugins/elementor-pro/modules/social/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/module.php', 0, 'c0Ll', 'c0Ll', '&l1cJJ8_\r :ǘ', '', 0, '?'),
('LR^-/Fޜ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/string_loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/string_loader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o\0sgɬ', 'E~Ld7z~CҼ', '', 0, '?'),
('RhYـOěl\Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-searchbox.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-searchbox.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	?''b̉', 'eb<,V{ҹwe@T_W', '', 0, '?'),
('Y\nYT|0@Qv', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/phpcs-ruleset.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/phpcs-ruleset.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'يj{|DuDnBT', '%x\Z,Hi*3W=CpB(', '', 0, '?'),
('Z/_b܏!', 'wp-content/plugins/elementskit-lite/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L}ݩ?kmkC', 'K7sS˵	z\r\0@HX', '', 0, '?'),
('f~kc(', 'wp-content/plugins/wp-optimize/templates/database/tables-list-after.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/tables-list-after.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`=W\0x', 'y<dZ1&qF<fQ|dZɼ`c', '', 0, '?'),
('mem9D! R٦', 'wp-content/plugins/elementor/assets/js/nested-accordion.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jEZq=C	', 'sfuĲwi4,,Sjh[;>8', '', 0, '?'),
('t\0\ZXs7', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9>vϩ|k', 'f%o	#]/ZiJV%', '', 0, '?'),
('wISU8+$', 'wp-content/plugins/elementor/includes/controls/raw-html.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/raw-html.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lTj$m', '/oyvj|Y6J;r`_]', '', 0, '?'),
('y85æb', 'wp-admin/css/colors/sunrise/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@2I	.$8Wިz', '~5\n*fOeVkt<AQ	', '', 0, '?'),
('uHGZ^ꐿw', 'wp-includes/html-api/class-wp-html-token.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-token.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h4UkulH#c', 'T-QJI|_VP.r.ja]', '', 0, '?'),
('	wê', 'wp-includes/Requests/src/Exception.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y', 'ZOO]U@,j@mX-k', '', 0, '?'),
('wtz	', 'wp-includes/blocks/term-description/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v\r', 'p+[-6X.;TLd-''', '', 0, '?'),
('uxJ®Fyp0', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/templates.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/templates.js', 0, 'UM_c9\r', 'UM_c9\r', '$\n!>MO< Hb24kb', '', 0, '?'),
('wpmTc', 'wp-includes/blocks/page-list-item.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E@cc(u<', '++W~ł`?\\!#e~R', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('~ZO%$', 'wp-content/plugins/wp-optimize/optimizations/trackbacks.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/trackbacks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SӤԑў', 'h\r<P<AIZb\0tQ̭k', '', 0, '?'),
('%h3Dh', 'wp-content/plugins/elementor/core/base/background-process/wp-background-process.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-process/wp-background-process.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&6{`''ܼ', 'vr44KݕxW*jlr%T', '', 0, '?'),
('d\0Zl:', 'wp-content/plugins/elementor/assets/css/widget-heading.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-heading.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sg(9c7=r<', 'ZS4Gٳظ\ZlkKo/~t848L]|', '', 0, '?'),
('ﺇHAU', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/search_noise.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/search_noise.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O4kiqm', 'a%\0gUUE\Z׫2˵OS0c', '', 0, '?'),
('<)"vY4', 'wp-includes/blocks/verse/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v<_55ڬQ785', '+.D[7 U=aI-H\0w', '', 0, '?'),
('PQE|E}7+', 'wp-admin/includes/class-wp-filesystem-ftpsockets.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-ftpsockets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	}<Fm޿\nW', '5S;;Mb>ʙ#Yhm\Z', '', 0, '?'),
('iɽ|U', 'wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z'')0<j', 'o.*e̲_rgۺ>&=', '', 0, '?'),
('U$\\*1^S', 'wp-includes/js/jquery/ui/effect-clip.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-clip.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S\0j,ւC', 'YVwKJ-uOT{', '', 0, '?'),
('*_It:.', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lucene.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lucene.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd>~?Dm6', '9%6j\r4MFw\\,2JOyq', '', 0, '?'),
('PJt1z', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!EP]ǡ;', '<\0\rIB="P8D"L~I[', '', 0, '?'),
('_ \0*O', 'wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2k Fm=Pu8', '^<\ZC/aas|Vs:', '', 0, '?'),
('B3\rqelL', 'wp-includes/blocks/query-no-results.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-no-results.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P^>\ZX', 'OOnlRbGxA', '', 0, '?'),
('P\Z/l%', 'wp-includes/js/jquery/jquery.hotkeys.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.hotkeys.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jhIQLZA$UnH', 'TfRMS9ºMDRRN', '', 0, '?'),
('ɗ2E5A', 'wp-includes/blocks/query-total/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z?%yjP', 'g5y YRe|՞I''n$RD {é#', '', 0, '?'),
('\068e=M=ׁ', 'wp-content/plugins/wp-optimize/js/wpo-images-view-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpo-images-view-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VLbr=e', '\r!IԼ/ոÔvN҉NֻuwR', '', 0, '?'),
('\0 k~U5T', 'wp-includes/widgets/class-wp-widget-text.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g4>JWvmNa', 'DpWÿϴbNԒ\\G]=ũ7hR', '', 0, '?'),
('\0qZ3ɬ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/expect.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/expect.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZK2nsc>uA', 'QY78SАlTFȯpc^<', '', 0, '?'),
('\n%f[!aErtgi', 'wp-includes/images/media/video.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/video.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uhq', 'DBUMiOb,e=W{', '', 0, '?'),
('˟\Z2tN(\r', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uIB&n	02', 'W$EٸM\Z]\ngb,]+~}', '', 0, '?'),
('΅(u!IM', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Passthru.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Passthru.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P$63W''\0|zcn', '#obJ wqU\Z6C', '', 0, '?'),
('Ӡ_Q?#', 'wp-content/plugins/wordfence/images/logos/shield-response.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-response.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_\nو1:/(d%܅', '\ZjtYaW=x![4H!|', '', 0, '?'),
('%CB*rQP', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ay\nYn2!', 'ShVZt^~͛\n#$֒\r5V', '', 0, '?'),
('&S짿o$0n', 'wp-includes/author-template.php', '/home/binawebp/omsrislb.my/wp-includes/author-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CWb=qڇ`w', 'ʝ\nc_^n`jPkκ༖4s', '', 0, '?'),
('&u&%Z`@', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/elements_kit_logo_black.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/elements_kit_logo_black.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hGK(	Ո\r', 'sN8d5<@;!	%)', '', 0, '?'),
('*կShAUW', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-14.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-14.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3nz؍J', '0Uνvj4]Av', '', 0, '?'),
('0~Gt{D",r', 'wp-includes/SimplePie/src/Cache/DataCache.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/DataCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&P$v>', 'wajJQ"Nj㹠H,e:', '', 0, '?'),
('61eL8]OD#8', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/addClass.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/addClass.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~Q(iHEܦ', '!?($)xT+x-p]/', '', 0, '?'),
('72~H-If', 'wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-grid.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-grid.php', 0, '^o~M;<\0ik', '^o~M;<\0ik', ',yI`en480s''pIw''px', '', 0, '?'),
('?8RmТE7h<', 'wp-includes/blocks/buttons/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6VOr"\n\n', 'Ԡ"S\\gZSl+?[\r62f', '', 0, '?'),
('G|$p֠+(', 'wp-admin/js/tags-box.js', '/home/binawebp/omsrislb.my/wp-admin/js/tags-box.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g4ieڠY,׃', 'u,tsn`b$DrFRSrґ^"', '', 0, '?'),
('HQ/>TTе', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/CallableResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/CallableResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ޤdkiʡw\n', '_X*4+;2+pר5ք{', '', 0, '?'),
('L ڎ!\nX~', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/union-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/union-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']U!B\\˛"Q5', '^mk4	d6Oaz/شphUJ', '', 0, '?'),
('Qԁ27uL', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '13y1', '	}N	<vBS%s\\S', '', 0, '?'),
('RBpmZ;', 'wp-includes/css/dist/block-editor/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{<߲)>', '6#!dU0)#:X/l', '', 0, '?'),
('UAQ,Uq', 'wp-includes/blocks/pullquote/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5Jkm"~', 'ZQZ*-l@`NB2V', '', 0, '?'),
('qӣJ~F1O', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single.php', 0, 'țL/;', 'țL/;', 'b@-	Rm[oeaPz0?r', '', 0, '?'),
('z,/	h8', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__destruct.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__destruct.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x\n\\	Wݙ˪m6,', '+piQ|嘱W)(vVyxV', '', 0, '?'),
('ojyV', 'wp-content/plugins/wordfence/lib/menu_tools.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':,sA	¹w', 'RYӏb&b?`{S\Z[>ndW+*', '', 0, '?'),
('T}^HfN7q', 'wp-content/plugins/elementor/modules/ai/site-planner-connect/wp-rest-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/site-planner-connect/wp-rest-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''k-OSQ''y', ']X^Oט/cUž5o"";', '', 0, '?'),
('Kɮ', 'wp-content/plugins/elementor/assets/js/accordion.7b5b5744bdd225280eca.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/accordion.7b5b5744bdd225280eca.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NwD8m}_', 'G/4Jk(q}U΢֙{Y', '', 0, '?'),
('5oVD]', 'wp-content/plugins/code-snippets/php/class-licensing.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-licensing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϻRb,9ץ', 'UUǧ02_!8pq', '', 0, '?'),
('Cas]n/', 'wp-includes/css/dist/block-library/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a;''ʸ', 'oQ{C9o䄖iLqx	^>', '', 0, '?'),
('CٜٜK_', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/CoreExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/CoreExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':TkHF}1)', 'iY+*[ 8K5\nN`FmՐz', '', 0, '?'),
('0=o;', 'wp-content/plugins/elementor/includes/controls/groups/image-size.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/image-size.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'be@TDV K;', '\\ygsHС(AH<+**\n', '', 0, '?'),
('Ѻ"P5^U\Zi', 'wp-admin/index.php', '/home/binawebp/omsrislb.my/wp-admin/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7jR\nX', 'C?cwpo4mz \nX', '', 0, '?'),
('mz4LK', 'wp-admin/images/xit.gif', '/home/binawebp/omsrislb.my/wp-admin/images/xit.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?`pR,_p', 'A\0|=fJS<|', '', 0, '?'),
('wFȶ# ', 'wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ej-=\n', 'WOT6W[ܺ\r$xC^', '', 0, '?'),
('wSk\ZP2ƀ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/StartsWithBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/StartsWithBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0z٣ΥCN	', '/וqBs٧lB\Z3(@', '', 0, '?'),
('AG,<', 'wp-includes/js/jquery/ui/effect-fade.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fade.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɋ%:wF5ژ', 'ND"x''3,3a\nVlE^`\n', '', 0, '?'),
(':\Z`gI >P)', 'wp-includes/assets/script-loader-react-refresh-entry.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-entry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '¡K)ayV', 'B"Oo	z)I@I"cIʞ3u', '', 0, '?'),
('ľlz\nơ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/css/extra.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/css/extra.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ѕqx{Ԓ_K', 'z(W?\r3`"vO%%^I]:J', '', 0, '?'),
('f5+p$6', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/getgenie-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/getgenie-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ÿb@dSRH\rn', 'ݸPai.GvV͐WX\nX\nW\n', '', 0, '?'),
('Ռo~^.O', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/RuntimeLoaderInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/RuntimeLoaderInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''Pr`', '^^>*ɩ\\WtڗC0KJ[c&', '', 0, '?'),
('t͕TX', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1UW}%K', 'mLވ\\5Iؚ̝%nbty\\&', '', 0, '?'),
('ݐjxӟvFP\n', 'wp-includes/Requests/src/Exception/Http/Status305.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status305.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eQ6)', ',<e/r$}S', '', 0, '?'),
('of$΄', 'wp-includes/Requests/src/Exception/Http.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l8ZZ͏', 'ЀnWa*!c!EφŅ>', '', 0, '?'),
('`\r uU)I', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`0*$Ґ՞0', 'Pog߶ĺNɖ˂sӣ3m{', '', 0, '?'),
('ph0TԢ0DN ', 'wp-includes/class-wp-block-templates-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-templates-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JIf6dr~:', '/σjd!&ZU"|*C<7', '', 0, '?'),
(';)VP26-', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/theme-support.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/theme-support.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e:rCZt', 'YUqvv\ZaTdwl6', '', 0, '?'),
('/tj\r?#', 'wp-includes/blocks/site-title/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?\Zjɛ', 'R+je,*6a,R_~OzWk(', '', 0, '?'),
('հ	̋ȲS', 'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(`]Vţ[^3', 'Fܑ t=Y+Yҁe۾Kb6W', '', 0, '?'),
('jۻ2"', 'wp-includes/sodium_compat/src/Core/AEGIS128L.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS128L.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ScsqAd+', 'M-׺fN*7`2JާO?=', '', 0, '?'),
(' n$q^qf', 'wp-includes/images/smilies/icon_lol.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_lol.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@s\\e|sˎD0', 'Ya^F_8ت23%j', '', 0, '?'),
('''^DIG1!', 'wp-includes/ms-site.php', '/home/binawebp/omsrislb.my/wp-includes/ms-site.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%`4{M"W', 'U7ǩ>-v\0P#q9', '', 0, '?'),
('(Ϲز', 'wp-includes/blocks/video/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6F`s|),"', '|	0$X5_=8ϟ4', '', 0, '?'),
('*Tu\r~m', 'wp-admin/css/colors/ocean/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9\n5HhʃB)l', 'gg\n}(}1|\na<!\Z4', '', 0, '?'),
('0-~\rS:p', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~RB''ۈ^`x', '1骞|/7\0V٭޽8', '', 0, '?'),
('1l< t~LUw', 'wp-includes/class-wp-locale.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-locale.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'З+z2̺k7', 'SV\rʵ+lInh', '', 0, '?'),
('9ktG'':l', 'wp-includes/js/dist/script-modules/block-library/accordion/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/accordion/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sw]dY-Cfp', '"ԛ351\ry7[~>&\Z>\r', '', 0, '?'),
('=,w\\7w', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/load.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/load.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|\rZ@4f?#', '}pf0f\riMy:69B]', '', 0, '?'),
('E-j1j\rE', 'wp-includes/registration-functions.php', '/home/binawebp/omsrislb.my/wp-includes/registration-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q<۾\Z7Mv', 'Kd_MF XX.,''T\\66', '', 0, '?'),
('MtA^B0D|l', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_skip.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_skip.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^GJآ=e\Z:30a\r', 'Wfe]dҙ9NP"Mc', '', 0, '?'),
('TqƳUW\nq<', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/setAttribute.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/setAttribute.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5?>%w|VBY', '3vvp#4)}Vpceks', '', 0, '?'),
('UFVq":6ҍ', 'wp-content/plugins/elementor/assets/js/notes.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/notes.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X$F>.<t', 'ڴ?ms3&\nUUZOc /N', '', 0, '?'),
(']oMseJ4', 'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yt䈵J', 'H(\0"\0h^\0u^۴!\Zl', '', 0, '?'),
('f rp(p$', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pbD@pG+', '*DZ>Bg&YY4(</', '', 0, '?'),
('hIB(ĉ	', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u[WӦDL', 'F=b¶cH', '', 0, '?'),
('*?\\ԒY[V{', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2afyݣe''', '^c_8j?hpGɁED', '', 0, '?'),
('Km}Q\r\n', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.d803ba1deaf96eb007fc.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.d803ba1deaf96eb007fc.bundle.js', 0, '__fS@T+\0l', '__fS@T+\0l', 'Z87Δ0p+,uhl6', '', 0, '?'),
('<xB', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eG}~%_	', '9&la4\0rX`k\0=#?S#j', '', 0, '?'),
('e-RȉL:', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9x;"\r', 'a̻U\nּ\ZrS:0#~΋T', '', 0, '?'),
('yKjǼ^=O', 'wp-content/plugins/elementskit-lite/compatibility/backward/walker-nav-menu-backward-compatiblity.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/walker-nav-menu-backward-compatiblity.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M)Zfbj', 'dɏ~}\Znx\0y߳<', '', 0, '?'),
('/bEx+TBe8fN', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{r㷴&;', '9LC:>R!✼L', '', 0, '?'),
('uQ{QnU', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/paypal-donate.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/paypal-donate.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɜn/ǭ9n', 'hҴ3SW;!DS\0	yLn-zU:', '', 0, '?'),
('2h6͒\r~', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=Q'',\093', '|"`!CelUt|#oH$', '', 0, '?'),
('X*^ϺR8', 'wp-includes/css/dist/block-editor/default-editor-styles-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(团', 'AoÙ#XC.ioM~0-l', '', 0, '?'),
('##Ցn\ndA\\e', 'wp-includes/blocks/latest-comments/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^^%Ron', '^ՏIH )Ma', '', 0, '?'),
('p?E^@''PE', 'wp-admin/edit-comments.php', '/home/binawebp/omsrislb.my/wp-admin/edit-comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}<?3_', '0"\0M".8S.8', '', 0, '?'),
('KK?ǫ<^}', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/phpcs-ruleset.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/phpcs-ruleset.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'يj{|DuDnBT', '%x\Z,Hi*3W=CpB(', '', 0, '?'),
('U\\aE', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[TU2x&^', '*R"P_poEFΒ31', '', 0, '?'),
('S X}AV', 'wp-content/plugins/elementor-pro/modules/popup/display-settings/timing.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/display-settings/timing.php', 0, '/G*z8bF', '/G*z8bF', ']ᷠflWY~DH&v', '', 0, '?'),
('I|>Zq', 'wp-content/plugins/elementor/core/logger/log-reporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/log-reporter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'жh^=', 'v5V$rz)f <5E', '', 0, '?'),
('znf9', 'wp-content/plugins/elementor-pro/assets/js/progress-tracker.3424c0ac2b2c8da47033.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/progress-tracker.3424c0ac2b2c8da47033.bundle.js', 0, 'jH!N]65\Z*OS\0*', 'jH!N]65\Z*OS\0*', 'sIBԾ>ц!ak^!M\Z:̙', '', 0, '?'),
('7Zv|xt', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p^][ZOtIg', 't7=܈`_0ShVJ@\0', '', 0, '?'),
('B!vݡɶ', 'wp-content/plugins/wordfence/views/onboarding/banner.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/banner.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']byc~Kw', '\ZTDi.qsն B`-pnN', '', 0, '?'),
('1x*ڶ>`;1.', 'wp-content/plugins/elementor/data/base/sub-endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/sub-endpoint.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A$ך>J-<', 'K?I	:Dizq-J', '', 0, '?'),
('4Zs.]*', 'wp-includes/blocks/table/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*''Vm', 'BO&''o1IYy%D', '', 0, '?'),
('6J0w*s', 'wp-content/plugins/wp-optimize/vendor/psr/container/src/NotFoundExceptionInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/src/NotFoundExceptionInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bZÜ4㩐GJ', 'QBd)$W̺}fTt', '', 0, '?'),
('9V#}X<\n[R', 'wp-includes/blocks/template-part/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%Rǽ.ϴ', 'Sv\nAt&2AU!u£g\0', '', 0, '?'),
('<(*A]O', 'wp-admin/css/colors/ocean/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{JB$u3#', 'ad}<''#4%N,0&4', '', 0, '?'),
('C|#7=q<V', 'wp-content/plugins/elementor/assets/css/widget-toggle-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-toggle-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=io)V\0''&Y8', 'uurX!9͕0za0ZIѻ	', '', 0, '?'),
('Dd.P˴{-yog', 'wp-content/plugins/wordfence/views/common/status-warning.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-warning.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kRf,Jk', 'f!\rWe=?KjP&*y|', '', 0, '?'),
('I|K9({sX', 'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_scanner_credentials.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p$>_CMGWj', 'DWVHYIe!^uynE$[d', '', 0, '?'),
('Q\rWMdم#6', 'wp-content/plugins/elementor/assets/js/admin-notifications.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-notifications.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7{c0Fݱ', '*_Qq-55X\rU(wv.\Z', '', 0, '?'),
('bvEH΄', 'wp-includes/js/wp-lists.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-lists.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ר@(U', 'U3K0{;;i\Z$&I_n[U', '', 0, '?'),
('hS:`', 'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N+C#+|fZ]', 'kn\Zy&_[Igl(g''^G', '', 0, '?'),
('D!~3-7', 'wp-includes/blocks/avatar/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xl}EG\0~<Y>', 'W8\01WSac)#\n77N', '', 0, '?'),
('\0t+o*', 'wp-content/plugins/elementor/core/common/modules/finder/categories/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$uc̒miAyo', ';/㨛:*KjSy\0R', '', 0, '?'),
('fu!})F', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[z`dk$w0', 'PFYO"2Ćm`ȁz/bi', '', 0, '?'),
('tS!|&~W', 'wp-content/plugins/wordfence/css/wordfenceBox.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wordfenceBox.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CWY~H#]', 'r{\ZI5O1QӇC', '', 0, '?'),
('&N,6P', 'wp-admin/images/icons32-vs-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/icons32-vs-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*04G4F	&Zi}"', '.a}hw6WEʭ(3Jӭ9E', '', 0, '?'),
('v#qȃ', 'wp-includes/sodium_compat/src/Core32/ChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/ChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EOxٕX2떭؃', 'xaJN!e""Nq}AMC1){j', '', 0, '?'),
('Uԅl)%gN', 'wp-includes/class-wp-script-modules.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-script-modules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';3ЁC]', 'βČ?&|bK23L@5T9"', '', 0, '?'),
('W31Ngפ', 'wp-includes/js/dist/vendor/react.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';=U`0(', 'hX\nLbJhs+L*ݮ*):', '', 0, '?'),
('gu`:c$\Zz', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlaiz.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlaiz.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y`Е	s40-', 'ܽWIw2}YU}7\n', '', 0, '?'),
('x[e>M', 'wp-admin/includes/edit-tag-messages.php', '/home/binawebp/omsrislb.my/wp-admin/includes/edit-tag-messages.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.jA8rUq', '?uZv*32;h$,\rME~', '', 0, '?'),
('˪l[=c"V-', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/not-found404.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/not-found404.php', 0, 'wtVN$', 'wtVN$', '-nw0FqH/gd(|R	', '', 0, '?'),
('@''vY!ѵ', 'wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&`O0D>m', 'vjz֚3/ "Ѹ-;F', '', 0, '?'),
('`wWjjmr', 'wp-content/plugins/elementor-pro/assets/js/b83b4e72565adbc65b6e.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/b83b4e72565adbc65b6e.bundle.min.js', 0, '@?z7e?#', '@?z7e?#', 'vW/v;HW~%Ǧ', '', 0, '?'),
('\0JƔQ_', 'wp-content/plugins/elementor/assets/css/theme-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X\rim<;e', '3Ʒ<h(xqXRj&B|', '', 0, '?'),
('ebK&uK', 'wp-content/plugins/elementor/core/kits/documents/tabs/tab-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/tab-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\ax~tH{', '<?~Vzcl?X]\rN-\\Xq', '', 0, '?'),
('B''i5', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n),0J`։', '{ elWjfqxhZfL!%v', '', 0, '?'),
('\n@(L}զ', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ty?̢w==V', 'S*GD^|twҨQo%8', '', 0, '?'),
('++FwnQb', 'wp-content/plugins/elementor/assets/js/nested-tabs.213892f3e7a826d32481.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.213892f3e7a826d32481.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`=o½9b', 'GY#\r>8|QHrkY=Uq>T', '', 0, '?'),
('fJj|x&0\Zx', 'wp-content/plugins/ooohboi-steroids-for-elementor/ooohboi-steroids.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/ooohboi-steroids.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Bt͹ENhiqP', ' \nB?ڈцCwk;', '', 0, '?'),
('_E^o&f', 'wp-content/plugins/elementor/assets/js/counter.f359dee9199f5aad06c6.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/counter.f359dee9199f5aad06c6.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I=L׀Z', '0Ka֠)`XW~Q`7`', '', 0, '?'),
('!C\rzyPz{', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T2}2Wq>z', 'ҭ-[C܃IQ[ɉdW', '', 0, '?'),
('!.֟Eל̓&', 'wp-content/plugins/code-snippets/js/hooks/useSnippetForm.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useSnippetForm.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?u''y`', 'JwXC\n|n|9\0#TC$Y', '', 0, '?'),
(',1kީvd', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '68.1 ', 'Tb̛XL-f<U|<', '', 0, '?'),
(':J³\\k\r', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/Facades/HttpAuth.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/Facades/HttpAuth.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\sUcN', '@HB!AqzJi޲{"', '', 0, '?'),
('?"I\riWmǶS', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/dashboard/class-ob-more-products.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/dashboard/class-ob-more-products.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VUsԱH', 'Yʀi3BN.f|c/>a', '', 0, '?'),
('Apjcz~', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/demo/logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/demo/logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ِCHQ\\', '{UDizwt2V8\na', '', 0, '?'),
('M&&Dkۆ', 'wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.min.js', 0, ']G', ']G', '~8$7iÐ)r	', '', 0, '?'),
('OJfbG*', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AԚǦKw', ';;oͶcD\nȓ6X=mBʗX4', '', 0, '?'),
('Q^g\08UI?R', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԹXp`me<', 'wP\0pzuYDSz(WߥP3$S', '', 0, '?'),
('f=*bOs', 'wp-includes/style-engine/class-wp-style-engine-css-rule.php', '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-css-rule.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DdzZU@', 'CzV<$$Ő6]};cH&"b', '', 0, '?'),
('g<CX''sAN\\', 'wp-content/plugins/elementor-pro/modules/posts/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/module.php', 0, '$<_aT%', '$<_aT%', 'O*\n\ZM3T9MJ,=:-yzf', '', 0, '?'),
('nވ\Z/;8e[', 'wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C40G', 'x6ybJmY&zF', '', 0, '?'),
('ppQVװ8', 'wp-content/plugins/elementor/assets/css/widget-image-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gu"\\4B؈{f2>', 'lm#pIT`{.8Wj\0ksA', '', 0, '?'),
('q;7w', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/glsl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/glsl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[VFP', 'j^ofS{Z6i->', '', 0, '?'),
('qsǦg:REN', 'wp-content/plugins/elementor/core/frontend/performance.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/performance.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AQD%,', '9OȠm?5-åi?m', '', 0, '?'),
('qhBc92', 'wp-admin/network/site-themes.php', '/home/binawebp/omsrislb.my/wp-admin/network/site-themes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɥyCEL\Zġ', ' E3Y5vFkr\Z;', '', 0, '?'),
('G$36d\Z', 'wp-includes/js/dist/admin-ui.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/admin-ui.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=zaOq=', '"{	kJ''5lhtzqAf', '', 0, '?'),
('^3\nb\n@\r<!', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/js/ekiticons.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/js/ekiticons.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0T)H', 'WJêCO^l*~Nu5sH', '', 0, '?'),
('e5ս\0%T{', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/constants.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/constants.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mr^os쾡EW', '7\Z|RIwjo>n', '', 0, '?'),
('\048:gIwױ', 'wp-content/plugins/elementskit-lite/libs/forms/assets/js/forms.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/js/forms.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vڑ\r|x>gw', '\\=\n`dؿBchX~Pi@yO', '', 0, '?'),
('ds#Ч\0g;6', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-transformable-validation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-transformable-validation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G.s.''', 'ԑkoHC/|T ', '', 0, '?'),
('n1.ÓutlX', 'wp-admin/css/colors/modern/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|Ul|5$op', '/e(8w  5(֔锿', '', 0, '?'),
('c+upT', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/plain-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/plain-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[mc\n#)Exy-a', 'ߕ6kI!6.E9ÅaEG{Y', '', 0, '?'),
('`%{+', 'wp-content/plugins/wordfence/images/icons/error128.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/error128.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':%7!.', '{h\0,]zkV{җ6nG\nxs9', '', 0, '?'),
('v\\Q-', 'wp-includes/js/tinymce/plugins/hr/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/hr/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	%>);', '؃FS[k&f 6+b>', '', 0, '?'),
('th	,Gx"M', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h!عÙk?=ӈ', '+MBWEJ1\0g_WF,|', '', 0, '?'),
('R\Z[ɾS5', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureStream.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureStream.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[)V1', 'у&R׺]s\\*vڃzʄ9q܎', '', 0, '?'),
('ȐFf۳\0E>', 'wp-content/plugins/elementor-pro/modules/countdown/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/countdown/module.php', 0, 'BZlIURO]', 'BZlIURO]', ':	JJZwD\\C(]bs!_', '', 0, '?'),
('9XU7z', 'wp-content/plugins/wordfence/models/page/wfPage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/page/wfPage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tbo i%HXwXv', 'ƅ1h/jw<U\\kq%s|W6', '', 0, '?'),
('іqSGKy(', 'wp-includes/kses.php', '/home/binawebp/omsrislb.my/wp-includes/kses.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/_.dg ', 'jY5$"ĀC9cg6:V', '', 0, '?'),
('wJ fHю2', 'wp-content/plugins/elementor-pro/modules/forms/classes/mailchimp-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/mailchimp-handler.php', 0, 'A}NO9?gӒg', 'A}NO9?gӒg', '4/u1Z\Zpk>n}u(', '', 0, '?'),
('''ttSU<A', 'wp-includes/html-api/class-wp-html-stack-event.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-stack-event.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F:\0kC,W', '"X$ۼ>Fd\r@#Ca}z', '', 0, '?'),
('ؗ̾,', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/File.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vÄ/!fM4t', 'H)`^Xmv[AdE-ף', '', 0, '?'),
('#xb$u9e', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/ExpressionParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/ExpressionParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '! i=#6D_', 'hGu-?4MLy^ZТ wHܐ', '', 0, '?'),
('em>h϶>', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#`!ы1W', 'K»==H~q7^/NPo%', '', 0, '?'),
('`EDB2', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-plugins.php', 0, '7A`5;LD\r', '7A`5;LD\r', '٨ʁCyX8ify&w{:&', '', 0, '?'),
('Q0ms,~_', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Ra/U0Q;', 'tr''mAћƦl\n]raG7<_E ', '', 0, '?'),
('9lן? rq', 'wp-includes/class-wp-user-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-user-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z).85', 'Ԫ\nc.yäa\nHX:\\', '', 0, '?'),
('!P+@', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-timeline.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-timeline.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=|<1', '+TbHleht1V''}K''J', '', 0, '?'),
('%?)', 'wp-content/plugins/wordfence/views/common/section-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/section-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!z̥', '+ASџbH濳$V+N΂', '', 0, '?'),
('/q\n[|8', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-gallery.php', 0, ':L~nt{Cfu', ':L~nt{Cfu', 'C.rA@i\n 0WTxq4c', '', 0, '?'),
('145!b#X', 'wp-content/plugins/elementor-pro/assets/js/admin.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/admin.min.js', 0, 'SMzݯ,l. ̱', 'SMzݯ,l. ̱', '&^Gm[\Z"}:3yYQe', '', 0, '?'),
('6$4ր/X8?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/velocity.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/velocity.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cỲ,', '.DT7^{5AԝȾV\nng[', '', 0, '?'),
(';md=Ȓl!M', 'wp-content/plugins/wp-optimize/css/wp-optimize-admin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-admin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vG|R߯WLu', '<2\0V9	J<IMFO	m?', '', 0, '?'),
('DS3.įy};', 'wp-admin/images/browser-rtl.png', '/home/binawebp/omsrislb.my/wp-admin/images/browser-rtl.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D"ӠA\Z%̝', '+啧0pƜJMk qwXب', '', 0, '?'),
('Dz*FYBgi', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4KXnw5F@kc', '>0~٧hryz!Z9pJR', '', 0, '?'),
('HCCw', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{uj9<g[3', '^J(ivYOz mV/>t.', '', 0, '?'),
('P}\r%?0', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-image.php', 0, 'H}	+lϩ9Cݯ', 'H}	+lϩ9Cݯ', '^.E+R0cgȅ,Dը4*', '', 0, '?'),
('Q^}ahAVl', 'wp-content/plugins/elementor/modules/checklist/data/endpoints/steps.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/data/endpoints/steps.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Adl', 'b3uŵJtA''_f&s}8w|KL', '', 0, '?'),
('TDaب4T_9FP', 'wp-includes/class-wp-block-processor.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-processor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eWlemZgx', '̰F@gm\nsKexⓔ', '', 0, '?'),
('[Hn[P.~FU|', 'wp-includes/nav-menu.php', '/home/binawebp/omsrislb.my/wp-includes/nav-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$BD87o]', 'Xe''ox\Zg#<V;9tg', '', 0, '?'),
('_^U4m\rt', 'wp-includes/SimplePie/library/SimplePie/Cache/Memcached.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Memcached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rǛ|VP?', 't[xևbإܹZ	\Z', '', 0, '?'),
('d_4', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/SanityCheck.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/SanityCheck.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r5|#lpS2q', '|ĠQIX{`^G{', '', 0, '?'),
('j\\Ħ<yp', 'wp-includes/widgets/class-wp-widget-custom-html.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-custom-html.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P0g80N', ',%E ̫V8wRcԯ/', '', 0, '?'),
('jxʛߎ3', 'wp-content/plugins/elementor/core/files/fonts/google-font.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/fonts/google-font.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iƤLF0&', '~\Z۞Tw@$ZWs|-X k', '', 0, '?'),
('osRf^', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''3$.{N)U', 'K6\\On䡐Rq:r', '', 0, '?'),
('t.!ht%h', 'wp-includes/blocks/video/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2\0k!GH', 'j36rj l2@u5k+D', '', 0, '?'),
('{uU', 'wp-content/plugins/elementor-pro/modules/forms/actions/getresponse.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/getresponse.php', 0, 'cpJjRM:X	ՠ', 'cpJjRM:X	ՠ', ':V_{<\\d\n\0h\n', '', 0, '?'),
('}Ha|Sܸ$E1', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cobol.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cobol.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WNa6)+4t', 'V\\]O6N\nDm+x^)?k', '', 0, '?'),
('0ptqD~', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-delay-js.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-delay-js.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!;ݒPu0^6', '%vG_ɹb/''\Z%', '', 0, '?'),
('4ʍ[ƠCZQ', 'wp-content/plugins/elementor/includes/controls/select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y)Z?biěa', 'Uq61{gL,mZДGbX1k', '', 0, '?'),
('Z\Zxcyd''', 'wp-admin/js/language-chooser.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/language-chooser.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U>p4Jl5=', '9\rXLdC5@UK&>̓l#', '', 0, '?'),
('؄J|'':zm', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/dimensions-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/dimensions-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r,!1@d', '?AohdIT-\ZXZB".', '', 0, '?'),
('2sk', 'wp-includes/blocks/categories/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PŚE#Iۆཀ', '=O-;N8UP3<(oن', '', 0, '?'),
('~!x% y', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-embed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-embed.php', 0, '>ttS\\|#', '>ttS\\|#', '\\E_ݘ7y@~', '', 0, '?'),
('LC3v-n{', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cTG8`;', '2S`J!N,}.ɧs0? #x', '', 0, '?'),
(':x=}', 'wp-includes/js/jquery/ui/mouse.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/mouse.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j\r{>\nA}8{', 'pZAUUב2s;Y;', '', 0, '?'),
('7HhZb''>94', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\0NWeu3\\Ot', 'hNsLm	/-CynA%InXp{', '', 0, '?'),
('p<%*#', 'wp-content/plugins/elementor-pro/modules/share-buttons/widgets/share-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/share-buttons/widgets/share-buttons.php', 0, 'rQ\Z', 'rQ\Z', 'j\nQgHCP^\\&9e4W', '', 0, '?'),
('Ha+̰I', 'wp-content/plugins/wordfence/waf/bootstrap.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԙnA	9	p7', 'yқVKHm6J>Q6q@Զ]d', '', 0, '?'),
('OIY\\{=H', 'wp-includes/robots-template.php', '/home/binawebp/omsrislb.my/wp-includes/robots-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӎ|Ylm+6V', 'X6hq@!`+\rx!	Еī>', '', 0, '?'),
('Tn3<[ 5', 'wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hE5''h]N)', 'vhӹل^X(č', '', 0, '?'),
('y&aA7]Dm', 'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajaxRed16.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%B\ng2;', 'D,AJlOSpe؇&', '', 0, '?'),
('ō\\G@"', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider-renewed.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider-renewed.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[$ś4xP0p3', 'cKKj#B#5', '', 0, '?'),
('U2)m', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǿ9}v*j', 'z_!\nR~S\nC\0ܾf2', '', 0, '?'),
('ƞׅ\ZXX]YF', 'wp-includes/js/codemirror/htmlhint.js', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/htmlhint.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2|џGMtP5', '\0U[\0M''mCռ55k`5ё', '', 0, '?'),
('T7|>*<+=~', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js', 0, 'xZwW*T', 'xZwW*T', 'XHJ2 Wd9e-tcX', '', 0, '?'),
('Y7S+j!', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-color-picker.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-color-picker.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dl2E7', 't[3ZbPmlT#*#''(', '', 0, '?'),
('HY/,Fv', 'wp-includes/blocks/query-title/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9-mCl-h', 'i)!nle#aniqla\nOX', '', 0, '?'),
(' a"KwTbc1S', 'wp-admin/css/revisions.css', '/home/binawebp/omsrislb.my/wp-admin/css/revisions.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iKM|wLk^p', 'M0vfI0QOGb㚲rrd,>Xb', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('#s?0%П', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/purchase-summary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/purchase-summary.php', 0, 'mTJ4;>"y9', 'mTJ4;>"y9', '[xvv9OQ,\0ۻ=.r\0', '', 0, '?'),
('-[ip\\^]', 'wp-includes/widgets/class-wp-widget-tag-cloud.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-tag-cloud.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'il¹+XZܚ', 'p^B&ROގD\0', '', 0, '?'),
('0&Y', 'wp-content/plugins/wordfence/vendor/composer/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']_#D\0', '\Z ے%4~N~Gh!b:wɌ''', '', 0, '?'),
('4ge>ߝ', 'wp-admin/images/list-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/list-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hջIS2ig', 'JpS_X#UB-z,', '', 0, '?'),
('5O#ԊVTVgR', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-09.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-09.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u3AUT	F', '?\n)-/oҝaҁRX', '', 0, '?'),
('9p@h4mYxJ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aC-H\r0\ZC', '{j~䈛	j`qI&Sj^ɹ*', '', 0, '?'),
(';fJ1˘+C', 'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n\n+ծ.jqAZ', '\0I36ěnj7jk:', '', 0, '?'),
('Bm`2~fNԱ]o', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~.,m;N/q', 'Du`Ɍ\\t-', '', 0, '?'),
('FgpIC3', 'wp-content/plugins/wp-optimize/cache/file-based-page-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/file-based-page-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e.o''ԣƸ', 'Jhk0*&AE}jB/Z', '', 0, '?'),
('OOwTM\rY!d', 'wp-includes/js/mediaelement/mediaelement.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ii:ρa0', 'F;(Dԥ$Tc#Vd\0K', '', 0, '?'),
('Sݳ\nuD', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/2.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/2.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';oqA26B5', '`{;,U]{)$眹]a\0)$h3', '', 0, '?'),
(']ǿ|IC', 'wp-includes/js/dist/keycodes.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/keycodes.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O 6@s', 'Qv<70WTfL.i(z,f{Gl', '', 0, '?'),
('_N~.RDa~Z', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ContainerTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ContainerTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?vo ]!5]cR9', 'JO3B86.F[4>Y,`\0 ݔ', '', 0, '?'),
('fkjNUei4=%', 'wp-admin/js/tags.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/tags.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vLD%Hd', '$t\0>_/*qU<hI%b 4a', '', 0, '?'),
('sE(U\r+', 'wp-content/plugins/elementor/modules/nested-accordion/widgets/nested-accordion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-accordion/widgets/nested-accordion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YN.sg9)F|', '.g1)E-N*\\v=By', '', 0, '?'),
('soG|ܓL', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zł2WT7cM', 'ec@"3NR+Sa"jUe', '', 0, '?'),
('y%Ǻ~ne"V', 'wp-admin/css/list-tables-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/list-tables-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't\0ER{IlD', 'Ul\ZYqL~HIRGb&<ͭ 9', '', 0, '?'),
('ynW]ĳRmr', 'wp-admin/js/site-icon.js', '/home/binawebp/omsrislb.my/wp-admin/js/site-icon.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aJY@l%CN', '@A9&q`Xi2\rC=', '', 0, '?'),
('Ŏڬõb\n', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}anГ!,Dҡ', '}=;fBH''V"\rZ-ih*zw', '', 0, '?'),
('Z;nԫr/', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VYނRVmg]', '4\n\0GBBvx$\rf', '', 0, '?'),
('F+D{zX', 'wp-content/plugins/elementor/includes/widgets/star-rating.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/star-rating.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's},J\0gZ', 'sUz2ȁЧ)jC,\Z)', '', 0, '?'),
('!ak@A7$', 'wp-includes/js/dist/script-modules/block-library/file/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/file/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$>-Jhab4 ', 'h%{pٍV)%Ln*`', '', 0, '?'),
('"S!<TP7', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''􅜎Hqih88@', 'em@L)1LYHZ VvyI*E', '', 0, '?'),
('/-TǻT<S', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{ݏ\\%Dkwj', ']TS.{aMl\0', '', 0, '?'),
('RVЩ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/lastChild.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/lastChild.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Ki&+[', 'm+L6?`AG\\f@ɳJ', '', 0, '?'),
('Ss2AW', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/gutenkit-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/gutenkit-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':}#Fa83ѷ', 'cM8KFBkiV{])Ax 2N', '', 0, '?'),
('{Js}sG`', 'wp-content/plugins/elementor/includes/controls/deprecated-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/deprecated-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']$0cܾFYÙ', 'ONiI}\ZK?Mg{', '', 0, '?'),
('b˻ԴMҜ_8', 'wp-content/plugins/wp-optimize/css/smush.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/smush.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nQJ+d', 'X55yؾzl3\0+imB', '', 0, '?'),
('Dn</Պ', 'wp-content/plugins/elementor-pro/modules/notes/database/models/document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/document.php', 0, 'EUb[?(', 'EUb[?(', '1b{<wg:bydů%M/\rt', '', 0, '?'),
('ةb`O', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/README.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '޺6O?', '.w@ȻTjkV.6', '', 0, '?'),
('њt', 'wp-content/plugins/elementor-pro/modules/forms/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/data/controller.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('*0+j&{Ew', 'wp-includes/css/dist/block-editor/content.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Bcj>P4I', 'ln}0um:[ s', '', 0, '?'),
('rN(M\\', 'wp-includes/blocks/post-title/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E9ʢ.`BP', 'bXjLX@so9E\r{;mF', '', 0, '?'),
('0D>wN{`r', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-code-promotion-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-code-promotion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IBN9aZ&yM\r', 'ᓛ7\nb^J$fxk', '', 0, '?'),
('CNY@3~', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LO8}`c', 'v\0Y''n .Ҥ{S.', '', 0, '?'),
('c&VmD\0+', 'wp-content/plugins/wordfence/js/jquery.colorbox-min.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.colorbox-min.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y5=q)', 'H4\\v/XGK:gkl', '', 0, '?'),
('!FnvM~6', 'wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2$@g*"', 'I)E@kCo1QK''G', '', 0, '?'),
('p@wNj', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Us	', 'ilw\n^E|" S沄Bi', '', 0, '?'),
('T=Ad_?#', 'wp-content/plugins/wp-optimize/templates/minify/status-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/status-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZKi)]wv''v', 'Ӿ&A1w8''Tb', '', 0, '?'),
('/j!~B`*|', 'wp-content/plugins/elementor/includes/editor-templates/hotkeys.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/hotkeys.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7KPF&Kl', '3?GDOi"PR"oI', '', 0, '?'),
('1o%qA', 'wp-admin/js/inline-edit-post.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-post.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?z36R3', 'g\\A(~6L$}b\\dC^U', '', 0, '?'),
(';Tbʹ(@', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-content.php', 0, '~@]E5''C\n', '~@]E5''C\n', 'l5..FuZ:gbi=o', '', 0, '?'),
('TL ߈,]զm', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8	:{We', '6{w^GkΫ25b\r񓫄', '', 0, '?'),
('X`2.0"', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/styles.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/styles.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U pS3,Q', ')c$%)5V%}W', '', 0, '?'),
('cw7L~\\-y\Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sass.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sass.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W"Ȣk9', '&W̫=+6TZs4Ne_', '', 0, '?'),
('l΅?r:q', 'wp-includes/SimplePie/src/HTTP/RawTextResponse.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/RawTextResponse.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b%r', 'H7Y"<\\XU,ާ\0', '', 0, '?'),
('nB_Ru~', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-button.php', 0, '3?BlSu', '3?BlSu', '(QtfBsXl%%7HuW', '', 0, '?'),
('qkИ*N"8o%', 'wp-content/plugins/code-snippets/js/utils/files.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/files.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Жs->@', 'hia"yzȑEH6Uckw', '', 0, '?'),
('xi$8>?+', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-perspektive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-perspektive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8\r5^`o8', '=KG(L\ZǕ_?~("', '', 0, '?'),
('zh9ꈦXp+', 'wp-content/plugins/wordfence/views/scanner/no-issues.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/no-issues.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xt-|Fe', '_?7c:_@EJs[', '', 0, '?'),
('$:FbQãr', 'wp-content/plugins/elementor/assets/css/templates/apple-webkit.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/apple-webkit.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dglTx<', '3tۚE	*=55͂;;;L', '', 0, '?'),
('Σ80~Rd', 'wp-content/plugins/elementor/modules/content-sanitizer/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/content-sanitizer/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H7Hrq9I\n', 'xCn/,MNS|@\rD~2k', '', 0, '?'),
('#~ZyX\rEE', 'wp-content/plugins/code-snippets/dist/manage.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' @% {N', '35ҳl^eF[[T;', '', 0, '?'),
('ESc+#)', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uNmSC{', 'P~{p}x{82hXx', '', 0, '?'),
('+[|p;', 'wp-admin/images/contribute-no-code.svg', '/home/binawebp/omsrislb.my/wp-admin/images/contribute-no-code.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X?LlR''1', 'lCQ,\\#[+*le2', '', 0, '?'),
('S1a&ܿNv', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tp=äƺ3', 'E[K,u®5M3C_Z<q', '', 0, '?'),
('ˋAFwD4B\0', 'wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F5Uo5', 'cj$ÍK؊7Ͻd}[i<{', '', 0, '?'),
('KfA\0''6\Zv', 'wp-content/plugins/elementor/assets/js/atomic-widgets-editor.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/atomic-widgets-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vLwSiQ3', 'lw4FR*j#G\rUf+%', '', 0, '?'),
('ëxO F', 'wp-content/plugins/elementor/data/v2/base/exceptions/error-404.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/error-404.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5r%|t&uŴ$s', 'cP@ B4E¹Ě\rEtk', '', 0, '?'),
('F{A', 'wp-content/plugins/wordfence/lib/sysinfo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/sysinfo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>&I9i?ل4', 'o\\QQsT-ˋv+V2fp', '', 0, '?'),
('a-@,ݰq>:', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAttribute.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAttribute.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mω:#b?', '''\Zi>/ݍ\Z0йkM\Zp', '', 0, '?'),
('ޖ_-$6Y', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/metform.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/metform.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k]6))Ge܉', 'V;Yء5{<2KLҲQ""+^r', '', 0, '?'),
('*ad[gG', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>D-	&P+M A', 'Fyݪ[4O''L&C=F\Z=nV', '', 0, '?'),
('EQ?	(', 'wp-includes/class-oembed.php', '/home/binawebp/omsrislb.my/wp-includes/class-oembed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yҿ~KH<f', '? An6&z''`,j]mv', '', 0, '?'),
('z`Qyo', 'wp-content/plugins/wordfence/js/jquery.colorbox.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.colorbox.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(O0%69e3j', '{L#\r]\ngL8P,@Ir,{ ', '', 0, '?'),
('bI`~Y', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n,''zeT', 'S9׬uڐe:wHi,ɛJ}', '', 0, '?'),
('.݁BxKY', 'wp-includes/ms-default-filters.php', '/home/binawebp/omsrislb.my/wp-includes/ms-default-filters.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"r\0R', 'YK<	1AOAUhPC', '', 0, '?'),
('z_	t\\arg', 'wp-includes/blocks/comments-pagination-numbers/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cPudeOޕūo', '6iOɭwXGV95-IZ', '', 0, '?'),
('~p', 'wp-content/plugins/wordfence/modules/login-security/css/admin-global.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/admin-global.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n!m]''x_', 'WIYTįQ.0(?Ff#|M', '', 0, '?'),
('6~e{".w', 'wp-includes/widgets/class-wp-widget-recent-comments.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-recent-comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<F`', 'ԃOh	8qp=F[r', '', 0, '?'),
('%/<%vz', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/entities/form-snapshot.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/entities/form-snapshot.php', 0, 'Ҥk\Z]EbB', 'Ҥk\Z]EbB', 'pbʖiX\rLin8웖q', '', 0, '?'),
('*O-Lτ\r[u', 'wp-admin/css/about-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/about-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yXRHqҏ', '/WU~*].谛@$`m', '', 0, '?'),
('??n_2gj', 'wp-includes/js/wp-util.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-util.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ѱ~t\r(1M', '@"L;jߖ;2Lgr\nZ2C?', '', 0, '?'),
('CEK_Ay[ж', 'wp-includes/blocks/site-title/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sǎp&T^l', '`	*3Uev''t	ukU9r', '', 0, '?'),
('Yg$zH.Y', 'wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '嚚Oׅ.(\r"\Z\0Z', '΂:ǲ=k:E7[eV%b3r\Z', '', 0, '?'),
(']FD>%Pwӽ', 'wp-content/plugins/elementor/core/base/background-task.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-task.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}V}aŻv', 'OL5\\Wj	/d^''H', '', 0, '?'),
('b:F16q\\ZH''', 'wp-includes/SimplePie/library/SimplePie/Decode/HTML/Entities.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Decode/HTML/Entities.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	xjTL<]', 'ct:@tRv\ZN', '', 0, '?'),
('u\Z ׀+>', 'wp-includes/blocks/image/view.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mv', 'cm)(ah<<E', '', 0, '?'),
(';dAo+d(', 'wp-includes/blocks/quote/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3Iua7@͓_', 'l՟"ܽm#>K', '', 0, '?'),
('mӟa', 'wp-includes/blocks/post-featured-image/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӿaB" k', 'A˃] a\ZY|}TE:zd', '', 0, '?'),
('±!{Q:?.', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-lightbox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-lightbox.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>i(2-N', '0h\\D0xC''lji\Z''i', '', 0, '?'),
('`Ϩ㟒ǁMD', 'wp-content/backuply/backups_info-0uelYu/index.php', '/home/binawebp/omsrislb.my/wp-content/backuply/backups_info-0uelYu/index.php', 0, 'ySY', 'ySY', 'ݧ\\\n.nbeNY''p*tk', '', 0, '?'),
('ns\Z&9ƲM', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/brands.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/brands.js', 0, '袛[h&', '袛[h&', ' Ulor}?4=8̕]46	4d&x', '', 0, '?'),
('ڜ$TejtA9', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-paginini.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-paginini.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lh[;9C', 'H*٨Z/[pe?&\ZLp', '', 0, '?'),
('R%A]L$O~{D', 'wp-content/plugins/elementskit-lite/libs/forms/assets/css/forms.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/css/forms.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-[&ݾG-v', '<?Լ$PE#)^WyQ]8', '', 0, '?'),
('\nRbxg', 'wp-includes/css/dist/block-library/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\z_Uϒ$ݜX]r', '0dCҘx2JKSo', '', 0, '?'),
('Y\0)\r/j)Ar', 'wp-includes/customize/class-wp-customize-filter-setting.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-filter-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M`f\0iu', '\0<\nj:YFdw	', '', 0, '?'),
('"C1$', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-id.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-id.php', 0, ';auBS|Ӳvs', ';auBS|Ӳvs', '#@p!ܙ8T:4xa''W\n', '', 0, '?'),
('|^t<[tj', 'wp-content/plugins/elementor/assets/css/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=i.', 'xPaE㇨m2r,NenMs#m\0', '', 0, '?'),
('Ph`|/:W\0', 'wp-includes/blocks/columns/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '++F3\rn', '!ã;hZDay^ZtU췸5', '', 0, '?'),
('4;TrlAj', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-AYFf9sΙ', '5HZ$+kJH:}"rNرVL', '', 0, '?'),
('$n1U\\x(', 'wp-includes/blocks/missing/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/missing/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c+/FL:', '	qdT{XN^I؅Yu=', '', 0, '?'),
('--çξ', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-detect-minify-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-detect-minify-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K|ǲT<9-', 'ҒE<xG_S"Z', '', 0, '?'),
('M=RfR{', 'wp-content/plugins/elementor/app/modules/kit-library/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qtKP5%', 'B67!et\nwihV_DLl8+Ys', '', 0, '?'),
('$_Xla', 'wp-includes/js/jquery/ui/sortable.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/sortable.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SI&@', '-mۆZI@b,8{3Zy Q}', '', 0, '?'),
('% )tĭN5JًV', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.html.twig', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.html.twig', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nbӜQJ1', 'sٹDaۂ(kWkXe@', '', 0, '?'),
('4r)FG!1', 'wp-content/plugins/elementor/core/files/assets/svg/svg-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/svg/svg-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2a퍤X	>J', '}2\Z\ZЭJҊg} m~Hu', '', 0, '?'),
('MVVƍ%1[', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-size.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-size.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mdfikiFS', '(1]_~\r^*\00ʉ!nԮ', '', 0, '?'),
('R;lzO8m<3Nie', 'wp-admin/user/freedoms.php', '/home/binawebp/omsrislb.my/wp-admin/user/freedoms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`U }\n', 'οzB+q5VlKlkZ/|', '', 0, '?'),
('V@@{:$bK', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/OptionsTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/OptionsTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[4[\ZVQ', '/2F)\Z\\ui4;Ef޾;', '', 0, '?'),
('afh=FT:6', 'wp-admin/includes/class-ftp-sockets.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-ftp-sockets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zc78\rjjؒ', 'Q,0\rNQJYmʼ0A', '', 0, '?'),
('ik[!gW}vȵ', 'wp-includes/blocks/image/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1_21mT:', '%#.\rxAV3Bf+{', '', 0, '?'),
(';~ӷR>', 'wp-includes/class.wp-scripts.php', '/home/binawebp/omsrislb.my/wp-includes/class.wp-scripts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7 #Kh+', 'ruڶbW87fG]k\0f5', '', 0, '?'),
('nvpe}', 'wp-admin/js/customize-controls.js', '/home/binawebp/omsrislb.my/wp-admin/js/customize-controls.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K%%;{vya)', 'BO9[\nU2He5֠y:@}', '', 0, '?'),
('3(Kl]Y', 'wp-content/plugins/elementor/assets/lib/font-awesome/migration/mapping.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/migration/mapping.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=H95<&', 'g3xawȔR?8!p?', '', 0, '?'),
('%vj3', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-fine-uploader.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-fine-uploader.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q-ˠmtsR75q', 'm(BjzY\r7{s{;&2_<Β', '', 0, '?'),
('`,8', 'wp-content/plugins/wordfence/js/wfonboarding.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfonboarding.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R<3+CFuz', 'Gh~RE8th|(ֻf/b', '', 0, '?'),
('(sO8J', 'wp-content/plugins/elementor/modules/safe-mode/mu-plugin/elementor-safe-mode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/safe-mode/mu-plugin/elementor-safe-mode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '( <r1em;e', 'HJW+z_)/PtOԭ)Ν', '', 0, '?'),
('DTǡ#"1?', 'wp-includes/blocks/cover/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ua=%˛y', '@*/HCY?:IwGdo4AE^', '', 0, '?'),
('PZ27Mn', 'wp-includes/blocks/rss/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'clsv4\r', 'h;X#0A(Gbɿr', '', 0, '?'),
('1Af.', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7G''uCH\0ۙ', 'q_.aFe{A%\\o[)U\rhW', '', 0, '?'),
('Z#ѨoegM', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/gallery.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J''zb.I', 'ԵpKƻȹ04O?d}ѿpn0', '', 0, '?'),
('LHu?+[w.xj', 'wp-content/plugins/elementor/modules/global-classes/utils/error-builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/utils/error-builder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x\0͗tf&', '%.(Ɲ|5T,=', '', 0, '?'),
('ȦH-,\0Ke@M', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TestExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TestExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xո @o\\s', '{3v*klhF\0o{5 38W', '', 0, '?'),
('*h^', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''crϙDq5''G~', 'H.#\nDu9uq<fA	eV1', '', 0, '?'),
('̆tokJ\rwcw', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-rating.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-rating.php', 0, '6"4ZN&?z', '6"4ZN&?z', 's!69	r/oPH\0jފ', '', 0, '?'),
('YLI|', 'wp-content/plugins/elementor/assets/css/widget-nested-accordion-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-accordion-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{; La]', '_9	RF|1@:fej!?', '', 0, '?'),
(';ge\r=>4', 'wp-content/plugins/wordfence/css/license/premium.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/premium.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.܃>V]"', 'NEs$6M#^G', '', 0, '?'),
('^4fMPv', 'wp-content/plugins/elementor/assets/css/modules/announcements/announcements.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/announcements/announcements.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<+6%h', '@%J,bA5C\0KUzS', '', 0, '?'),
('B\\u}L,', 'wp-includes/css/dist/block-directory/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D\n]2Ooa', '[|/94 }O\0D( Gݦ', '', 0, '?'),
('WBD"F', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/props-resolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/props-resolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`\n)x3\rL<', 'YFԣALt	+\Zr!p-', '', 0, '?'),
('/!3P', 'wp-content/plugins/elementor-pro/assets/js/portfolio.47c0bf4b3576c66f1b1a.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/portfolio.47c0bf4b3576c66f1b1a.bundle.js', 0, '8pI!,f	', '8pI!,f	', '=Ɂ1)K\n*Z݀cM', '', 0, '?'),
('\0\r|ڹ', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/5.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/5.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZWf2\n+F', 'w3I挐!B!"c1ӌX', '', 0, '?'),
('ص6_䋉''', 'wp-content/plugins/elementor/modules/safe-mode/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/safe-mode/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#\Z8A9@1D', '?H1hahļ\nŪT8ih)B', '', 0, '?'),
('ZRpՎ', 'wp-content/plugins/code-snippets/dist/editor-themes/neat.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/neat.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`ѽɥ!x', '	a^8VvX1jYWkWu', '', 0, '?'),
('ig='',''', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kr_theme.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kr_theme.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'őX],{', 'EEK'';5*\0\\_aANE_rOчR', '', 0, '?'),
('y1^t|', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Reflection/CallableReflection.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Reflection/CallableReflection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_iP4AH', '?)݋d}u?tXԩɵ9', '', 0, '?'),
('wzPR6(', 'wp-content/plugins/elementskit-lite/libs/our-plugins/our-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/our-plugins/our-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',*d9j0%', 'q:x2-u/ວS|9ӢB\r-', '', 0, '?'),
('"QOOPb', 'wp-includes/blocks/group/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3jCOѺ}`xݰ', 'GCf0S"hsp4YuR\Z$xqO', '', 0, '?'),
('#:SkU{', 'wp-content/plugins/wordfence/modules/login-security/classes/model/view.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/view.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*:?l]u', '2P탚=w=7Ar\nfQ~,B', '', 0, '?'),
('&N9W5T', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/shadow-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/shadow-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u*>"]#[', 'h>?K$h+!j^rBRA;}', '', 0, '?'),
('(|nsARF+', 'wp-includes/js/crop/marqueeHoriz.gif', '/home/binawebp/omsrislb.my/wp-includes/js/crop/marqueeHoriz.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̮;Lo\n', '|Se|./QYW}(', '', 0, '?'),
('0,M_)', 'wp-includes/blocks/comment-content/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v%]K', 'U֑w@,m1ŴC,"FYjk', '', 0, '?'),
('5\n٪גb', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailedException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailedException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/	8sbNȫ', '|''`mhi2!d(A81\0X.	︻', '', 0, '?'),
('>5]Ƨ"2v', 'wp-content/plugins/elementor-pro/assets/js/posts.72468c8555693b196f98.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/posts.72468c8555693b196f98.bundle.js', 0, 'Bޒ(u(', 'Bޒ(u(', 'Qo\n2qs \Zh{.ef', '', 0, '?'),
('G	ђO5)l\n\Z', 'wp-includes/SimplePie/src/Cache/CallableNameFilter.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/CallableNameFilter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3cxV<]N%F', '&A\r/yhetqp8Z!^', '', 0, '?'),
('Z`ZJ|;/', 'wp-content/plugins/code-snippets/dist/editor-themes/nord.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/nord.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bZOʂ~e*', 'R*511؋ȩ0	.eQ{X', '', 0, '?'),
('[''/;', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '܆)C/կ ٝ', '1''CAUu3iffDtl~', '', 0, '?'),
('c:Qk2	 6', 'wp-includes/blocks/columns/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z.\n=Z؟y', '|_0Gn5f_Nx9EL\n6T', '', 0, '?'),
('r湏;nߢ', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AT&ї.', 'kBⷢë_7^ۃ.݌Tj', '', 0, '?'),
('8AEyt', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/widgets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɨIN/, D', 'wlb>0[](fwB\0L\r_', '', 0, '?'),
('m''7?', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_after.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_after.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';:8~EDe', '\Z\ZaGk`}TCn?ؚS', '', 0, '?'),
(':[&b[hY', 'wp-includes/images/smilies/icon_razz.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_razz.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9[wDAMA', ';P1]fUE;`Qڮ\neZ\0@4aA', '', 0, '?'),
('|ضn''~T', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/4.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/4.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r\0҂/<q', '!WcZM5z<NZQ^xH', '', 0, '?'),
('P@B腮M', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/neve.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/neve.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>l-A??G', '-"8,jr^1~x`n', '', 0, '?'),
('ᨐP_R%', 'wp-content/plugins/elementor-pro/core/behaviors/temp-lock-behavior.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/behaviors/temp-lock-behavior.php', 0, ';ltnXT', ';ltnXT', 'Br[;%M13iSByYZow!', '', 0, '?'),
('x2_.~$)', 'wp-includes/js/dist/core-data.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-data.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',l<g	I-', '_xV,)dժ;l', '', 0, '?'),
('3|QoNۗ砯', 'wp-includes/blocks/video.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/video.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sSM', 'Waa''ƄƋ^ܚ9%V۾Zl#', '', 0, '?'),
('5+i{yu', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#.R&	z(@f', '6ޗO"R)[C\nq,x9', '', 0, '?'),
('À/\ZHQ9''^', 'wp-includes/blocks/accordion-panel/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&-PSag', 'O,G*rzj1]A%', '', 0, '?'),
('yvu(D', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu-active.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu-active.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?}cnY', 'ʼ-OJQO!nrDbߏb', '', 0, '?'),
('$tզ}	T', 'wp-includes/blocks/code/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Dn4\rt)', 'i\Z͆\n8E,uAhy''J{', '', 0, '?'),
('Ὀ5f?hk', 'wp-includes/widgets/class-wp-widget-media-audio.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-audio.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w#e8za', 'mBDYt5OlEmtf', '', 0, '?'),
('f3]:sO', 'wp-content/plugins/elementor/modules/checklist/steps/step-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/step-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bQSЩ', 'B|mMO5N1\Zm1.', '', 0, '?'),
('8`9?BbБ', 'wp-includes/js/jquery/ui/effect-puff.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-puff.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*GwUJM', 'p[SAg.#/%$,D"e>C', '', 0, '?'),
('DK[!ee9', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gcode.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gcode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~]M*d:', 'R2FL\r&JC2Zl$p', '', 0, '?'),
('\n /Y', 'wp-includes/js/dist/data-controls.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/data-controls.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mf`!@ջB', 'Tuw{89&j0~cxM', '', 0, '?'),
('}VI', 'wp-includes/blocks/cover.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȔL^Akm''', 'ϐ[zǩ߇=½Zlc >', '', 0, '?'),
('MzKn!\nJ\\', 'wp-content/plugins/code-snippets/vendor/composer/platform_check.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/platform_check.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`Jzn~', 'DaBtDͨͳmTd=u䤧	+', '', 0, '?'),
('\ZvцjNnj', 'wp-content/plugins/code-snippets/dist/editor-themes/colorforth.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/colorforth.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EuV:C-7Dp', '.D_O?i2&jr9JFHgP٘9r', '', 0, '?'),
('+F4\nq"]', 'wp-includes/blocks/table/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^q%mZ,1', 'WO)j)Ag3$0$[m', '', 0, '?'),
('1&[CXХ\r', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/server-info.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/server-info.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't3C(x]&', ''')k%S[߸"/Mj', '', 0, '?'),
('=EmɫdX', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/AuthentificationException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/AuthentificationException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Iod?', '=*[]wF+yg%`', '', 0, '?'),
('S-B"ʎp', 'wp-content/plugins/code-snippets/vendor/composer/installers/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*^n?#\0', '(NNA~)#VH6kГ', '', 0, '?'),
('UKm \rul', 'wp-content/plugins/code-snippets/dist/editor-themes/twilight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/twilight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!^JExo=', '+[eJVۃ:Gp', '', 0, '?'),
('W4\n8O', 'wp-content/plugins/elementor/core/logger/loggers/db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/loggers/db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*F^?9؀#', '->a`2Y8', '', 0, '?'),
(']WiIi9i', 'wp-content/plugins/wp-optimize/js/status.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/status.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~n&?#"', 'p\rCFTȦA9s', '', 0, '?'),
('] 6+`', 'wp-content/plugins/code-snippets/php/rest-api/class-snippets-rest-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/rest-api/class-snippets-rest-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '249s', 'ZBRQfvpѼcls\rh}w', '', 0, '?'),
('c̎$\n''@\r', 'wp-admin/setup-config.php', '/home/binawebp/omsrislb.my/wp-admin/setup-config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J6H֒', 'lc2]Ə>''Nߛ3TЋC-', '', 0, '?'),
('li\nLu:P}', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpcs-ruleset.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpcs-ruleset.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'يj{|DuDnBT', '%x\Z,Hi*3W=CpB(', '', 0, '?'),
('m֙7,}ov', 'wp-includes/css/dist/block-library/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=dsHKRvYu', 'e 	}"J/TwW>6k]o\\ieaiK', '', 0, '?'),
('o\0\0	;ȏ4', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ObjectCreator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ObjectCreator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̹RK9S', '9 7eyJD֖OW8P3R', '', 0, '?'),
('@89HJ', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-repeater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-repeater.php', 0, '*1GMKIG3', '*1GMKIG3', '8''2g\\ᙏ0Rs$|2', '', 0, '?'),
('VtS-', 'wp-content/plugins/wordfence/views/scanner/issue-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xJZ', '*ҟb\\kpBS3*', '', 0, '?'),
('LqLD9', 'wp-content/plugins/elementor-pro/modules/carousel/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/module.php', 0, '!ԟ	{i', '!ԟ	{i', 'x]\0(1zZ۫SlPϓ', '', 0, '?'),
('cj<]j^}', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-auto-increment.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-auto-increment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '՞/?)\0TEz8', ')psANa^f[*]؁', '', 0, '?'),
('J1MF<', 'wp-admin/js/tags-box.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/tags-box.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BUGX	+', 'ˠ3\0Zg[wu|H&R6', '', 0, '?'),
('ѳ\\)w;', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/DebugDetector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/DebugDetector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm_-i\0#r', '%tV''P=\Z+NBhv]', '', 0, '?'),
(')> _Q\r', 'wp-content/plugins/elementor-pro/modules/social/classes/facebook-sdk-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/classes/facebook-sdk-manager.php', 0, 'C6͛Gy', 'C6͛Gy', 'A\\pn_0Hޜ鼢 %P\\', '', 0, '?'),
('e2#^G', 'wp-includes/blocks/heading.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/heading.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ELVRoHZR', '#)-@!2*>', '', 0, '?'),
('ę)sm[j\n&', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ie', '8R3pdKk(sY|6', '', 0, '?'),
('Bor5AC', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~RB''ۈ^`x', '1骞|/7\0V٭޽8', '', 0, '?'),
('!hb=`H	 ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/servmask.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/servmask.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y!BZ&hG', '~~nT|Q<h(#G4ȓ^H+', '', 0, '?'),
('7w"P', 'wp-content/plugins/elementor/assets/css/modules/announcements/announcements.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/announcements/announcements.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DqtfDj', '^Jﾎ9n ''W\\K237F', '', 0, '?'),
('\rnw-0%\\', 'wp-content/plugins/elementor/modules/global-classes/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a60\Zp	l', 'PB#SW i*MAYR\n', '', 0, '?'),
('c-,Rqee\\', 'wp-includes/blocks/group/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\	ʝ=fZ9U', '\ri$y+h?j魾\Zb3sJ)', '', 0, '?'),
('?ڟE$PF', 'wp-includes/pomo/translations.php', '/home/binawebp/omsrislb.my/wp-includes/pomo/translations.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gh8', 'K7c=՛ձŔ', '', 0, '?'),
('Rl\rܤo', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.de9dd6d5a71e58af98ef.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.de9dd6d5a71e58af98ef.bundle.js', 0, '%SMcX[Ɏ', '%SMcX[Ɏ', ':hAf(kקYđ', '', 0, '?'),
('=>L\nنYK0', 'wp-content/plugins/elementor/includes/controls/notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!MqB6iqN*H', 'yY0Z$vBV>nmDn҉', '', 0, '?'),
('ۢ؇=pU', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Exceptions/ServeFailedException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Exceptions/ServeFailedException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#@H/', '$\Z@s}j_ρ	McWⲂ', '', 0, '?'),
('Bcո@awjO9N', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createTextNode.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createTextNode.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dMZK`Ҽܦ', 'K87૜''*Jl{Vf\rPx', '', 0, '?'),
('䧟Po', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IfTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IfTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-~/G$u', '	PbQaup۫Nr''n', '', 0, '?'),
('7\\aX \0Iq', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js.LICENSE.txt', 0, 'N4e;z❝o', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('Rވ\\lw', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.1.8.24.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.1.8.24.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D	\nʩz*<:', 'Phv)6D#MQү"&{', '', 0, '?'),
('GԈ{\n''', 'wp-content/plugins/elementor-pro/modules/posts/widgets/portfolio.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/widgets/portfolio.php', 0, 'IG~"	q3\\J', 'IG~"	q3\\J', '"$PD\Z>p', '', 0, '?'),
('8jc}', 'wp-includes/blocks/rss/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_u)p0On', 'r69(g]_14btVgaG', '', 0, '?'),
('hx*(&kO', 'wp-content/plugins/wordfence/views/blocking/country-block-map.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/country-block-map.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uyGF,{Xz', '%Ԝ5;x^)G(o', '', 0, '?'),
('''Kzf', 'wp-includes/customize/class-wp-customize-header-image-setting.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-header-image-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$,V9cRd6', 'dVn*m![IdǺam', '', 0, '?'),
('5#"8%`}', 'wp-content/wflogs/template.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/template.php', 0, 'lCdb.˴v', 'lCdb.˴v', 'Z][WP},7*q\nƑ', '', 0, '?'),
('\ZkQPu1S', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-description.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-description.php', 0, '\nPKs㯧mj', '\nPKs㯧mj', 'O@EKw;*g(B&0U4', '', 0, '?'),
('#?Gc	¯l1e', 'wp-includes/class-wp-theme.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"*xyQps`8}@', '2Fs=\r	W58+(_A\\+', '', 0, '?'),
('7d/4=ݍ', 'wp-content/plugins/elementskit-lite/widgets/header-search/header-search.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-search/header-search.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6{n8ɊxV', '}="Ŗp4 N]l& ~[nĢ', '', 0, '?'),
('HPw%8', 'wp-includes/images/smilies/icon_sad.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_sad.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IxoTMzD-', 'b5yh9}oWInn', '', 0, '?'),
('JI Xb:!', 'wp-content/plugins/elementor-pro/modules/forms/registrars/form-fields-registrar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/registrars/form-fields-registrar.php', 0, 'v*$P%E', 'v*$P%E', 'ZMa	ԒdZu$\0Aߵn]n71', '', 0, '?'),
('Q49LzJ', 'wp-content/plugins/wordfence/lib/wfUtils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfUtils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~m¿W', 'NW,.(]b6;c"\0`p', '', 0, '?'),
('XX*!2~', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.ӻ1A,t/', '~"t\\,4w¡-~Mq', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('[nG{''q:', 'wp-includes/ms-deprecated.php', '/home/binawebp/omsrislb.my/wp-includes/ms-deprecated.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K,Q&Tj', 'rHuӳkn*.!dU~X', '', 0, '?'),
('\\h RX<C', 'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߅w@LOR', 'EFjrč;s΀.f:ϤF', '', 0, '?'),
(']$ȶ@DWh', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-vim.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-vim.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȼsIy(*', 'fJvhd,n})%>$\0', '', 0, '?'),
('c6~6̐', 'wp-includes/blocks/button/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eQU,', '皫<De>/9 Zng', '', 0, '?'),
('iDsU!9kFHn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.jquery.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.jquery.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i?]FU>NO', '$Z2~~i/FdlUǝx\rqLƙ', '', 0, '?'),
('v)<T'']#֪', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AddBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AddBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mMK', '`&1?r]Fth>/00ңPp', '', 0, '?'),
('\Z78-\\~', 'wp-includes/css/dist/edit-post/classic-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uyEpBy0m', 'fD)&JXs#>z^0cNȄ', '', 0, '?'),
('_ͭ3ҟ?', 'wp-content/plugins/elementor/includes/widgets/image-carousel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image-carousel.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	a,X[pw', 'E^A1Nl\ZAx>mM', '', 0, '?'),
('^1X}3', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/saving-dom-objects.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/saving-dom-objects.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iSƩz2''', 'L.m̰rq*wQ=N{W_X', '', 0, '?'),
('3_[#g`', 'wp-includes/css/dist/block-library/reset-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oG\\\n''\0$a7', '*ӊ;H0Tŕ`_fe*z3ϻ', '', 0, '?'),
('Jח_yzx6O', 'wp-admin/network/privacy.php', '/home/binawebp/omsrislb.my/wp-admin/network/privacy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0>H\r5:6', '*]X8%KқR	Qf;\ne\r6\\', '', 0, '?'),
('Ȁ~_qIS', 'wp-admin/js/password-strength-meter.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/password-strength-meter.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z3r;]<|', '1y吥!}}3ɻ}}te\nt', '', 0, '?'),
('\\D >F,', 'wp-admin/menu.php', '/home/binawebp/omsrislb.my/wp-admin/menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\ߠƔ^o', ':;.>-FGyt|N[U<1&Ř', '', 0, '?'),
('laމL', 'wp-includes/css/dist/edit-site/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\sM(N]', 'wMg@Q/#|OC', '', 0, '?'),
('+x9:H0CX{)y', 'wp-content/plugins/elementor/includes/controls/popover-toggle.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/popover-toggle.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*K@LB', 'y O53by)d)''\0B;\rl?F', '', 0, '?'),
('Uhxٛ6:[ѲԀ', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z;!D', 't&$w|0@FH#', '', 0, '?'),
('OoDW!cML', 'wp-includes/SimplePie/src/Net/IPv6.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Net/IPv6.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+u=D9-/a', 'u EG;d@<XHXf}_', '', 0, '?'),
('c^fy]P', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"8 5\\Dk&', 'j\Z3ݏf@ϧ\\WCcW͢`5Ư', '', 0, '?'),
('jk\\\nD', 'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eډB=', '{P;n2*Rpۖ>8OgXGzD=I%', '', 0, '?'),
('	")"0Io', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zq\Zsq776', 'CDa$=f[Q4JW7l).=%', '', 0, '?'),
('آf?;fz', 'wp-content/plugins/elementor/modules/site-navigation/rest-fields/page-user-can.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/rest-fields/page-user-can.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E4[3O', 'oEaNݪ(Z/w\0Oz0E5e!F''', '', 0, '?'),
('㇖`(k"', 'wp-content/plugins/elementor/core/settings/editor-preferences/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/editor-preferences/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eR3BPb,', '\r*xngPb#SjY3 ', '', 0, '?'),
('ꔕTs\r%LJM', 'wp-includes/blocks/spacer/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rzP#R\r$-', 'ލ!]L13q+#u}N!"oh\0x~', '', 0, '?'),
('&Ż(', 'wp-admin/js/widgets/custom-html-widgets.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/custom-html-widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'çm8,', ' [QkߊA\nͥ@N\rV]	', '', 0, '?'),
('Jn2Wy', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nq*ZF)2', '&4"\rQjXmN"?Po\\?', '', 0, '?'),
('9K8*OC', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.finderSelect.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.finderSelect.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e&MPǢrD', ':Cb|$qy#^GLOn/?', '', 0, '?'),
('~+qX"`', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zZBWmB˯', 'Ȅ!++8,vF+3	', '', 0, '?'),
('	qdb\0rR>', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sc?+N', '`\0OmI"5SQpKdp2+)"', '', 0, '?'),
(':2\02km''i', 'wp-content/plugins/elementor/app/modules/site-editor/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/site-editor/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2\\4A?b', '2\0i\nd7g<.(Iw', '', 0, '?'),
('!م}BE', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jade.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jade.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uW''㏬ݒ/', '>p̐ZbH>L#\ZOX', '', 0, '?'),
('=}h\0)pbTj5\0', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-cards.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-cards.php', 0, 'IbH5p7mi', 'IbH5p7mi', ' өMNtuMPu\Zs}\0L\n', '', 0, '?'),
('AHM{kR', 'wp-content/plugins/code-snippets/js/types/wp/Post.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/Post.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+hKmVy	&', 'HHn!_{+pHe7o2EAA', '', 0, '?'),
('Bȭdvvqmǘ', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+6YL', 'AMI=}@;?0LYD;/ɵmȷ;r', '', 0, '?'),
('IVz\n//^^', 'wp-content/plugins/wp-optimize/includes/class-wpo-ajax.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-ajax.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l8\rm\ZƳ', 'Ez;XPM\07pFs[9qꒌZ', '', 0, '?'),
('K)H8F8Ã', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-export-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-export-controller.php', 0, '.wx 3V\\2o', '.wx 3V\\2o', 'FYVŕN\nKquqc>(', '', 0, '?'),
('O5hl(;/D!', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h<q}YY1', 'g!w?@L)3h;>e[', '', 0, '?'),
('Z-2Kn:', 'wp-content/plugins/elementor/includes/template-library/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KXіSS|', ' \\\0;\Z:^9*ư)''@', '', 0, '?'),
('c\0{2\ZsO`', 'wp-includes/sodium_compat/src/Core/AEGIS256.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS256.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y \nlc', '?-6WH]BR-}', '', 0, '?'),
('fL4"oSA', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*|՗%9', '\nw,[Q(ކA߸WM%C{', '', 0, '?'),
('j\Z;\re', 'wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GO㴍uv', '\Zg0sHƽ)>YY#ܡ', '', 0, '?'),
('jޕCUR8[', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KĴmM', '*Ro5UbER7ظE=', '', 0, '?'),
('r(O', 'wp-content/plugins/code-snippets/dist/editor-themes/seti.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/seti.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aINxe', 'ߝ ʚbrÞ\\/2}_hh"VH', '', 0, '?'),
('sWgOTUjsB]', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nq*ZF)2', '&4"\rQjXmN"?Po\\?', '', 0, '?'),
('=CѠ*TX4', 'wp-admin/css/colors/_variables.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/_variables.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qq\0\\', '\04I\ZDv`L~+)~(#', '', 0, '?'),
('jhW@\nU:', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/container-extras.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/container-extras.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6VϨm', 'R\ng>~nWwP%', '', 0, '?'),
('(Fc.}W{ F', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/template-type.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/template-type.js', 0, 'If.K\\#hO', 'If.K\\#hO', 'jGii-Go1RdcHS', '', 0, '?'),
('\Zå2(4', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>(lA#V_', 'us+I#1^#z46s3ո', '', 0, '?'),
('j/ֻ߫I%`Wd\0', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions-conflicts.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions-conflicts.js', 0, 'S\09Hh`x\r', 'S\09Hh`x\r', '܅|Veu\rqD>3`pK.;I', '', 0, '?'),
('W\0Yr', 'wp-content/plugins/elementor/core/app/modules/kit-library/connect/kit-library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/kit-library/connect/kit-library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7eWˁqm', '1<(!9S@\0c5".nW', '', 0, '?'),
('ȑ-aFU^d', 'wp-content/plugins/elementor/core/base/db-upgrades-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/db-upgrades-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I9)!D', 'E&ܰ5_am68wEip`zC', '', 0, '?'),
('ڷtgZgE', 'wp-includes/class-wp-http-response.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-response.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%*T/l,I\0$', 'Ң.gLkJ#/ZF]m', '', 0, '?'),
('9f7lR>P', 'wp-includes/blocks/comments/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mh	S/v', 'ͦNDT]۲yfM|o,5wfۋ', '', 0, '?'),
('W2i65h ', 'wp-content/plugins/code-snippets/dist/editor-themes/panda-syntax.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/panda-syntax.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c~Ȯb', 'XwfiOe3''ص=2/M', '', 0, '?'),
('jTctQ#', 'wp-includes/blocks/navigation/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'چj揥', ',S9Q6IۍI''["|`BE&', '', 0, '?'),
('ז 7Qrel', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vT=PK', 'km}|ׇvL@tivӈ', '', 0, '?'),
(' It13&', 'wp-admin/js/nav-menu.js', '/home/binawebp/omsrislb.my/wp-admin/js/nav-menu.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'юg\\1\0H|ݞ', 'Ɇp*pi\r56$bdJaQ', '', 0, '?'),
('2aJ4&X$@', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector-cron.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector-cron.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r2h})', '`߷dA8U7[rBm7*', '', 0, '?'),
('kXK', 'wp-includes/blocks/term-count/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W2bP1\r;3', 'ۅyzݫ\ZYMCJ', '', 0, '?'),
('Glݠ_', 'wp-includes/js/dist/date.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/date.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cj0вtG', 'X_Fg{Rqs Rļ	J^	ݲ*Xnͳ', '', 0, '?'),
('>Nm', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/EnvironmentVariableDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/EnvironmentVariableDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3{BkB*,I<', 'uȟ62&#i>ŷ4Ub', '', 0, '?'),
('J-狁\\"ץ&', 'wp-includes/sodium_compat/src/Core/Util.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϔ|n{L*-i˭', '͋@u,ab]jJ	\r', '', 0, '?'),
('.7]($w', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ActionButtons.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ActionButtons.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vWc\rCEgp>', 'JR!0(A2\Z$WG(IzHU', '', 0, '?'),
(':|K6Quɚm6', 'wp-includes/blocks/comment-reply-link/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8o6KRq\Z\r<D', '2L@/5;3O''U-(J8jἹ', '', 0, '?'),
(';?2S\0p', 'wp-admin/customize.php', '/home/binawebp/omsrislb.my/wp-admin/customize.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-^iJRs', 'QdRkb]u\Zƺð''n>DM', '', 0, '?'),
('HT._Ny', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/number-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/number-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r²NWX', '֞?`]?''堽$}#v', '', 0, '?'),
('N^+RT', 'wp-content/plugins/code-snippets/php/export/class-import.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/export/class-import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u/61i ', 'dY8Um{A+0!v2>\0', '', 0, '?'),
('PتNA*9&n', 'wp-content/plugins/elementskit-lite/config/module-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/config/module-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YԸ+8''%{', 'WYrYȦ;\n-af(9&&', '', 0, '?'),
('X@%1Ci', 'wp-content/plugins/wordfence/images/lightbox-controls.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/lightbox-controls.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm]a\\$', 'Ǘh?S):i@h.Xg', '', 0, '?'),
('Yʅ\0weQ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/common/google-tag-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/common/google-tag-manager.php', 0, '-@Qz7''', '-@Qz7''', 'ef\n''wC2oF3\0@*[', '', 0, '?'),
('].1\rPXL', 'wp-admin/includes/update.php', '/home/binawebp/omsrislb.my/wp-admin/includes/update.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4چrvDi', 'F\0qF|bvm״Nh%~E<z', '', 0, '?'),
('f(96yaN|2', 'wp-content/plugins/wordfence/waf/pomo/translations.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/translations.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ā\\cg', ' ϞO)3JFN,xrB\0''', '', 0, '?'),
('i<zj_!', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fsharp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fsharp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mLӫ^o', '}di25wL.RMM-<\rSG', '', 0, '?'),
('rY\0S(z|', 'wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g8EQmvOuTO', '59TQ>|_BdÏ', '', 0, '?'),
('s8''ɀ\Z%Cx', 'wp-includes/blocks/archives/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ΡC7nC\ZJ', '\Z:v\ZQ,K.\ZM&+ix', '', 0, '?'),
('u${ܨv', 'wp-includes/blocks/latest-comments.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q͇oVI', 'f)K|Ϳ@,vZz\rGM:h', '', 0, '?'),
('v+,\rk-G:', 'wp-content/plugins/elementskit-lite/modules/widget-builder/widget-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/widget-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(uVa7', 'LqЙP[~P,&$EKɃ', '', 0, '?'),
('~KɁwwfC', 'wp-admin/js/widgets/media-gallery-widget.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-gallery-widget.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{c/I<', 'y\\RTܠUtmY(㻱̿', '', 0, '?'),
('\r[\0EuJ', 'wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tm:We\04', 's	G/67Ue[_Z3b&eh6̉F', '', 0, '?'),
('4y3%k ', 'wp-admin/js/widgets/media-image-widget.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-image-widget.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';k#?cQ7(e', 'o{\rrh5Fww	LeFz]', '', 0, '?'),
('l.W', 'wp-content/plugins/elementor/modules/shapes/widgets/text-path.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/shapes/widgets/text-path.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kԾ\0RYxr}', 'Fjs/8MMF&BOm,]!', '', 0, '?'),
('| ', 'wp-includes/js/masonry.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/masonry.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';?&TJexH', '$!|=#fcjc:TQ0b,ʉ', '', 0, '?'),
('uw¶7\r', 'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '냴}Sj2Miׁ', '/~~Y~wqaжIY\n%2m}C}w', '', 0, '?'),
('Xhߤ/Ϣrd^', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pq!E', 'm~]|\\<6O!\nqش1^7n&', '', 0, '?'),
('W\rT輠9', 'wp-content/plugins/all-in-one-wp-migration/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.8/s}~_e', '?SB `rU7iu2o!', '', 0, '?'),
('1@dT qqzk', 'wp-includes/sodium_compat/lib/php84compat_const.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php84compat_const.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&ݯ]"\0Nh', '`̪J,zqNL/g.lJ՟', '', 0, '?'),
('Θr(Ł ', 'wp-admin/js/auth-app.js', '/home/binawebp/omsrislb.my/wp-admin/js/auth-app.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#LPS[f', 'F@H8݇7an#{j', '', 0, '?'),
('rӧش2*t-#[)', 'wp-content/plugins/elementor/core/logger/items/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X\n䪡jR>BR]A', 'k\Z5꾟N^/tkDTeufcg', '', 0, '?'),
('v{Cҧ4I', 'wp-content/plugins/wordfence/lib/wfViewResult.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfViewResult.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6oouiGSP', 'c\0Ⱦ,Y¤ּX(Jy', '', 0, '?'),
('\0뀄	;t/-', 'wp-includes/blocks/file/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$>-Jhab4 ', 'h%{pٍV)%Ln*`', '', 0, '?'),
('''(T"~mUc', 'wp-content/plugins/elementor/assets/svg-paths/oval.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/oval.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϥg֮Cz', '''[t^U[\n-^FZ6xa;L', '', 0, '?'),
('p$^dZ', 'wp-admin/network/plugin-install.php', '/home/binawebp/omsrislb.my/wp-admin/network/plugin-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%(Fv\0~F', 'ڙs-s~uYeTF4! *', '', 0, '?'),
('Q0!;J', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/singular.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/singular.php', 0, 'f"aBz*', 'f"aBz*', '^Yy@6lfIQ*pYŉ', '', 0, '?'),
('[Kb28', 'wp-includes/pomo/po.php', '/home/binawebp/omsrislb.my/wp-includes/pomo/po.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4@9yG8', ':ډLڃaOw={KG', '', 0, '?'),
('QiܚOE"', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#@G.', '-{I">)کZc.l_', '', 0, '?'),
('_7Mځ\\"v', 'wp-content/plugins/elementor/assets/js/ai-admin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-admin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XT|h3zLM{', '`sc+O@Z4[\0&AVL', '', 0, '?'),
('	dDxݲeJS\0', 'wp-includes/blocks/comment-reply-link/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9\r*?úg', 'UEв3T`2\r}uv.ux+$'')I', '', 0, '?'),
('\niϳQ=', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/ayx.', 'q4nߤJdR*y&ʿke	l ', '', 0, '?'),
('JHl"GL', 'wp-includes/css/dist/block-library/reset-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$XyRIS', '2bmqVɻ,5\ne3rÐ', '', 0, '?'),
('XJp', 'wp-content/plugins/wordfence/lib/wfBrowscapCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBrowscapCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TQxj', '1YTЈqW6݋h	', '', 0, '?'),
('to<MPx', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Wpc.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Wpc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J(T-Qۜ', 'dJcPhUE:uki', '', 0, '?'),
('9[E:Ѷq	A', 'wp-includes/blocks/calendar/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϛQOJB-', 'z)#6j1LTG[r,', '', 0, '?'),
('#\nɰЂ', 'wp-includes/blocks/query-title/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']l¥ˀ3', 'd"Q٥[Rf?а-[1#xr,md\r_', '', 0, '?'),
('%k¾eˮ1', 'wp-content/plugins/code-snippets/js/types/Snippet.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/Snippet.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dT:oZN', '9ҵ|LR%uʂVБ', '', 0, '?'),
(')IBv/ׂ', 'wp-content/plugins/elementor/core/files/file-types/zip.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/zip.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2mlO"gPq̱', 'n\n{ꍿ\0qу', '', 0, '?'),
('AFU"P ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6 M>\r瞀Q', '֥.7Q$P[0(	bޙ@zs{', '', 0, '?'),
('KG7,Ī2Ez%bI', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Runtime/EscaperRuntime.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Runtime/EscaperRuntime.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3<Њ@(', '\\yaNJ?g''YX:URE', '', 0, '?'),
('Sq`M', 'wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=B\nyNx{', 'EzB4/pŘ\r۞.B3', '', 0, '?'),
('X޽ApSEL', 'wp-content/maintenance/template.phtml', '/home/binawebp/omsrislb.my/wp-content/maintenance/template.phtml', 0, 'Ϙ9F!{ \Zd', 'Ϙ9F!{ \Zd', '}%''9&OXLk%҂/i0', '', 0, '?'),
(']_\Z?ʤwHo', 'wp-includes/blocks/avatar/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Rd-u', '7oWݹP*\0ӛ^Ũt', '', 0, '?'),
(']MLj]uvf', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z,*-"', 'Sh@y~^g>sT/zl,7', '', 0, '?'),
('_I,U~\06', 'wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js', 0, 'uO#1u', 'uO#1u', '	%㻱,+E{*i]nN&3', '', 0, '?'),
('hÕ7P}', 'wp-content/plugins/wp-optimize/optimizations/postmeta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/postmeta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}44ǣ}', '߳TLm18.SȚw!wnA', '', 0, '?'),
('i`0V\\J5', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-front-end.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-front-end.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!aL4tPkܨ', 'u뮁D4b$\0CjS-y)3Խwy', '', 0, '?'),
('n֢\rV5,', 'wp-includes/widgets/class-wp-widget-meta.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j+(,^b(', 'PL+witZdkZ{XV`t', '', 0, '?'),
('ol>x~I ', 'wp-admin/network/about.php', '/home/binawebp/omsrislb.my/wp-admin/network/about.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~(4G', 'j/}Ӆ\0ES̤\\Hg#Z._', '', 0, '?'),
('p\\SдGs', 'wp-content/plugins/elementor-pro/assets/js/custom-code.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/custom-code.min.js', 0, 'g_sn3,', 'g_sn3,', 'e1P8LGtBDd̓˃J-oF', '', 0, '?'),
('{ϲ"f~A?z]', 'wp-includes/Requests/src/Iri.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Iri.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jeQd2', '̣ѳj쭢&wF򝢂 j5JX', '', 0, '?'),
('}3s$>=', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckToStringNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckToStringNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T*}L}6JPk|t3', '#WwgL=Ｉ>[2]D/\r6', '', 0, '?'),
('0jlSK', 'wp-includes/post.php', '/home/binawebp/omsrislb.my/wp-includes/post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6F=o{', 'G"As\\d"KWj/	', '', 0, '?'),
('!	>oU䦍^', 'wp-content/plugins/elementor/assets/css/widget-star-rating.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-star-rating.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '北H''Kc	:', 'ͮ8l''%4gI~;q\\rc', '', 0, '?'),
('hi\n͓?', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-excerpt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-excerpt.php', 0, '''Z:r?C', '''Z:r?C', 'ňC5~S#Xee[V_i', '', 0, '?'),
('ސqic=', 'wp-includes/class-wp-simplepie-file.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-simplepie-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=ks8?Pt''h', '3V\n	cFy', '', 0, '?'),
('Cz	D', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ìaxn', 'Y\Z)CX;jۙXnES', '', 0, '?'),
('u+FG', 'wp-content/plugins/elementor-pro/modules/posts/widgets/posts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/widgets/posts.php', 0, '.œW!rGҷ', '.œW!rGҷ', 'g"8ZA؜b\n9I+\n6x1Rf:', '', 0, '?'),
('kaT', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rȟǟ|J?J', '\Z,,k;}C2ςH9VGGUDc', '', 0, '?'),
('sՌQ7o', 'wp-content/plugins/wordfence/views/common/status-detail.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-detail.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`Ufxy99g4', 'EFj՗&\nE&J՟gWk.T/', '', 0, '?'),
('E/9C.', 'wp-content/plugins/elementor-pro/assets/js/loop.a9bed2dcd86eddf71249.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop.a9bed2dcd86eddf71249.bundle.min.js', 0, 'H\Z	\ZA', 'H\Z	\ZA', '-/jjfO>a\Ze`zOJ;', '', 0, '?'),
('_Q|]`\Z', 'wp-includes/blocks/table/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ye_\rk*8', 'A''Rr;hWOؔ!F%S_s0 ', '', 0, '?'),
('*~Au', 'wp-content/plugins/elementor/assets/lib/animations/styles/jello.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/jello.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4YHU*ޓ', '0cHo $qs"c$ $}R}', '', 0, '?'),
('«-j=uN\\q''', 'wp-admin/css/farbtastic.css', '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8)}{Ch2U', '|ALMbxd8XjX.^\n\Z', '', 0, '?'),
('P\Z|%(u0)', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-css.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-css.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 9`c|=M', 'N]sַitg;4M//\r=3f', '', 0, '?'),
('шܑ4$6ƦT', 'wp-content/plugins/elementor/modules/checklist/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '92RKQy', '<MUJref.vo5\nK[Nܸ', '', 0, '?'),
('ҩ*i', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dockerfile.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dockerfile.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@,u ѹfJ[', 'b)9$\Z[P2K{fXu3[O7', '', 0, '?'),
('ugkDEK', 'wp-includes/blocks/query-pagination-numbers/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';D}WRq>]$', 'x=f\0_ꊔ\ZmLqbJ', '', 0, '?'),
('ᗏ3-4', 'wp-admin/css/colors/midnight/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '͝)s9', 'cdi\n3Ewd9*>><xJ', '', 0, '?'),
('nd24stw', 'wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zbu7', ':$bX1;)/G\n{~v79', '', 0, '?'),
('ql}Dɯb#', 'wp-includes/sodium_compat/lib/php84compat.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php84compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K-ZԘyQ6', 'i[Uk|059J,-!9', '', 0, '?'),
('bJSa-', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EW+]4&', '|\\hiLShfVqb5/V%lpX"', '', 0, '?'),
('A8t2K)zH7', 'wp-includes/css/dist/commands/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yOļ3)<\\\n', ',oZ#(3G^1'']y`nn!', '', 0, '?'),
('	K|	JdA', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_Љʓe>\r', 'xѥkCʨy3IݧYv\ZZ@@$', '', 0, '?'),
('\rv1Mq|', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɕ.T*#&WHP	*', '&J*~ 	jr%Z.v̠1z', '', 0, '?'),
(' &I	ع\0>r', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/ai1wmve.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/ai1wmve.php', 0, 'شVgṚK5v7', 'شVgṚK5v7', '0铽L=$8 z(', '', 0, '?'),
('"|I~?hr', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~^\0''Z&{E"', 'ݮH~hҗ?ON}lhLm]', '', 0, '?'),
('"ڕK[@G9', 'wp-admin/includes/class-wp-theme-install-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-theme-install-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Eͯt4nu', 'O1(9U3uM?%Jo@f', '', 0, '?'),
('#u0c}', 'wp-includes/js/dist/i18n.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/i18n.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k-]V*Kצ%i', 'ű񦇭\\݃D׎©]\\', '', 0, '?'),
('$QsPR3}/', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sU4櫋4[t', '_jAC5OylDU!\0', '', 0, '?'),
('&jBBkR!', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js.LICENSE.txt', 0, '>7y՜', '>7y՜', 'z^D}\nibpU~P', '', 0, '?'),
('''nH2^:!.ϥ', 'wp-includes/sodium_compat/src/Core/AEGIS/State128L.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS/State128L.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '83ݩ8Z#', '9/z5l''w,\\Ϸؠ}[', '', 0, '?'),
('''ƿCyM0ЍJ÷T', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/FontAwesome.otf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/FontAwesome.otf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r'']>\\v\\2\ZM', 'qoO$K]g3nÒѐ~(R', '', 0, '?'),
('+R찝)y\Z,Q', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F[q\ZB[npYI', 'pÀhV|X㺗$'',̯', '', 0, '?'),
('3!9=6ݡ', 'wp-admin/images/resize-rtl-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/resize-rtl-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MMH!YA', '2mo{|ny˃4(φ=', '', 0, '?'),
('Eحa~~p&1', 'wp-includes/blocks/comment-reply-link/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9\r*?úg', 'UEв3T`2\r}uv.ux+$'')I', '', 0, '?'),
('ET5^b)J ', 'wp-content/plugins/elementor/assets/js/element-manager-admin.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/element-manager-admin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uv''q', '_!xW5<\rh(/j3qOS', '', 0, '?'),
('F%Nf!ٷF', 'wp-content/plugins/elementor/assets/css/theme-light.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-light.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|	}kj~eo^', '߬\r+$5D\0}D[ҰJU#L', '', 0, '?'),
('G:5yb\n_', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/fieldset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/fieldset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wEsEA)''>`', '{ԢIߪTF926~RS_Ha', '', 0, '?'),
('IooԆ5nuѭH', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0?4''+̶L)$', 'Y	ORٴ@M=xMK\Z.', '', 0, '?'),
('OPTp}b\rj', 'wp-content/plugins/elementor/core/upgrade/updater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/updater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǹ.2bS@(', '<NVs [R!JrtlTf', '', 0, '?'),
('[\0-j\0\Z#', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-color-overlay-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-color-overlay-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&}zoD', 'H*#C	pGA''R9z"Sp', '', 0, '?'),
('^2^T:mJ:', 'wp-content/plugins/wordfence/lib/IPTrafList.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/IPTrafList.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`PդueVm', 'ϴCrAXͽ(Ҏ\Z#?=߲o<', '', 0, '?'),
('^mѿUyHH9\Z', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/FileExtensionEscapingStrategy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/FileExtensionEscapingStrategy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*?', '\ZDzRq!/Ak~M', '', 0, '?'),
('b0݀>j"G', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aa+JD$2J', '/#?TiOLyvuTKɤ\\ػ', '', 0, '?'),
('ew1f1>@>', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/preview-iframe.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/preview-iframe.js', 0, '^[c_P', '^[c_P', 'WRw).>O]g{}.', '', 0, '?'),
('ͯ?=\nx', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-modelist.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-modelist.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IaQT"', 'dg?MN#B%J!2q', '', 0, '?'),
('#', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rr-Y}3', '?hhG|i=cΐ+3*MJ', '', 0, '?'),
('1u', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/component.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/component.js', 0, ';d1𗗀Awm', ';d1𗗀Awm', 'ޠ밗ID&<b	F	#', '', 0, '?'),
('oV:NNg', 'wp-includes/Requests/src/Exception/Http/Status428.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status428.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/qxI圪P', '<\Z4!n*\\U', '', 0, '?'),
('Pj)QMQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/kotlin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/kotlin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}|\ri\Z_', '>@i;ىžA4ˀ&Y|}', '', 0, '?'),
('ZW', 'wp-content/plugins/elementor/assets/css/widget-text-path-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-path-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q*,y1[q', 'kCQү4\nuI$wޠHQp', '', 0, '?'),
('Fx>2R(', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/heart-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/heart-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C0UIXݥ:?', 'Qv\0o"UH_r&i 5P;0', '', 0, '?'),
('tT<`1/v.D', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.46445ab1120a8c28c05c.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.46445ab1120a8c28c05c.bundle.min.js', 0, '\Z	\n'';f+eJ', '\Z	\n'';f+eJ', 'EZ[z+),h	tP>ciڱ)SR?', '', 0, '?'),
('Kgْ', 'wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CsEp5?bd', '--p$"JTbd.wf', '', 0, '?'),
('<:-sGt', 'wp-content/plugins/elementskit-lite/modules/widget-builder/views/builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/views/builder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(q{;_', '*	\rh\nk\ny	,q|U', '', 0, '?'),
('bɕ륧j-9', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1;FtA,', ')ylQj}\rS[r1s_I', '', 0, '?'),
('sC<:<A', 'wp-includes/sodium_compat/src/Core/SecretStream/State.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/SecretStream/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':Z{5o', '<s6\0,	RauhXc', '', 0, '?'),
('QԴTR!<', 'wp-includes/html-api/class-wp-html-text-replacement.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-text-replacement.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MLjD_m̈:', '--,t 	z-R8', '', 0, '?'),
('D&74an;y', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/btl-admin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/btl-admin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GwM}Ww&q', 'P!MAiuCtSǐ', '', 0, '?'),
(')["JH|jk$', 'wp-admin/js/customize-widgets.js', '/home/binawebp/omsrislb.my/wp-admin/js/customize-widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@lXV{:l', 'ubS&`\\ܝCұf=', '', 0, '?'),
(':7-\0''Q"*d', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-22.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-22.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rK8}ͽ^*', 'i>Ѯ*GV	Cϲ}T;?N"Z', '', 0, '?'),
('?FϸAR1', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pԏd0lN&7+', '^s\n@G,ږ\n;|3P	nԔ/\rzA"\nd', '', 0, '?'),
('JTV0DoTA［@', 'wp-admin/options-discussion.php', '/home/binawebp/omsrislb.my/wp-admin/options-discussion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'upl\0OXxǕ', 'mBxIj(:XHja_p', '', 0, '?'),
('LY{Iݩ9R R', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/theme.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/theme.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' aMa@Z\n', 'W 0zٍOnDCI]	7If', '', 0, '?'),
('MD/"\0ï', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-taxonomy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-taxonomy.php', 0, '7`7Vܐ%	', '7`7Vܐ%	', ' \ZgBC46hC"ǫ塂S''', '', 0, '?'),
('MG;tV9', 'wp-content/plugins/elementor/includes/beta-testers.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/beta-testers.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʸB" ', 'QjrX\nl"J׌Ò\\l9', '', 0, '?'),
('O1kD4G0r', 'wp-content/plugins/elementor/assets/js/app-loader.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-loader.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r!{<h^\ri', '૚àg>AB8mv|jL', '', 0, '?'),
('m0ˡ<-}`', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6HFi)Aa5b', 'sf=7ΒfUQnsⰤFzV', '', 0, '?'),
('uZQ\\''', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hqAi', '	q68xօ\\s\rN~.Zخ["', '', 0, '?'),
('n/D', 'wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-mw,Q0hX/|', 'M?_Ssac\r35Kű<k<1', '', 0, '?'),
('-p拏Q+3Zv', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?HZUHѿaY', '}ݍZ.y>z-#+.', '', 0, '?'),
('S8MC>', 'wp-includes/js/dist/block-serialization-default-parser.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-serialization-default-parser.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wjvu.4', '2%zuo:\n''A\\eTU5l', '', 0, '?'),
('LvTZRК', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-imbox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-imbox.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nn8mڦA:FsF', '9y~ɴ"N+;_ѯg®RdLg\n', '', 0, '?'),
('\ny:+kjH', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D.)b3\ZBh', 'hmVlvD:p\n2gW)3tF2z>F', '', 0, '?'),
('h:}ttpkI', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/MimeContentType.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/MimeContentType.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?x&ՓV', ''':$rGP4bO', '', 0, '?'),
('?'':P\\	', 'wp-includes/blocks/site-tagline/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WA;䊹', 'Н<+[D\n4Hvֳ-;', '', 0, '?'),
('UW8$e', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-comments.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-comments.php', 0, '&qnԦ&ش%', '&qnԦ&ش%', '۝8BXB\\L^,qڋ', '', 0, '?'),
('ZjfN}Z$K', 'wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sbNѸa*E', 'Y!%R7\nBcОK0E`j', '', 0, '?'),
('ShS%Tz', 'wp-includes/js/mediaelement/wp-mediaelement.css', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%/NqORg+\\', 'F}\Z\nvn`Z!TWs', '', 0, '?'),
('6PORA', 'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '馈\\)>ebO', 'zπEL:fxSٺ-Uz|\0i', '', 0, '?'),
('ˋ_o!''ur', 'wp-content/plugins/wordfence/views/common/page-tabbar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-tabbar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qVdЌX@qș', 'SتAӤ@5|~?KBK9U', '', 0, '?'),
(';\n7ړ4t>J', 'wp-includes/blocks/post-date/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=aV', 'C`bH&2*6Թ(]3\\nڶ}', '', 0, '?'),
('Z\nuoK T;e', 'wp-admin/images/list.png', '/home/binawebp/omsrislb.my/wp-admin/images/list.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>*ӳS', '\\wT[=baCk;c', '', 0, '?'),
('䏂VܤcQ''3', 'wp-includes/blocks/comment-reply-link/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~-o', 'qQ3N Ky֦ªP~a', '', 0, '?'),
('n2@Rd', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P^1|*Q5U^O', '~@ۃP$tI7()WHn?U', '', 0, '?'),
('Pys?VĦg', 'wp-content/plugins/elementor/modules/nested-elements/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-elements/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9~W0o4', '#jɁ|.U׽\\''ޚ׸*}', '', 0, '?'),
('llxL,7WN', 'wp-content/plugins/wordfence/views/common/modal-prompt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/modal-prompt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0J.H[|E3$d', '\Zz%;onm&', '', 0, '?'),
('4)tkl#<U', 'wp-includes/block-patterns/query-grid-posts.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-grid-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/0K\0FOKM', 'Q^D拜dt5TG)ˊh`e ', '', 0, '?'),
('Uy/*%;', 'wp-admin/includes/update-core.php', '/home/binawebp/omsrislb.my/wp-admin/includes/update-core.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}m/\0[w', 'zL~z 0	VG}1#', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('g)7c>\n', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\`x\\&m_h', 'ٲIPC2X`7', '', 0, '?'),
('\rEU̈́', 'wp-includes/images/wpspin-2x.gif', '/home/binawebp/omsrislb.my/wp-includes/images/wpspin-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{%-E;|', 'u)JA92$N8''F', '', 0, '?'),
('WP旃^qy', 'wp-content/plugins/wordfence/lib/menu_firewall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!%r''NP-XϼA', '`\n\\-j-dZ{%pjA', '', 0, '?'),
('ｈa_~fmQ&', 'wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	rnl.ۦO', 'K^0:]xMj)2}qEm([bT', '', 0, '?'),
('?d\\b90j^', 'wp-content/plugins/code-snippets/php/export/class-export-attachment.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/export/class-export-attachment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WoTL', '*BSKp@֟a\\s2Wci', '', 0, '?'),
('-[IyJ!^', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/svg.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/svg.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h^Q1Q', 'U:g5o\Z͢A w.%V84', '', 0, '?'),
('6cI^`7i', 'wp-content/plugins/elementor-pro/assets/js/98217e0c00e1f53421ef.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/98217e0c00e1f53421ef.bundle.js', 0, 'y Q|gDL=`', 'y Q|gDL=`', 'lZBT+c/TjLm\n-a&', '', 0, '?'),
('=n~6/j%}0ۍĞ', 'wp-content/plugins/code-snippets/dist/editor-themes/blackboard.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/blackboard.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-`Fjʃp&', 'JT%m22$I', '', 0, '?'),
('?rC&%£', 'wp-content/plugins/elementor/core/experiments/experiments-reporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/experiments-reporter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6RJt6''6`', '	3r\rLH3jLʇ2wR', '', 0, '?'),
('Xe9', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createElement.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createElement.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3IH$oZAٿ$Y', 'N_lvZ&qi^QQo3Uy', '', 0, '?'),
('h/͔jC\0n', 'wp-admin/includes/class-plugin-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-plugin-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƤtG@U', 'O|GJP{Cb<2j', '', 0, '?'),
('lB7j	', 'wp-content/plugins/elementor-pro/modules/woocommerce/traits/product-id-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/traits/product-id-trait.php', 0, 'cܞf6', 'cܞf6', 'г*Quޱ3Em2Vԧl,Ǌ \Z', '', 0, '?'),
('xW2euvL', 'wp-includes/customize/class-wp-customize-background-image-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-background-image-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1SDM{KC(1', 'M\nK6e@zMd׽Z%d	Xҁ', '', 0, '?'),
('6?^o#', 'wp-includes/sodium_compat/namespaced/Core/SipHash.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/SipHash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r-er^!~', '`RlԥLz?iāACH󞮣Pyn', '', 0, '?'),
('TtG2L#C', 'wp-content/plugins/elementor/app/modules/import-export/runners/runner-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/runner-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'btk;', 'T<}?M 6)`Rkl]7[zaꂼb', '', 0, '?'),
('R	(,	!)Z', 'wp-content/plugins/wordfence/waf/pomo/mo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/mo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D6~.S[', '\\''_FuC)CR"(COYW!)', '', 0, '?'),
('݁Lrv?)', 'wp-content/plugins/wp-optimize/LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9o*n+/', '\0v1sN>cID٦I0-', '', 0, '?'),
('qn06疫QX5', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/animate-circle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/animate-circle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']3[', 'cyث3jF҇ʤ|\\&g~<', '', 0, '?'),
('&@pɗ', 'wp-includes/js/dist/wordcount.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/wordcount.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dQt\rZ!', 'hbTX_%	M3zK8RM', '', 0, '?'),
('uMAΜ"Iǿ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__unset.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__unset.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UF7{zh', '	#sQJ"AOFf;-^', '', 0, '?'),
('@\0S7{Oc', 'wp-content/plugins/elementor/assets/lib/animations/styles/wobble.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/wobble.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6(l>$O[IY', ',*X]ѡEg{v8,79', '', 0, '?'),
('{Z$''Q', 'wp-content/plugins/wordfence/lib/wfScanMonitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanMonitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{B蟑bh6a\\F', 'rBVd:*WU2n/', '', 0, '?'),
('ΦHc^)', 'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''{=ͺ', 'R_fW{*3ݔ	"/', '', 0, '?'),
('`]4kh', 'wp-content/plugins/elementor-pro/modules/loop-builder/documents/loop.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/documents/loop.php', 0, '}eKH]g`', '}eKH]g`', '&6[R\Z&{sJijZ', '', 0, '?'),
('ݠA"PV', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=sF?xy', '+\\F	{57bfq4\\d', '', 0, '?'),
('spe', 'wp-admin/includes/class-wp-ms-sites-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ms-sites-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dEl(;6/*A', 'M	-BjV:t;^fW/H', '', 0, '?'),
('C,FQs`Aj0', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('@Pwy3Ks', 'wp-includes/blocks/site-tagline/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"r38ߟ', 'ŲuΑu- xmoC\0/#', '', 0, '?'),
('	ӭgȱ!nP', 'wp-includes/IXR/class-IXR-client.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-client.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aJ}!W', 'Yw1v.G3edÄy`LR	]', '', 0, '?'),
('ʜ\\"z@*>\Z', 'wp-includes/blocks/site-tagline.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B-olY', 'pK12 m@т''P', '', 0, '?'),
('E:4xp', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-number.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-number.php', 0, 'G/Īu\\', 'G/Īu\\', 'fb&/ESEOd"jG\ZMv', '', 0, '?'),
('\ni_a*>dnP', 'wp-includes/blocks/post-excerpt/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=u`6RB''', 'X9s3|ya,[a1', '', 0, '?'),
('\rTX [', 'wp-includes/php-compat/readonly.php', '/home/binawebp/omsrislb.my/wp-includes/php-compat/readonly.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sga,', '$S\nC+b,bTrQS9>', '', 0, '?'),
('ڢTck8', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&PS''Z5Z}', 'qa#T0Tn=8X\nBg%΀L', '', 0, '?'),
('$ebv_ei', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	l#Y^=u', 'r=X,lU*F] ZQ[6qф', '', 0, '?'),
('+GT̡-}', 'wp-content/plugins/elementor/modules/home/transformations/create-site-settings-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/create-site-settings-url.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N@KI$U	d\nO', 'j0Xq\\M&/Uw|*', '', 0, '?'),
('-18;T/X]', 'wp-admin/ms-sites.php', '/home/binawebp/omsrislb.my/wp-admin/ms-sites.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f3&S7F76', ',$yn)RHgh{$U', '', 0, '?'),
('S*/iH=g', 'wp-includes/blocks/term-count/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5s2V', '+{CP4NT`aߧ+`UeA', '', 0, '?'),
('[k5f/u0', 'wp-includes/blocks/post-author-name/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q׊TblG', '7."𜒸\\;j-h|_%', '', 0, '?'),
('`B7o6I>j6dF', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/search-form.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/search-form.php', 0, '<?l', '<?l', '_%yLCk,9u>mp\Z', '', 0, '?'),
('b oGkA+3#9', 'wp-content/plugins/code-snippets/js/components/SnippetForm/page/PageHeading.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/page/PageHeading.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.N'' h݉g<J', 'AL`c	|joH-', '', 0, '?'),
('d@\n`?$l', 'wp-content/plugins/elementor/app/modules/import-export/processes/import.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/processes/import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'їJog۶VF', '''a}PuZ''}p$ Q`', '', 0, '?'),
('j<MDd4m', 'wp-admin/includes/ms-admin-filters.php', '/home/binawebp/omsrislb.my/wp-admin/includes/ms-admin-filters.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʊ_\\h\ZE', '5GF[PrT''xOQ1ANHdw\\', '', 0, '?'),
('<s3!p', 'wp-content/plugins/elementor-pro/modules/notes/database/models/user.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/user.php', 0, '\07E#X', '\07E#X', ':ԝj$bz=+Sc8', '', 0, '?'),
('+H8&Z~', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߍ"+\ZGZ', 'B9%I?ᓂ=U]8+3fg', '', 0, '?'),
('ʐ	\ZmaF,e', 'wp-content/plugins/elementor-pro/modules/notes/notifications/user-resolved-notification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/user-resolved-notification.php', 0, '娗ۄ=', '娗ۄ=', 'NkvUdVMMEcqv', '', 0, '?'),
('I6+%', 'wp-content/plugins/elementor/core/frontend/render-modes/render-mode-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/render-modes/render-mode-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4EsW?BWt:', 'x~1HDs3', '', 0, '?'),
('yrqhd.mK(@~E', 'wp-content/plugins/elementor/includes/template-library/sources/local.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/local.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`^p]_''Z', ')wD/:	CiP, ta-A"\0$Z', '', 0, '?'),
('y̐o!', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/brands.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/brands.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~xJZ', 'E!rfr^Co)Ep', '', 0, '?'),
('Zw`+W', 'wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YzcX}aZNJ', '/9|\02Q9֢G~O^Λ\rq\n>', '', 0, '?'),
('Ρ~ߓ:eo', 'wp-content/plugins/wordfence/images/icons/tick128.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/tick128.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ğch4"', 'V}X e~G[C峆5', '', 0, '?'),
('Λ\\Lp', 'wp-includes/blocks/comment-content/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nFMj\Z', 'f!v}>CNM\0I7""8IT', '', 0, '?'),
('(觨:pR/', 'wp-includes/class-walker-nav-menu.php', '/home/binawebp/omsrislb.my/wp-includes/class-walker-nav-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!E\r+\r', '&0eͥ_O`E*9', '', 0, '?'),
('w#;lƼ"', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scss.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scss.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NgrIJO', 'µ(<p1IP*\0%\\', '', 0, '?'),
('N6mk', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/duplicate-post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/duplicate-post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k`nPY', 'x+s<hZg?NDC{\ZA&?!htC', '', 0, '?'),
('?X''', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/plugin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<eb.kX;', ';\rUt)\n8`og', '', 0, '?'),
('(5aHyo,X', 'wp-includes/js/jquery/ui/tabs.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tabs.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%	EݘI\rmkF', '\\E	xy@n6*mTk''>,U', '', 0, '?'),
('s	ؤ', 'wp-includes/class-wp-http.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tb!KVO', '3B@#i:^Vung0|)eL8W[', '', 0, '?'),
('KGv\n{.', 'wp-content/plugins/wp-optimize/js/heartbeat-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/heartbeat-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gk&L	[-', 'H~z;M;]ۻ|', '', 0, '?'),
('/7ñcxpg', 'wp-content/plugins/wordfence/views/onboarding/fresh-install.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/fresh-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?-VfO,`0', ':!:iD7Bisw4>=Yn_', '', 0, '?'),
('ڥ^i$&', 'wp-content/plugins/wordfence/lib/wfCredentialsController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCredentialsController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g TTƋ', 'ǟNu_x/.ǐgP}#3W', '', 0, '?'),
('"Ԫ''G|:m', 'wp-content/plugins/code-snippets/dist/editor-themes/shadowfox.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/shadowfox.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PGBT!kvBΔ', 'M>12\nO@JR?M*G_^Z', '', 0, '?'),
('$͓bHn,\0-', 'wp-includes/images/smilies/icon_confused.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_confused.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/#	Ӣww$x꾓Y', 'U0\\LXfXƦG\0T$a5UB', '', 0, '?'),
('+2`~]x', 'wp-content/plugins/elementor/assets/js/responsive-bar.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/responsive-bar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z},ԶIKl+ɫ', 'x -?x{U˕\Z]Lz	', '', 0, '?'),
('-췓9ExZ', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XwTgA}\n', 'kcQxe˳`=n6X5ydz5u]WB''', '', 0, '?'),
('2Jˮ$瓬}HC', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/templates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mtHғtb', 'O{I-͢7*|zam/o', '', 0, '?'),
('=Ma寂/T', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-menu-item.php', 0, 'VVX|PMt', 'VVX|PMt', 'gxGYl''B]'']G.?', '', 0, '?'),
('E&}E40Uq', 'wp-content/plugins/elementor/includes/interfaces/has-validation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/interfaces/has-validation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b+gޮ!m"l', 'py?թ=t[uCew9c(iݿD', '', 0, '?'),
('F`Gff&x', 'wp-content/plugins/elementor/assets/css/frontend.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8@Kxc]j1#', '4U^f\0\0Cy?', '', 0, '?'),
('Iۑ`"N', 'wp-content/plugins/wp-optimize/images/notices/sale_collection_24.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_collection_24.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[u3#ċ17M', '23&fO;\\\n\ZyV|Hw~', '', 0, '?'),
('MTTu5SIuA', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/NotFoundException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/NotFoundException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U|(#l', '\\53VY+ފ+޷C5I=x[KT>', '', 0, '?'),
('NZNDN>Y	', 'wp-includes/js/dist/components.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/components.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';:;)ΠF', 't(A$Z*ԃ54''', '', 0, '?'),
('N໅"}LULX', 'wp-content/plugins/elementor/includes/controls/gaps.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/gaps.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(c0S', '[F^gCUF])k]', '', 0, '?'),
('SG.6pjE', 'wp-includes/js/dist/private-apis.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/private-apis.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_6E俕w%t', '`A8ќawJ[s', '', 0, '?'),
('lGEx2\ZU', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-wp-admin.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-wp-admin.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gjS', 'H`+pN~uf+R!,', '', 0, '?'),
('rlVDBA4a9', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?N', 'iCűՓ7f!hpBAn', '', 0, '?'),
('s$lAF-^', 'wp-includes/blocks/group/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\	ʝ=fZ9U', '\ri$y+h?j魾\Zb3sJ)', '', 0, '?'),
('{4.##', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"VWK޺T40~v', '#tOpR]@j|', '', 0, '?'),
('ܰ_~h	sc', 'wp-includes/blocks/spacer/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '64g1)b', 'SWli"k0ML[T', '', 0, '?'),
('c1;!oe', 'wp-includes/blocks/post-author/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'եb*(J2M', 'D3-NOx(\0@zxd''pED\0', '', 0, '?'),
('Nnqћl?', 'wp-includes/blocks/post-comments-link/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j\nz', '''N2Yly7xHy|', '', 0, '?'),
('I.E(#S', 'wp-content/plugins/elementor/core/logger/items/js.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/js.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JJ1IՂz', '%Y܇\ne\\YiZr', '', 0, '?'),
('qōU>h', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/slim.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/slim.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>HP3yʶ', '"΃xDurT	\n', '', 0, '?'),
('Q&ŽͬGo%', 'wp-content/plugins/wp-optimize/images/features/geolocation.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/geolocation.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|TN#w\0', '0eYH0΢0Sĩd̃', '', 0, '?'),
('wZ^/֥ɽ', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/by-author.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/by-author.php', 0, '"?P)"', '"?P)"', ';ҵJ2U4d&', '', 0, '?'),
('/Q8Qv', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ahۗ`x]\r', ';y&(OucI`JSRi=G', '', 0, '?'),
('XTLg', 'wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/export.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/export.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M|el/', '%	+ѳ_A;QDSஜ1A', '', 0, '?'),
('w:Y`칇', 'wp-content/plugins/elementor/assets/css/templates/widget-star-rating-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-star-rating-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-9 \Zi', '"w@DB(ܵf;囐6', '', 0, '?'),
('3Cb,U', 'wp-content/cache/wpo-cache/omsrislb.my/contact/index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/contact/index.html', 0, '3B{FV\0', '3B{FV\0', 'qHt9S[Q;', '', 0, '?'),
('pBr\0U	BR', 'wp-includes/blocks/require-dynamic-blocks.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/require-dynamic-blocks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pjzy(', 't\n2"yM;+''ڭ308;', '', 0, '?'),
('4ȳ^{~>|', 'wp-content/plugins/all-in-one-wp-migration/functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g|N&DX', '|}yjb	pJ"Gܘ;"', '', 0, '?'),
('v''j@-*', 'wp-includes/widgets/class-wp-widget-media-gallery.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-gallery.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':cb"/[y', 'A@I3ty[gq\n\r83V', '', 0, '?'),
('X-Of', 'wp-includes/blocks/nextpage/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ei@FF\Z', '-!`,#ál៳DTD	v8=Y5F', '', 0, '?'),
('RxgS8f$', 'wp-content/plugins/elementor-pro/modules/notes/database/models/note-summary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/note-summary.php', 0, '@+0v=&=^t', '@+0v=&=^t', 'Aji?Dd3E4t[74<]@', '', 0, '?'),
('\n]Eg7Oqb', 'wp-includes/sitemaps/class-wp-sitemaps-registry.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S$\nX''(', 'a:!XA2Y[n\ne,ASI$.', '', 0, '?'),
('njP+', 'wp-admin/includes/class-custom-image-header.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-custom-image-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I}.>&8.DA#WJ', '#Nb(6Jr>h', '', 0, '?'),
('\ZBi/6', 'wp-includes/js/jquery/ui/effect-clip.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-clip.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"uR~p', '^%Dl\\Bpo%0*', '', 0, '?'),
('#{Euүy+', 'wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ejcm^)åtV;', 'Nu.q--uvJv+$\Z\Z0Qp=', '', 0, '?'),
('0~7bEcgm', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KZM\n	7~c', 'Of5\r=Kf9Qv<ߔ}4U &k@', '', 0, '?'),
('5?x+b=J', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/header.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/header.php', 0, '}ܽB7J%W9', '}ܽB7J%W9', '4乻dW9S*@L${ӠI', '', 0, '?'),
('8u7h@jx"5', 'wp-includes/class-wp-block-template.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l<Zr\rc%', ':[#d5PN5\Znlo', '', 0, '?'),
('LyE{f', 'wp-includes/css/dashicons.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dashicons.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lP''áiΥe(', '?-\0ctC56ӈ#', '', 0, '?'),
('U߷ 3Wi"\Z', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0{BYD%', 'qa#T0Tn=8X\nBg%΀L', '', 0, '?'),
('f#GD', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/PriorityInput.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/PriorityInput.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']P\rtdA', 'oDV\0?MU<6L.KisA\\M', '', 0, '?'),
('f$ID', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/checkout.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/checkout.php', 0, '\rajĘҜ', '\rajĘҜ', 'v\Zӈps?ܶ33o', '', 0, '?'),
('gbf\r\Zъ', 'wp-includes/blocks/rss/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$\\W%^C)t sq', 'Ss1Nl\Z̧n[)(4\re', '', 0, '?'),
('j14n#fL', 'wp-includes/l10n/class-wp-translation-file.php', '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(k^qS2?', 'T@~.~}G1	WZo[Ś}w?', '', 0, '?'),
('kULǡ$', 'wp-admin/ms-users.php', '/home/binawebp/omsrislb.my/wp-admin/ms-users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '³u~]*Cu\0', 'es}k_q}~G[5Qu!', '', 0, '?'),
('rn`	m$\0V', 'wp-includes/blocks/media-text/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jgweޝf\\', 'uQ/Ma-@=!*', '', 0, '?'),
('}ƈewyG', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r57p3', '`(~x7<\\''h1TT?', '', 0, '?'),
('~hW\nD&5', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/style-variant.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-variant.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z<c\\{i#', 'Kݗ[Ui|yq?|\\H', '', 0, '?'),
('=V|,j ', 'wp-content/plugins/elementor-pro/assets/js/load-more.8f98bed743a24a6c0d3a.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/load-more.8f98bed743a24a6c0d3a.bundle.js', 0, '÷EDۄҺ9', '÷EDۄҺ9', '7p8s3l9v?/xw׻W>/c', '', 0, '?'),
('sx6+', 'wp-content/plugins/elementor/data/v2/base/processor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/processor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^嵈\nAW>', 'Y!\Zs>ȵkR9#><"''SqX', '', 0, '?'),
('=-Xԍn{]pf', 'wp-includes/js/wp-embed-template.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed-template.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f%W^my4$', ')Ar\rt@jY', '', 0, '?'),
('wei!<sy\n', 'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h8FK3Eqs', '0TEVa~''55h4o՞{Mɱ''', '', 0, '?'),
('C04P/>', 'wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H׌R:{b.', 'riΡ%\Z)6힍ݙ*xn', '', 0, '?'),
('۝w6Uu%', 'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۧ^aʭV', 's6m]:3HPѺ0\Z', '', 0, '?'),
('\\JRَnx', 'wp-includes/blocks/navigation/view.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R&OO<!', 'NgV&(`<s󪠡?4&+', '', 0, '?'),
('fSuBͥ?^yO', 'wp-admin/css/themes.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/themes.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b7Iv&@!Ԓy', '[nlDt˛܃Hg~', '', 0, '?'),
('#+yB\0A^_', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R%iG2X', '̛m(81xTWB\\	', '', 0, '?'),
('&9-Z', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0E9c=''	\0', 'xٵ;Pi|:\r\riHäa', '', 0, '?'),
('{^WC', 'wp-admin/css/colors/ocean/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N$4iuJ`', 'Y)AYYWh1ȓ6cW菃x', '', 0, '?'),
('\n1,', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/stroke-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/stroke-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y\Z^0r5aM4I', '|l)a<ti\r,''j[N@O', '', 0, '?'),
('IvY44', 'wp-content/plugins/elementskit-lite/modules/layout-manager/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7Aq/m)?J\n', '=\Z\0T%\Z|>ݖ\Z_OBd', '', 0, '?'),
('}\0?\\TOE[7Q', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-browser-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-browser-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Da%\rr', '>v''m/%+d{!sBhg', '', 0, '?'),
('ÇJVW]I', 'wp-includes/blocks/table/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U*N.y^Ϗs', 'Z>t>7^ҙ_ͧhvk', '', 0, '?'),
('i4ςmP]', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-header.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-header.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V\nObZO', 'kz''ʺ`1#M+l	B', '', 0, '?'),
('"GepoN*', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vbscript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vbscript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OXu(', '"OSJ* 9)VbbT7\Z;', '', 0, '?'),
('ڄgjg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/sweetalert.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/sweetalert.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M_$rfvi', 'FJq_?ar\rPCьO9p(F', '', 0, '?'),
('$[tCŤIw', 'wp-includes/sodium_compat/src/Core/Curve25519/Fe.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ρ2ANaiJu', '?GR_|, ̘߀\Z', '', 0, '?'),
('讨6', 'wp-content/plugins/elementskit-lite/widgets/social/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~B^{)OĤA', 'D%z{\rܧ"''vc<fwԖ\n', '', 0, '?'),
('m5u1}', 'wp-includes/css/dist/block-library/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WZbRx6', ':*w;2sލUBZO`/V', '', 0, '?'),
('eV/Pĵמ', 'wp-content/plugins/elementor-pro/core/editor/template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/template.php', 0, '(hNփ0y(*S', '(hNփ0y(*S', '^Cq9vv]~T]ѦJ\Z', '', 0, '?'),
('&B5VAUU,', 'wp-includes/class-wp-http-cookie.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-cookie.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^zW\n%X6R?z', 'xgmgEv|	r"@_q', '', 0, '?'),
('+pLw#47TO', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/data-tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/data-tag.php', 0, 'CaD\nXx\r=a', 'CaD\nXx\r=a', '3=*%01j51}Te', '', 0, '?'),
('1Abȱ8EN', 'wp-includes/blocks/group/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B1׽p)Nn', 'OՓN)x|.li`cdOls', '', 0, '?'),
('Oű9', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-webconfig-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-webconfig-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/<	|s˟|Wm', 'Lb1jqԸ7@:6n{b6	mV', '', 0, '?'),
('_f;waځ', 'wp-includes/js/tinymce/skins/wordpress/images/gallery.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/gallery.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_PwPU4', '<W~ض+hN91_3ws', '', 0, '?'),
('`":DJ$', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icon-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icon-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' q8?qM{~jv֋', '`؃.gVǔ/u[', '', 0, '?'),
('oU1.oℊ\0', 'wp-content/plugins/elementor-pro/core/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/utils.php', 0, '%\nN]-0', '%\nN]-0', 'w0L\nQa*?\n-~A', '', 0, '?'),
('u<ex@ֈ>', 'wp-includes/js/underscore.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/underscore.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?A\0&(7ǶL', '5zK4,i@!iYEy', '', 0, '?'),
('~5z✭N/GL', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Nk!N@', '=Ot/8| w0ut<w08fz', '', 0, '?'),
('q?%rp07q', 'wp-admin/css/colors/coffee/colors-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gQVؾ9=', 'k!z2=*4V$7?=:,f', '', 0, '?'),
('C	#aS[', 'wp-includes/sodium_compat/lib/stream-xchacha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/stream-xchacha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#,>Ge>Qr.X', 't@DZ+omW@B<:m6\ZI( ', '', 0, '?'),
('CYх8', 'wp-includes/SimplePie/src/Gzdecode.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Gzdecode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g}yyqvu', '$.}|\ney/{U|yr', '', 0, '?'),
('ŤFX/A	', 'wp-content/plugins/elementor-pro/core/database/join-clause.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/join-clause.php', 0, '몳	#}%õr', '몳	#}%õr', 'ExV{ꖢb,]=fo"\0}\\찠', '', 0, '?'),
('M\0wlǚ', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k$[nQ|,kiR', '"Ha֞.(}(!)#', '', 0, '?'),
('W$HD!;1D', 'wp-content/plugins/elementor/assets/lib/animate.css/animate.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animate.css/animate.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n3G;KE', 'a;8#"\0M0ܤ̨K[\Z2 ', '', 0, '?'),
('ο8zh!ڂ', 'wp-content/plugins/elementor/assets/mask-shapes/flower.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/flower.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uc=$_M.6z\\', 'Z+bŽn:h7BlC3', '', 0, '?'),
('fT\n؇wP', 'wp-content/plugins/elementor/app/modules/onboarding/features-usage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/onboarding/features-usage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	!QT\Z𱿘 ', '+\0.͘ShGtix(t(\r8', '', 0, '?'),
('ͺ.jJT2[', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6vAUhރ-#', ')8,ƨCulR30^', '', 0, '?'),
(')Iϋr ', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!>^hL9a|', 'k>3Piva#}?,n\\H3{\\X', '', 0, '?'),
('zvo:B%', 'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ih%u-C\0', '"Y¤&6HU^''$=_;>', '', 0, '?'),
('xЙ)DC<', 'wp-includes/js/customize-models.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-models.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''~G~Ԟ', 'h3XVxpTOSSfb\rE捵', '', 0, '?'),
('	h16"S', 'wp-includes/blocks/comments-pagination/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?M}c4ǻ\Z', ' e\0FmHƑ~Ve2al', '', 0, '?'),
('~U"&', 'wp-includes/images/wpicons-2x.png', '/home/binawebp/omsrislb.my/wp-includes/images/wpicons-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nVo$Of~7', ']کA=ђ%q%aMBUp', '', 0, '?'),
('t~*ֆ', 'wp-includes/blocks/page-list/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I-e"`Cʰo', 'xx_̎d㟢`V*u', '', 0, '?'),
('Y8jCG#', 'wp-content/plugins/elementor/modules/favorites/types/widgets.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/types/widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U(0\nM', '96JSx?pC]\n=#@ц(', '', 0, '?'),
('\r՟)z', 'wp-includes/blocks/footnotes/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0bk.3Ի۴', 'S(:`+ %ǴXfE', '', 0, '?'),
('z(;O4h', 'wp-content/plugins/wp-optimize/templates/notices/horizontal-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/horizontal-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8|oA', '6dIvO:ˋ+J!b:cʅxJ', '', 0, '?'),
('W2DG7V', 'wp-admin/css/common-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/common-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V5d}\Zgv>=', '&bBl%R10>KM`v8Q9', '', 0, '?'),
('M~\nT|', 'wp-includes/js/mediaelement/wp-mediaelement.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ꕂvEK?\r~_', '!?[_r=&\n-%!y\r', '', 0, '?'),
('*N|ra 6', 'wp-content/plugins/elementor/assets/js/beta-tester.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/beta-tester.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b5x\nH&m;', '#xh$hgk31~^d', '', 0, '?'),
('0W''PmηX', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/ekit-layout-library.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/ekit-layout-library.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#9ߋ\Z6[ZoW', '{G<eNљß~5^m˝O_', '', 0, '?'),
('C!ۧdЎ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/FactoryRuntimeLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/FactoryRuntimeLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qii', '1E<cOMe]M''J', '', 0, '?'),
('FmPȶM#?', 'wp-content/plugins/elementor/modules/promotions/controls/promotion-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/controls/promotion-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' t#H~y', '~9)})qq[/"h?x', '', 0, '?'),
('Rkdm\r16;', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_75_ffffff_40x100.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_75_ffffff_40x100.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DÎ', 'f(悁C,\Zj4_~=5t5', '', 0, '?'),
('Vb(ktW"6(;ƴ', 'wp-admin/includes/class-wp-media-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-media-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ut]=~', '3]dpB4//\0CF:L', '', 0, '?'),
(']`Za5ԋ', 'wp-content/plugins/elementor/includes/template-library/sources/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vbq', '+lbv}A+7XyܓaI', '', 0, '?'),
(']lMJlY5', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/internal-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/internal-url.php', 0, 'bԋzNd', 'bԋzNd', '֩qdY~dٸ*)sg*U0R+B', '', 0, '?'),
('hH֕wy', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-date-time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-date-time.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+Ն[o8D^\Zi', 'Kɷ\0Pyo]؂ˡ):D5NpS', '', 0, '?'),
('iȜ1\08', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S;h8^gR', 'mfʬSXT8A-g', '', 0, '?'),
('meS	0gМ', 'wp-content/plugins/elementor/core/experiments/non-existing-dependency.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/non-existing-dependency.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''~SD7e7', 'iG6Q+[u', '', 0, '?'),
('|]D\Z.E', 'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-progress-element.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dꫯy5pc', '0(5D=UԔ~ڈI")7h', '', 0, '?'),
(';&X/H', 'wp-content/plugins/wp-optimize/images/features/lazy-load.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/lazy-load.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0cDaY-f9', 'Z5gGOgR''6', '', 0, '?'),
('hkkd#v', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/common-functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/common-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zj/~l', 'Bl~V6tA|[<NyM Hm[a', '', 0, '?'),
('q{N\Z', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o׾0P>', '6\0	[yVd:3i8%__6.', '', 0, '?'),
(' Gnƙ)6OK$', 'wp-includes/blocks/accordion-panel/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n\r8hDL', 'M~IQT>o1EU', '', 0, '?'),
('a?UT', 'wp-content/plugins/elementor-pro/modules/forms/classes/activecampaign-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/activecampaign-handler.php', 0, ':^έ+})-C', ':^έ+})-C', 'үN*jDRV\rF$B;(~', '', 0, '?'),
('\Z3y^Ygn؄w', 'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')/4;$۔ެvi\\', 'ni뗅NvX7Y]D', '', 0, '?'),
('8OZh?={?u^', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/base-migration.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/base-migration.php', 0, 'B.踋)', 'B.踋)', '_Cp]oEhR+''ûy\\', '', 0, '?'),
('uY', 'wp-content/plugins/elementskit-lite/widgets/testimonial/common/link.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/common/link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D)BѦȊ&x', 'Rz?\Z:_ކ3"W8Pl؃L\n', '', 0, '?'),
('vTC', 'wp-content/plugins/wordfence/lib/wfVersionSupport.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfVersionSupport.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ZM< [', 'OkN?-ױZ$˯lﷸ^i', '', 0, '?'),
('W#~(V', 'wp-content/plugins/wp-optimize/templates/cache/page-cache-cloudflare-placeholder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache-cloudflare-placeholder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l!aNT=&s', 'O]\\ĳ}klmUR1?ٞ?ʅl''', '', 0, '?'),
('"r6< w', 'wp-includes/js/dist/script-modules/block-library/file/view.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/file/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ጚHf I', 'yeJTGЈVK9рkԜ', '', 0, '?'),
('ёy9$-', 'wp-content/plugins/code-snippets/php/views/import.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%''OocG', 'zL0IA4Z-''hSa', '', 0, '?'),
('贲PC', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P$˶=G', 'g8.S6-1\\', '', 0, '?'),
('aƔ\0a''\\?', 'wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm=ŽY9ৱX', '!V	vhm+;8fؠ$xn-3{', '', 0, '?'),
('ս@	3(\n$;', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/ParameterNameContainerResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/ParameterNameContainerResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GNFF37', '!\rz{+,m1=}D''&\0毮Qz', '', 0, '?'),
('Z\rjA}s,<S', 'wp-content/plugins/elementor/modules/system-info/reporters/wordpress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/wordpress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8J`\Z`I-', 'A-ԝ7LIKgÖr1(?z', '', 0, '?'),
('M1ROnԁQ\0', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BotbleInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BotbleInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vKX;uO', '{OޟKf', '', 0, '?'),
('70K#', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@L|5vA', '=hqb\Zw1-9 3}3+`N', '', 0, '?'),
('E#a&a', 'wp-content/plugins/elementor-pro/license/notices/trial-period-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/notices/trial-period-notice.php', 0, 'jNAof+ѵ', 'jNAof+ѵ', '3nuٿ=@M9L(g+v', '', 0, '?'),
('`iQ9px»', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__call.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__call.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L\\NguVpC', 'Z_\Z륰gEH''s?!ZX+V', '', 0, '?'),
('\n\0ںAzR', 'wp-content/plugins/elementor/assets/svg-paths/line.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/line.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iwW"|_ࢸ', '#ܵmꫣ`ּ;Px*z5', '', 0, '?'),
('߲;0', 'wp-includes/feed-rss2-comments.php', '/home/binawebp/omsrislb.my/wp-includes/feed-rss2-comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GHݭv', '.?U%OΙx!-', '', 0, '?'),
('Rs-!8', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/liquid.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/liquid.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i/q\nH, ', '95w͞ZGF', '', 0, '?'),
('Vw#_\ZR*', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=sF?xy', '+\\F	{57bfq4\\d', '', 0, '?'),
('ob5Xi\0ʚ', 'wp-content/plugins/wp-optimize/js/wpoadmin-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpoadmin-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y~4uE', 'SHo[*wD]V!P', '', 0, '?'),
('!-LHv)n#', 'wp-includes/https-detection.php', '/home/binawebp/omsrislb.my/wp-includes/https-detection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~y]k>', 'ʧV?OkNRt٨r1J', '', 0, '?'),
('+h,\Z:R;(%N', 'wp-content/plugins/elementor/assets/css/modules/container-converter/editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/container-converter/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ble\0..i\0e?', 'Tj@Gr)r#W4 w%', '', 0, '?'),
('/L,b9\0ȱe', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/YieldNotReadyNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/YieldNotReadyNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a[\0/18-\\w', '(ZeR0&6P+#[\rb5_t}Q', '', 0, '?'),
('9vڊWFc!', 'wp-content/plugins/elementor/modules/global-classes/utils/response-builder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/utils/response-builder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NZ7#F.\0RA', '\rC	JzHKJ!`KKEh', '', 0, '?'),
(';8^\r<CUVD', 'wp-content/plugins/elementor/includes/tracker.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/tracker.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'snIbCH', '6IO_hxuIaExwQۆ', '', 0, '?'),
('<g=C״qD', 'wp-includes/customize/class-wp-customize-themes-panel.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-themes-panel.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"3@\rjK', 'C:.:#<A2V', '', 0, '?'),
('?n9SR"_', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[dcJi@', 'VMpw3T5ڮrŧ', '', 0, '?'),
('Mb\0(Y!#', 'wp-includes/blocks/terms-query/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/terms-query/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TshIR0[YD', 'ȭK upn5IPMESC@\0|Do', '', 0, '?'),
('PC<	vnR8', 'wp-content/plugins/wordfence/images/tools.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/tools.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@cI', 'Y=RB)	~ܖݟr', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('T܀1[', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E"gkkN', '?V:eFGi]̟[\0֣HL', '', 0, '?'),
('V\\vӄXsؿ', 'wp-content/plugins/wp-optimize/templates/database/status-box-contents.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/status-box-contents.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƺ''+qq,l', 'I''l<o b\\&k<t8', '', 0, '?'),
('c\0>zȺ]', 'wp-content/plugins/code-snippets/dist/editor-themes/paraiso-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/paraiso-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n>	΍@}yp>''', 'bb(La><"4=v', '', 0, '?'),
('v>8''T6X', 'wp-includes/js/jquery/ui/progressbar.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/progressbar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0o4x*\rg', '!Hy	,:zdV#c', '', 0, '?'),
('~$Gj9P', 'wp-content/plugins/elementor/modules/wp-cli/cli-logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/cli-logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i2[V5Z', '3:%!\n^pjI5Oؿho[/', '', 0, '?'),
(',M;v', 'wp-content/plugins/wordfence/views/dashboard/options-group-import.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JuK.5?g', '4mdDX<"y1U8$p', '', 0, '?'),
('3T.^ƙ<', 'wp-mail.php', '/home/binawebp/omsrislb.my/wp-mail.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E۸\0Wʎ;8', '%e\r#gfs.ҫG', '', 0, '?'),
('0KN!t', 'wp-content/plugins/elementor/core/files/assets/files-upload-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/files-upload-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o&Һt]3aeA', 'UFZۂ\Z))Y[fWLH3=', '', 0, '?'),
('''@S D', 'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U?q>@p', '\0{aq(w!Iz}+lx/I09|1%', '', 0, '?'),
('/$UEI,@s', 'wp-content/plugins/code-snippets/dist/prism.js', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/prism.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-\ZF@Cu$', 'tڎrԇ68+F@rLY', '', 0, '?'),
('Ɉ{&jR', 'wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mBY\rQM8k', '(7c_s\rCYhRO+CUҌ˿q@', '', 0, '?'),
('Ad:<)8CJ', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '҃:L)#|Y', ';o0Pzq\\B4u*m33n:+', '', 0, '?'),
('KOȖ93|<', 'wp-admin/maint/repair.php', '/home/binawebp/omsrislb.my/wp-admin/maint/repair.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?.ش|vɬkn', 'P)*s]<\Zpc=x?ec', '', 0, '?'),
('І}볙T', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-perl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-perl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yJpCWFV', 'Ϛ`,)F)fvZ88A%C.\\6', '', 0, '?'),
('M{xJH', 'wp-includes/blocks/pullquote/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ҵ%a;', '>Q ٘5,ý}a\0in', '', 0, '?'),
('\\]]9d!H\Z', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?N', 'iCűՓ7f!hpBAn', '', 0, '?'),
('C8̙\\6', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ѦI98޷x"', 'IrkOO"JφdٕH2b ϭ,zZ}', '', 0, '?'),
('I.$U0]''S_', 'wp-admin/includes/widgets.php', '/home/binawebp/omsrislb.my/wp-admin/includes/widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OIt;', ']]\Z&˾Qfcy:dO', '', 0, '?'),
('ꑉ}OaTTN.', 'wp-includes/blocks/search/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e\n\r1p=', 'I_:M>٠}.', '', 0, '?'),
('*DJ7y', 'wp-content/plugins/elementor/assets/shapes/arrow-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/arrow-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x^(Ƥ٧\0', 'm2\0>4ɽ,cU"_o', '', 0, '?'),
('+DFܿTZ[H7', 'wp-admin/images/post-formats-vs.png', '/home/binawebp/omsrislb.my/wp-admin/images/post-formats-vs.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SlH\\', 'etw|W{xy%K:QE7', '', 0, '?'),
('^>O޻xS`jS', 'wp-content/plugins/elementskit-lite/widgets/icon-hover/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-hover/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƌb<~~g', '%ESlk-7Wd%\n', '', 0, '?'),
('@?$־', 'wp-content/plugins/elementskit-lite/widgets/faq/faq-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/faq/faq-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r0'':?9m\Z.z3', 'F:d.=FX15j?eLf', '', 0, '?'),
('\Z[M[\r', 'wp-includes/blocks/columns/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '´`boFIK', 'dף!x`J&ͽ{', '', 0, '?'),
('''RJAi,vlDS', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ApplyTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ApplyTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SdԒtD-Ϲ', ''':q\0Ic%<', '', 0, '?'),
('<3v&F', 'wp-content/plugins/wordfence/views/scanner/scan-failed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-failed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}\\fD|2u', '3C&i8ʍ9MgoApzo@', '', 0, '?'),
('A?]\\8PMTl', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0ǰ{8}zl', 'jG~.''G*''S3t~ӆ', '', 0, '?'),
('GV\\z#!;', 'wp-includes/js/media-audiovideo.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-audiovideo.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<nx;	.ӎ^', '&Xgp?Y66x', '', 0, '?'),
('G^53~\0', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/save.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/save.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@ǲlcŋ=)', '0]b\nJU/dǂ', '', 0, '?'),
('Ms;'',-E', 'wp-admin/css/dashboard-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/dashboard-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u}ߛ`d]QP', 'vl;PtK''^mA', '', 0, '?'),
('Or#TG!', 'wp-includes/js/swfobject.js', '/home/binawebp/omsrislb.my/wp-includes/js/swfobject.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('`/Z\0,lk`', 'wp-content/plugins/wp-optimize/vendor/composer/installed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/installed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KSIry|c', ' /N9>''\0&', '', 0, '?'),
('f\\k;LmcҾx1', 'wp-content/plugins/elementor/includes/editor-templates/library-layout.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/library-layout.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O=wkfxj', 'j*%/`)<l=~0', '', 0, '?'),
('kUۡ{[rn', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&.}&w', 'c\0]?G9$x)sE-e=&', '', 0, '?'),
('mz9[', 'wp-content/plugins/elementskit-lite/widgets/funfact/funfact.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/funfact/funfact.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bitY4ܲQ', '$!	RLTjr7˷d͢	', '', 0, '?'),
('tJ$D', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app.min.js', 0, '?7MBA5sP#', '?7MBA5sP#', 'iо\Zۣ2	`.ryj`*', '', 0, '?'),
('5yy\0', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/conditions.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/conditions.js', 0, 'qI$̰9sL\r', 'qI$̰9sL\r', '\ZJCTI1#)?%U{	fz', '', 0, '?'),
('$(g(P/', 'wp-admin/css/wp-admin-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GQ5''EYo0}_', '0|TFO 	..>CEj', '', 0, '?'),
('DQs>1[4', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`rnێXC	T', '8K?xn൘]\Z5ò7', '', 0, '?'),
('XS', 'wp-includes/SimplePie/library/SimplePie/Exception.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X\rȯ\ZheՎ', '\rlV!:l,Pڞtnߍ', '', 0, '?'),
('5At߂m0iz', 'wp-admin/css/themes-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/themes-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U''x2%/y', 'g:#3ԔaS5b-ZE`', '', 0, '?'),
('yxx4* ', 'wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j7 7=`8', 'ztXxuV\0', '', 0, '?'),
('nZb', 'wp-content/plugins/elementskit-lite/libs/template-library/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6=,o{}', 'w@B,:}%@P)/INY|f-{', '', 0, '?'),
('HСYVhZ', 'wp-includes/block-supports/duotone.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/duotone.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rpw;nɟ', '(q*1KCC''{[DkD	L', '', 0, '?'),
('\Z;_/\n', 'wp-content/plugins/elementor/modules/link-in-bio/classes/render/render-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/classes/render/render-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+M%dO', 'ls3ML\r (Y%j{+ޒ\r£p', '', 0, '?'),
('DeqfK.', 'wp-content/plugins/elementor/includes/widgets/spacer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/spacer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uG\0=3!pħ/', 'zO/MkR\0#$ό_w', '', 0, '?'),
('-Z:E:', 'wp-admin/js/image-edit.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/image-edit.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6K]NĖ,(', 'y+ESnش41ÎaA#;v\\R', '', 0, '?'),
('\rm_x', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/panel-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/panel-template.php', 0, 'Zwo}xd', 'Zwo}xd', 'Hk\reN>;3TQQ|r -am', '', 0, '?'),
('\0ä6/qLQx', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementByTagName.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementByTagName.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B{ݤIN2', 'lTN@b,l]Cfma`B2', '', 0, '?'),
('xw[oeX:', 'wp-content/plugins/elementor/includes/db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u2hm<N?F9{', '%` ^xՊL0+,!*T', '', 0, '?'),
('Yr\0w,){', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/AbstractUnary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/AbstractUnary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LPUY2 Ь', '&N?ɕ9}P{+YTM@Hɫ', '', 0, '?'),
('|jX|fb', 'wp-admin/css/login.css', '/home/binawebp/omsrislb.my/wp-admin/css/login.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HY~z4<', 'SlԶt\ZwZɭ!?}', '', 0, '?'),
('%WRuw', 'wp-includes/blocks/comments-pagination/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?j|IQO.PT', 'p(SjPOEjӺ_\rF{Ĉ', '', 0, '?'),
('+|"Z`', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-04.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-04.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\09*P', 'vO{,̊1BȮ_ezؤN,', '', 0, '?'),
('5i+;k(', 'wp-content/plugins/elementor/modules/checklist/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/data/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N)K~O	&', '5)y_r~Q˥$Ҹ}{U%', '', 0, '?'),
('E\ZF2̵!8', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SetTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SetTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"=Cx[u\r', 'Yg7ȍ=.0}!x', '', 0, '?'),
('MRlBFu', 'wp-includes/option.php', '/home/binawebp/omsrislb.my/wp-includes/option.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':>˄09/W', '\n>mɚjC\0xOO?/-aѧ7_P', '', 0, '?'),
('Mn;5:UP$$', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/extend-repeater.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/extend-repeater.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('WPߨe[X', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/fonts/elementskit.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/fonts/elementskit.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֎a7>{X', ':aLcؼ}0bʡg͒/yP', '', 0, '?'),
('X%N9YbB', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-footer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-footer.php', 0, '`Y;	\ZH', '`Y;	\ZH', 'gFi|8-k:GTNa/4', '', 0, '?'),
('d.Uܻ''k', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js', 0, 'A֖}"H:n', 'A֖}"H:n', '9f\n"MV<Uol,Qu\0?RR', '', 0, '?'),
('he-BJ_v', 'wp-includes/blocks/search/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&W+', 'S(g%$%p+3\\:5', '', 0, '?'),
('mvyayT"', 'wp-content/plugins/wordfence/lib/wfInvalidPathException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfInvalidPathException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jôٶ', 'G!U6Hk9J0Odv!', '', 0, '?'),
('nhוlWcm', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '</V\rPW.', '>E2I9}NnЯuYkK!69', '', 0, '?'),
('r\\jA$', 'wp-includes/js/customize-base.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-base.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%Pe.,*䤊y', 'n>)wîɮ>4nw', '', 0, '?'),
('z_tHʟ', 'wp-content/plugins/elementor/modules/element-manager/options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\^V!&@><\0P', 'n?2>ɱ>5vURio-=', '', 0, '?'),
('{^[Hyo4', 'wp-content/plugins/elementor-pro/modules/code-highlight/widgets/code-highlight.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/code-highlight/widgets/code-highlight.php', 0, '+c%ǯ(6<)', '+c%ǯ(6<)', '(siW{F(PYwq{e', '', 0, '?'),
('{rp7>]', 'wp-includes/blocks/post-comments-form.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't>Yn\nO', '(|Rbر^xAE]\r''\r', '', 0, '?'),
('Po%*pF', 'wp-content/plugins/elementskit-lite/widgets/piechart/piechart-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/piechart/piechart-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ah4A~', 'd/4Fn. "tfؚ͋\\pa*', '', 0, '?'),
('ӪBR37%Fu', 'wp-content/plugins/elementor-pro/modules/animated-headline/widgets/animated-headline.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/animated-headline/widgets/animated-headline.php', 0, '}9bt$	jO', '}9bt$	jO', ' -͖j1\rr]qΑC&	~', '', 0, '?'),
('e"]Ca B', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/interactor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/interactor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',+J|>e ', '%ʏ0Tyu~\r', '', 0, '?'),
('犏`bI"v4N', 'wp-includes/blocks/cover/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wP:<0', '\ZF2h<U*̕Ufz]Q7', '', 0, '?'),
('.fâmݻ', 'wp-content/plugins/elementor/assets/css/widget-tabs-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-tabs-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '] s', 'ҩ\r*fE6q5''V', '', 0, '?'),
('-3Keگ', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yiJ֎AV^O', '],7@?x:\r}6p5ΣQx', '', 0, '?'),
('~R>B>', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/ReflectionBasedAutowiring.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/ReflectionBasedAutowiring.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n*', 'Y.to׈tC[1wDm', '', 0, '?'),
('"Sέ`t@', 'wp-admin/network/plugins.php', '/home/binawebp/omsrislb.my/wp-admin/network/plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R\n.oƱ2bw', 'Agp/m,&Rqf9ey$=', '', 0, '?'),
('BUNmhy/', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/taxonomies.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/taxonomies.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f?-ʞB|', '#M+a\Z/[ Nl', '', 0, '?'),
('<ƆPEҘc', 'wp-content/plugins/elementor/assets/js/styleguide-app.51d4579e75a5f39265bc.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app.51d4579e75a5f39265bc.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ng^WcS\0i͈', 'GQW\r/zNGQ.RO4j&LG', '', 0, '?'),
('\\.1-:', 'wp-admin/options-media.php', '/home/binawebp/omsrislb.my/wp-admin/options-media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' jo6X5f{', 'DH[~OԅRi|M]vS,', '', 0, '?'),
('x3Y\Z݆fV]', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js.LICENSE.txt', 0, '>7y՜', '>7y՜', 'z^D}\nibpU~P', '', 0, '?'),
('\nJ{끁VW(۠Q', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/io.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/io.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oڷ`Nxu\ZУ', 'hw<#\ZgHyk', '', 0, '?'),
('ΝH**.ځS', 'wp-admin/includes/bookmark.php', '/home/binawebp/omsrislb.my/wp-admin/includes/bookmark.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yM³QO{', '%@Y	h-?6m23s(M7', '', 0, '?'),
('8p>ĉ+(', 'wp-includes/blocks/template-part/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '74͞K^(ӑ9', 'S1>ۄfIZZ3Pi*', '', 0, '?'),
('^.0i8J', 'wp-includes/Requests/src/Response.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Response.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '䍎C!B8YR', '޺%Œ0+(v)*n=D', '', 0, '?'),
('dxeBݙϟ5', 'wp-includes/IXR/class-IXR-clientmulticall.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-clientmulticall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hqglt', 'ғ''bOE&ƧW0h	o\\`Y', '', 0, '?'),
('Y&L.gX?A', 'wp-content/plugins/code-snippets/js/utils/snippets.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/snippets.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Si:D^kw', 'Á{nȣȘanH4vY7{r', '', 0, '?'),
('\ZM {Hj', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Ma60JeM', 'L^VZbZ6tχ$ UdHQW', '', 0, '?'),
('L\rPl0H	', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';+,eEuK݃L(f', 'Qf\rr0gY<)\rO', '', 0, '?'),
('Ul1ȕDbmg', 'wp-includes/css/buttons-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/buttons-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&~!KKB.', 'ٙ*1dA(\n}MKJκ2N7', '', 0, '?'),
('h	i8.', 'wp-includes/blocks/post-comments-form/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B4EУ)y', '!PM^ײbđmVC', '', 0, '?'),
('d"=''6?\0_\0,', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-d.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-d.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2ellQ', '?.TN:?OU}*zRBkxq''', '', 0, '?'),
('\Z#o8Bge1a', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/MetadataOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/MetadataOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-|~|o''', 'rsN!gٚR2~_', '', 0, '?'),
('5;	߬@N%z;l+', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'el.,08!J&', '4c!#tdj:', '', 0, '?'),
('AJ;mKZ^p2', 'wp-content/plugins/elementor/modules/home/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%z/*Kgdl', 'q	HPcEB?MkzbWZq', '', 0, '?'),
('E~XdQh', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@Vѩn,', '<!ZhtbxNr', '', 0, '?'),
('_NQJk&gu', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/accessing-element-attributes.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/accessing-element-attributes.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd162O5', '{PqܡWHY\nI@lAwI\\', '', 0, '?'),
('``''l`=X(', 'wp-content/plugins/wordfence/views/options/option-select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J*E%v	Na!Uw', 'M#3a@xhs\r5qBN٣X#', '', 0, '?'),
('d!9(&l!3', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/markdown.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/markdown.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yp~5l\Z:"y', '3oq''4wn\Zd$ɞh)', '', 0, '?'),
('m`Dn-o4*OL2', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureScope.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureScope.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߴY%?0>', 'cdMnvY3pa"l%#ؿi', '', 0, '?'),
('q\0\Z~\Z', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/elementor-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/elementor-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z6', '"z5Q.r0YwxGG', '', 0, '?'),
('yёcj!\\''', 'wp-includes/class-wp-block-list.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?Ee4D6j', '\0^oJ3M SIU\nbΩo ', '', 0, '?'),
('ykG$A', 'wp-content/plugins/elementskit-lite/libs/xs-migration/initiator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/initiator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F\n<7A6Ťuc', 'S= $|Į)cx;vL>', '', 0, '?'),
('z9"<<>+1', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7P?YZ	U', 'v]{|Km=N>MIa', '', 0, '?'),
('2D["*"(', 'wp-includes/js/jquery/ui/effect-size.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-size.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7A@/Q1"4', 'hxMJ\no^\n>P*(r\r&', '', 0, '?'),
('5I\\', 'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L:d|"', '/630''kA"u ~2ia/', '', 0, '?'),
('p-]7.2J', 'wp-content/plugins/code-snippets/js/utils/general.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/general.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jtRc t', 'ɦYYA҈1N\rƹԊ', '', 0, '?'),
('hJD㰗G n', 'wp-content/plugins/wordfence/lib/wfCentralAPI.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCentralAPI.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bן1z7d0', '?Ռn~c	|Ca#\Z!/i', '', 0, '?'),
('\\0O''w[l/^$', 'wp-includes/blocks/gallery/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M=Xj6Ŀ', 'Eţw<#&u(P2Vqa', '', 0, '?'),
('ZQ4\\(܇', 'wp-admin/network/admin.php', '/home/binawebp/omsrislb.my/wp-admin/network/admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ϯ\r&Z3r"', ':%;KiW@>U;#>', '', 0, '?'),
('&CDgVb}b', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\&\\7ge(R?&\\', 'yZySpCQJ]{Y_6', '', 0, '?'),
('u0S', 'wp-content/plugins/all-in-one-wp-migration/storage/index.html', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/storage/index.html', 0, 'A-pޜ\r͈V', 'A-pޜ\r͈V', '=+O²2E[VOD', '', 0, '?'),
('+ʙ', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[)T=\Z&A', 'Mԡ+@Ndy7pڂQ+f5Ϫ', '', 0, '?'),
('C=Z$	', 'wp-content/plugins/code-snippets/dist/editor-themes/darcula.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/darcula.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(*?UOf', '67I}WWh\\h,$jQơc\n1', '', 0, '?'),
('ڨ_@@', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/getting-started-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/getting-started-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ï#%b,0(m', 'zrѐ]~w\nl@ v"', '', 0, '?'),
('ň|vi0F', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':3T!1', 'A\\_\ZR%\rSUF|R4vb8ӭEzK)', '', 0, '?'),
('ڝ5r!Q_\rµӬ', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-fonts-promotion-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-fonts-promotion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '؜܅6', 'Y-P_8R	4x:i', '', 0, '?'),
('m\rw3 U', 'wp-content/plugins/elementor/includes/controls/divider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/divider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[DgeklNi', 'R<>reӈ\rhzMC/	(,"d}', '', 0, '?'),
('pyG;\r`', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SXOF(ͩ', ')\\ Co<0^R,Lr*k3r', '', 0, '?'),
('/؊!N>\n', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f<_2S^IZ', 'iݯ8{iq!dՍAz', '', 0, '?'),
('%.O2', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/YieldNotReadyExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/YieldNotReadyExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pjek{~', 'Lwzt["V tbJ2P!Y', '', 0, '?'),
('\Zo|;<\nd', 'wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q!om_ɮy/', '$" f֊ŒDd ^֓1%', '', 0, '?'),
('\Zl3Ȋ', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PUՒJLm8`v', 'ӛvQk\nl]`Ε۷+}kO', '', 0, '?'),
('<hiѭ3*	Fq', 'wp-includes/blocks/button/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LvH\n', '5$R'',N@)	PJ:rE~G-', '', 0, '?'),
('@rTW!Z', 'wp-content/plugins/elementor-pro/modules/notes/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/module.php', 0, '^$N0#S<', '^$N0#S<', '<ql?<9r,,|j', '', 0, '?'),
('@d,I օ', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JԵ/Mz<wu', 'dh~hĥW9&((O\r0^1F) ~N', '', 0, '?'),
('B|?jx>M', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-background.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-background.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\Z<_,4Rsq', 'HDs?c\ZTOFJBj-', '', 0, '?'),
('J|6}P,\rٛ', 'wp-admin/css/colors/_admin.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/_admin.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QYV3*e,|.>]', 'keOX\ZWjݲH~=U', '', 0, '?'),
('W剳eI', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/POpen.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/POpen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZSߛ$.O.', '\\,ؖM~nϛ\0\\ޞ{c)O:^', '', 0, '?'),
(']zxz♜P', 'wp-content/plugins/elementor/modules/kit-elements-defaults/utils/settings-sanitizer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/utils/settings-sanitizer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']L!Ys', 'CƘBj?T;Rn_)\\', '', 0, '?'),
('_''p', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-velocity.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-velocity.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rN''	uyl0l', 'w&Q\r$j Y}?:qKzs{', '', 0, '?'),
('d`#)?ϳ0(w', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' oY-)EHd', 'l,8ETCeylaS;)''"d`z', '', 0, '?'),
('nb91:\ZH', 'wp-includes/SimplePie/src/Cache/Memcache.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Memcache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9!\Z!FLi.', 'Py8.̨WNEv:ۛrw[Y', '', 0, '?'),
('qZ}V2k^_', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؚWޓUqůI''', 't"4e)*&II)PN6%M^', '', 0, '?'),
('rYEer	~ͪKN*6', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/site-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/site-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o`BT_', 'i1("\Z''nK^ElGc4', '', 0, '?'),
('{HvQ<;p', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/modules.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/modules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VOl9H FQX', '.RO*\rܵ?pJr5p99lA', '', 0, '?'),
('}N\\9\\', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',2PEm', '뇻9(TP#g\nQ k', '', 0, '?'),
('VZblͯ', 'wp-includes/blocks/archives/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4?	UEw', '̴2I3QS*"@L$	"V?', '', 0, '?'),
('G&k=', 'wp-content/plugins/elementskit-lite/widgets/faq/faq.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/faq/faq.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZObuμ0Y', 'Bu?KaS9kOٶI[ʘ(', '', 0, '?'),
('x`f,5ef2', 'wp-admin/js/site-health.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/site-health.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Ƃ}6 a$yђ', 'pha/g8h>?Flz̕8hE', '', 0, '?'),
('d]&3N=', 'wp-content/plugins/wordfence/images/logos/shield-white.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-white.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dX#pRðJ', 'LO''(EqHl@)O', '', 0, '?'),
('[:q', 'wp-admin/includes/class-wp-plugins-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-plugins-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h-', 'oF)f蹵;\Z'']YP$l4*', '', 0, '?'),
('rpxp', 'wp-content/plugins/wp-optimize/js/cache.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/cache.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʫW2', 'J_Nx\n 4Ttqvm', '', 0, '?'),
('-o\Zo=g=Iz', 'wp-content/plugins/code-snippets/dist/editor-themes/neo.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/neo.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɑo>	Vb\\N@^', 'Rn4BoD''!1ҲC-', '', 0, '?'),
('1LM', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/switch.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/switch.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R@''x/pK_&', 'X]E\n\r]jtk^''W', '', 0, '?'),
('Cy++', 'wp-content/plugins/elementor/assets/css/theme-dark.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-dark.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/$_YXC!', 'gGz9xe''lY=YwI>;\Z', '', 0, '?'),
('GT', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImageMagick.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImageMagick.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@]0%`\Zq_x', 'Nc{)(Ig䝺h4btUz', '', 0, '?'),
('y CR222', 'wp-includes/css/dist/base-styles/admin-schemes-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^O2NI\\G1R', '5^>47nVg[o^[]\n', '', 0, '?'),
('t\\(5V\0O', 'wp-content/plugins/elementskit-lite/widgets/category-list/category-list-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/category-list/category-list-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z&=TTij', '	xhbӤۄ:dZiAܡR', '', 0, '?'),
('ɭ_U޼~%0&', 'wp-content/plugins/wordfence/js/wfdropdown.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfdropdown.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J_Y\ZTvFu\Z', 'AĺKba4-t$WTrPd', '', 0, '?'),
('Z(|Z', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QUp~ocÊ4Nt', 'Lnl2@ΐ>hi,uJYH\\L,B', '', 0, '?'),
('tМs!q', 'wp-content/plugins/elementor/assets/css/templates/widget-image-gallery.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-gallery.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r{,O\\]', '[;3TH2hBKQ', '', 0, '?'),
('\\ Iѻ,', 'wp-includes/class-simplepie.php', '/home/binawebp/omsrislb.my/wp-includes/class-simplepie.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<fIcC]Yꬍ/[', 'рE&ev//y>$r=', '', 0, '?'),
('ڙy2D\na93', 'wp-includes/block-supports/layout.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/layout.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a:|Ћ&W@|\n', '<LBUQ@O]wҫ2S0', '', 0, '?'),
('8>&C', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/assembly_x86.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/assembly_x86.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<BS0\rBnBӸ', '\r8\neŏa(\ZMM\\', '', 0, '?'),
(')Ek\r', 'wp-includes/blocks/accordion/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W<)`3	Y@w&', '_*\Z{}~\nYe9xwWLNRV', '', 0, '?'),
('B%/gg', 'wp-content/plugins/elementor/assets/js/e-wc-product-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-wc-product-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',E/Ҽ"P', 'OnHb~BuEd$L	TSƥln"', '', 0, '?'),
('N=5N;[', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-plugins.php', 0, 'x/9.7	B', 'x/9.7	B', '0)N,pn,JƀiQbmSnC', '', 0, '?'),
('=@eG1˺', 'wp-content/plugins/elementor/assets/css/widget-image-box.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-box.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ԫc+@B-', 'yGbbkR@/', '', 0, '?'),
('\\]^Tꥊ', 'wp-includes/js/dist/vendor/wp-polyfill-url.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-url.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ř=NT\\{', 'hǣqٵKt\r4DSgd0Z', '', 0, '?'),
('V{D騍', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-better-templates-library.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-better-templates-library.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W[\Zv Sj', '$\r8m|~h{nrkzjP`r\\hJf', '', 0, '?'),
('\rU¥SBe', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/light.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/light.js', 0, 'aǧ6+G;Nr', 'aǧ6+G;Nr', '0jrYC*|h=]D', '', 0, '?'),
('"h\0	6蓗', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-vars-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-vars-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z,*-"', 'Sh@y~^g>sT/zl,7', '', 0, '?'),
('-iOsoz', 'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Account.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Account.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I?B_{: V', '43y\r~AlE߄F4f6>S', '', 0, '?'),
('-RYlݭZ', 'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js.LICENSE.txt', 0, 'cgxsh:', 'cgxsh:', '^|s/,T`up[D', '', 0, '?'),
('/&2ѡ\rgDs', 'wp-includes/http.php', '/home/binawebp/omsrislb.my/wp-includes/http.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't)	p#hs', '|B6dsZSBcX{', '', 0, '?'),
('5قaܨϘ	#bu', 'wp-includes/js/dist/compose.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/compose.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W֘E(&^', 'qܵz-8^WD2x$}', '', 0, '?'),
('<]Rj', 'wp-content/plugins/elementor/includes/container/container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/container/container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5]䛢', 'dX=jP]<F\r:', '', 0, '?'),
('=#-38', 'wp-includes/blocks/code/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+v{df$9^', 'K鏬/ sCS-\0Ujhs5 ', '', 0, '?'),
('Lz(K\0B	u', 'wp-content/plugins/elementor/assets/js/nested-accordion.c546968f7aebebc356f2.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.c546968f7aebebc356f2.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iCiek', 'BQE0~''a\\]qNW', '', 0, '?'),
('Spꣽ1e', 'wp-content/plugins/elementor-pro/modules/global-widget/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/data/controller.php', 0, 'X/LRV>L^6', 'X/LRV>L^6', 'VijC7;˱5iwyI9}', '', 0, '?'),
('Sߙ\0cƕ`4', 'wp-includes/blocks/navigation/view.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MzSF8\n', 'f]>0D9헷~\0(y4k%/', '', 0, '?'),
('S;ʞkh\\', 'wp-content/plugins/elementor/assets/css/widget-floating-buttons.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-buttons.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'awOkvi=', '"4_J\n2ÈzL@c', '', 0, '?'),
('`?H)eQM6', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Registry.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p8Kb˚90-', '#ي]:1=/5%#R4', '', 0, '?'),
('`MiV\0v ', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-slider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-slider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zi5]=Ṅ', 'a^qLHL%Cl;EIlw:6w', '', 0, '?'),
('jXU:#^-r8', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-xcode.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-xcode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's@IH;', '̮ $/O֖le\Zy', '', 0, '?'),
('k27\\', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K\ZF\rT	]', '<f ,%kEo𚦩ѷ4T', '', 0, '?'),
('oZEA*', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php', 0, 'dCَ~цAf%', 'dCَ~цAf%', '\0FWC\Zo4sy\r\05#N)', '', 0, '?'),
('s{;zҐ!ɮ0~', 'wp-includes/blocks/comment-edit-link/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"I_;"', 'Ms~vwy}Jܬ96Q$ۺo', '', 0, '?'),
('=Ѷ8$', 'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/2;(U', 'i-;R9s	bl:XJ$K	', '', 0, '?'),
('M|!grBXp', 'wp-content/plugins/elementor/assets/js/common-modules.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common-modules.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q]bg):', 'C&Ml+,5`5+K7؊J	wt', '', 0, '?'),
('?0|5uơ', 'wp-admin/custom-background.php', '/home/binawebp/omsrislb.my/wp-admin/custom-background.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X]AE', ')t/.?寮Ni΁0\\z?@\ZR', '', 0, '?'),
('<eJ5}j', 'wp-includes/blocks/site-logo/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&UOSp', 'OycqdTիf֕͋,,', '', 0, '?'),
('qhnJj', 'wp-admin/css/nav-menus.css', '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V}=ngR"', 'VlzDjnu(%kr:hoH1', '', 0, '?'),
('|h#s!v`hà', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"ԟѕА?Dy', 'cCߔu˚:,QaKPA', '', 0, '?'),
('<	f%nO', 'wp-admin/includes/credits.php', '/home/binawebp/omsrislb.my/wp-admin/includes/credits.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!|xOeZ*', 'kUu5KxvQSxޕHx a/LG', '', 0, '?'),
('W;J)&ނh]', 'wp-content/plugins/wp-optimize/optimizations/repairtables.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/repairtables.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b1@-91z^LF', '''fߕx_uG?+NIR!`oAÚؿG#', '', 0, '?'),
('ÏuL,&Ǒ\r1', 'wp-admin/media.php', '/home/binawebp/omsrislb.my/wp-admin/media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KF	+})@>B', 'n#''bbP"u9v>S', '', 0, '?'),
('Ӏ9[M-g', 'wp-includes/js/dist/hooks.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/hooks.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '];-N^''&', 'LNg3QZ_E`XҸfŒ', '', 0, '?'),
('akYw7OF', 'wp-includes/css/dist/admin-ui/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?{\Z)[9?B', ' .\0VT_ \\`\0%te', '', 0, '?'),
('SU}p+Q]', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-12.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-12.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ICx#*\n\\4', 'D{?wfivȵXKt', '', 0, '?'),
('l;+SG', 'wp-includes/blocks/audio/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L@إm_YF', 'e7KVӧidƍ9ky', '', 0, '?'),
('>"0$ۘD+', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/AutowireDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/AutowireDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{"wW:M', 'R띜=mhCz\rC@''e', '', 0, '?'),
('{ZV$', 'wp-includes/blocks/social-links/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B!0K&06', 'sLibof(X=kr+"R', '', 0, '?'),
('+M%]sD00', 'wp-includes/blocks/freeform/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*$Dw\0Q}[ ', 'Ӈ;Gu##RDxE"fY', '', 0, '?'),
('dŽlt(%', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r{5h5&o', 'lXD&QS4(SGw`Sn', '', 0, '?'),
('''aa', 'wp-content/plugins/elementskit-lite/widgets/init/enqueue-scripts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/enqueue-scripts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cxu3~	c', '2.?Zr<58xUR''ZjRD', '', 0, '?'),
('	W4s&F2a', 'wp-includes/block-supports/block-visibility.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/block-visibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K12CL.%~~Zގ', 'ZBfpZ \\n@B\nߐl', '', 0, '?'),
('5R#M}tN', 'wp-content/plugins/elementor/modules/library/documents/section.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p"`raE\0', '	sOP ]6!]^#E7', '', 0, '?'),
('\nڋrޤX', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-text.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-text.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v>''pE', 'n%gDc\0Ҟ7)\n', '', 0, '?'),
(' qF:R`sjPnǩ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Ewww.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Ewww.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3mMR', 'Scᠠ*^@lԅ/', '', 0, '?'),
('(dwI\0:\rXx1DC', 'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v[A.F3D', '@ړVC+<!;@89(n=G', '', 0, '?'),
('3,cvk', 'wp-content/plugins/wordfence/views/onboarding/overlay.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/overlay.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Мs', 'a:FVW5W<no`', '', 0, '?'),
('7ʏaBKz', 'wp-includes/blocks/button/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LvH\n', '5$R'',N@)	PJ:rE~G-', '', 0, '?'),
('Hr\\wVa?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mask.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mask.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '޴}~8:l', 'o_W\rjmXFGfzQ(', '', 0, '?'),
('J\069V/', 'wp-includes/blocks/site-title/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?\Zjɛ', 'R+je,*6a,R_~OzWk(', '', 0, '?'),
('L)6''͕', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/elementor-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/elementor-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zw@Kf', 'N.46x,=.ZMC5', '', 0, '?'),
('Q;z', 'wp-content/plugins/elementor/core/app/modules/onboarding/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/onboarding/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k=7EUi*ގo', '8ԧe׈cn*J{Y(s\rDd', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('V?0OTd@XY', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-handlebars.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-handlebars.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't\\3<0_ӛ,', 'ä,NFGN*LҮzٖ(Hl', '', 0, '?'),
('WM{h(', 'wp-content/plugins/wordfence/lib/menu_options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6dT/\0AD9j2W', 'd:1bYׅBk>\rw''ZU', '', 0, '?'),
(']K{ٯ`{,', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+EYH<YPK=S', 'ۋ&:^G&B2PC~', '', 0, '?'),
('a@o''kb', 'wp-includes/js/jquery/jquery-migrate.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery-migrate.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.-$"g', 'rӽ.I]B5*֌\nj~ng', '', 0, '?'),
('tw.{"', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/EmbedTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/EmbedTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%DꊓeuC', 'huP>K1iv9%;P`oH鐰', '', 0, '?'),
('x;_q*`<', 'wp-includes/blocks/group/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'abЖZFUl\Z', 'bS %qR7Fֻ', '', 0, '?'),
('zZє_ܑ', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R"''!', ',?E^ʒ=j', '', 0, '?'),
('xi|p\n', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_75_dadada_1x400.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_75_dadada_1x400.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',edȣ$i', '$s<&V~}QW3Zh(0', '', 0, '?'),
(';-_ND', 'wp-content/plugins/elementor/core/utils/version.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/version.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	BBhIv,d', '$8eZDCMI8=.QO֤', '', 0, '?'),
('i/pEt\nl', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r0mb74$', '{hDX^w6Dfc@Q\rf', '', 0, '?'),
('\0c;lJO6', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpunit.xml.dist', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpunit.xml.dist', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nXdltfe', ')i2]־_*ru1O', '', 0, '?'),
('>T=W\\', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AbstractBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AbstractBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǌ^\\ZΌ', '\rI\\U󛖌^XGih/P67', '', 0, '?'),
('2?!u܆"', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I̓C''a@z', 'OD=ϾChY!@''fP%"&', '', 0, '?'),
('%͌WoHǬ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-option.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-option.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' d>	', 'GDs}$\Z@h.?', '', 0, '?'),
('O\nn\\F_eVu)', 'wp-content/plugins/elementskit-lite/core/activation-actions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/activation-actions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zB|MB^', '-]Iik^CPPrdߏ', '', 0, '?'),
('^[Xi	', 'wp-admin/themes.php', '/home/binawebp/omsrislb.my/wp-admin/themes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u|g9$]', 'gYHwWt<v؞ʵ$\ZQ}', '', 0, '?'),
(':X@\0{*֯', 'wp-admin/includes/class-language-pack-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-language-pack-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԀaN~', 'sV+L[-<\ZMϒ͖2', '', 0, '?'),
('4T(\\9''3)', 'wp-admin/css/customize-widgets-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm\\3mwĄM''', '\0ݶFה\\vRǀSQ@ƙTp', '', 0, '?'),
('k{&x\n', 'wp-includes/class-wp-error.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-error.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"*JV+QI5%', 'Kk4$j1\nUy+}^d4adF', '', 0, '?'),
('t"\Z.3@"', 'wp-includes/SimplePie/src/Cache/Psr16.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Psr16.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jl\r\Z}/ގkS', 'uV>xPu)-Z=иZ', '', 0, '?'),
('֙d.&У*', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YS\rUFfY\0@', '@OX͇#<4tRaAح/1v', '', 0, '?'),
('$o1T2]l', 'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_countries.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	d*W1g', '+q~;fE_#]IV\\k?lÝϞ', '', 0, '?'),
('~yKwdmwX', 'wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.b7b52289dc112ded05c0.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.b7b52289dc112ded05c0.bundle.js', 0, 'Mc6\r[3', 'Mc6\r[3', '=lxXY]}Df5uةׁ<L', '', 0, '?'),
('qMB\0ة', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZqF{PDm{', 'Rg~0Z %Qpٿy)', '', 0, '?'),
('A0ff` Kǁ}', 'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDirectoryIterator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n+Z/_\Zxuv', 'u;IVa[~㵭TZ\\^yJj', '', 0, '?'),
('e1YuA:jL', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Factory/RequestedEntry.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Factory/RequestedEntry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7zv=_+!4\rP', ')D97[\0H}Cv/5\rweG', '', 0, '?'),
('\0%3[$x\0.(', 'wp-admin/images/marker.png', '/home/binawebp/omsrislb.my/wp-admin/images/marker.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3*O2/3I2', '~T@\\vUI<pKa`T@cca', '', 0, '?'),
('S׮财', 'wp-content/plugins/elementor/modules/web-cli/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/web-cli/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n&4+C', '?E댏¥KN\r-L@"~', '', 0, '?'),
('4=', 'wp-content/plugins/wordfence/images/icons/ajaxScan.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajaxScan.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʖѴ~fi', 'ߩ0ԍѦƻH\n¡;', '', 0, '?'),
('	Em[l<', 'wp-includes/js/tinymce/plugins/image/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/image/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-ZCl­}莐', 'yTNz+⃆''%Y', '', 0, '?'),
('caf/MC[', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̓B5swŢm', '0/_\r]2Gl]Kof', '', 0, '?'),
('L\Z', 'wp-includes/blocks/query-pagination/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';oo)~ѡf(', '&ϕc{|_;1C7', '', 0, '?'),
(',š6ҿaؖ}I', 'wp-content/plugins/code-snippets/dist/editor-themes/ayu-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ayu-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N=0;ƠT+', 'ǐ\0%Sxu\rQF\Z؁1-%', '', 0, '?'),
('13 E	', 'wp-content/plugins/elementor/core/common/app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|tr&', 'x<kz8_twæD8J*', '', 0, '?'),
('=Vr=XȞ', 'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v\\_߫\ZpX1', 'Ki/bӖ#IJ+jd4ޣ', '', 0, '?'),
('c4!wȢ1sc', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeAttribute.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeAttribute.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N %<Yv\nx5', 'uZh +Cz\n9\r<0u; W^/', '', 0, '?'),
('{mK;/_', 'wp-content/maintenance/assets/images/instagram.svg', '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/images/instagram.svg', 0, '*SCGK=*', '*SCGK=*', ',?nE3j鹭܃YHxd\\!\n', '', 0, '?'),
('Je4Te', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DT(eMk\r', 'ﯤvnq}+ϧJ%X!ى', '', 0, '?'),
('4so(Hhd', 'wp-includes/fonts/class-wp-font-utils.php', '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p#,c%5V', '8eoFNb''э<D', '', 0, '?'),
('Y7,0\r+9', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers-registry.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ҏua:', '''^BԶV\0эWh?jĢd', '', 0, '?'),
('tqWL', 'wp-includes/Requests/src/Auth.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Auth.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bXQzܴOH', '*7ۘ7SN^ssf', '', 0, '?'),
(':"E)\n\Z1AC', 'wp-content/plugins/elementor-pro/modules/admin-top-bar/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/admin-top-bar/module.php', 0, ')~R/WO\\E', ')~R/WO\\E', 'R(Ua2J@3Y', '', 0, '?'),
('ݯ\r/=8ա''', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';	N<{8WA', '\0uVRoT!jB1kC6]?md', '', 0, '?'),
('{aV/ҝV\Z', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-background.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-background.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pM̭k<xA[', '#ڻ"5:Ot-\\ a', '', 0, '?'),
('{]\\ֵ	d', 'wp-admin/css/forms-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/forms-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@3gs<', '(xvi%d$tQZs,+z', '', 0, '?'),
('˓:mǦŦv', 'wp-content/plugins/elementor/data/v2/base/endpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}+[x=ܻa', 'W&<"yz}|\Zũ	&son', '', 0, '?'),
('uCI,7', 'wp-content/plugins/wordfence/css/license/care-global.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/care-global.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<~Dы4y]"', '~@EXfmoܝbyz^', '', 0, '?'),
('C52ycǎ', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions.php', 0, '~\nA''W\0`', '~\nA''W\0`', 'lQB {_T"?/X', '', 0, '?'),
('XCI%?ː', 'wp-includes/fonts/class-wp-font-face-resolver.php', '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-face-resolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h8`l_/6', 'D,=3LɟK()׆bX-', '', 0, '?'),
(' NapF:', 'wp-content/plugins/wp-optimize/images/features/multisite-support.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/multisite-support.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BnƀdUrp', 'i<9+Y"#=Mk;,.qC', '', 0, '?'),
('@\Zx]4C', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/site-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/site-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~d}ήM~p', '|UȣWbҧӞ^''/8ҧ(90a8O>o', '', 0, '?'),
(' 5 fIq', 'wp-content/plugins/wp-optimize/js/minify-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/minify-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`ж*`tT^ij', ')V\no0̏I4[\0zsM{^^', '', 0, '?'),
('1٧2kz', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-themes.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-themes.php', 0, '&]hTY''_', '&]hTY''_', 'rU_Fir ,ئ3Eɥ|', '', 0, '?'),
('Tp0]ob[', 'wp-includes/blocks/post-comments-form/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1{ⱄk_Bv(', 'k-\n!5<s+LTy3w', '', 0, '?'),
('՚@{C֪C', 'wp-content/plugins/wp-optimize/js/modal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/modal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'edI~<&&>', ' \\摈kT.d|o\nvY̰8', '', 0, '?'),
('\0&@COqM%', 'wp-content/plugins/wordfence/waf/wfWAFBlockConstants.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFBlockConstants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ndڮqV[;Z<''\0', ';D%\r`=Ŗm"ʰrx', '', 0, '?'),
('ͬޗ?҅H', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6X-,2s@;z', 'p9XYa»Gsdβ7Ʌɰx', '', 0, '?'),
('"RŜ', 'wp-includes/images/crystal/text.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/text.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' Ѳ#d%[', 'n10<;\nIp~f⠸z', '', 0, '?'),
('#^~+LN2]', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')6_Y+', '\\[~IiKm7¬=\n]s', '', 0, '?'),
('&r~6װ@cu', 'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/tipsy/tipsy.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Y`WŪ', '51\r*6i$^|PMݚg^rz', '', 0, '?'),
('&"#EF', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sale.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sale.php', 0, 'x ͚|Q', 'x ͚|Q', '\r-Co)W/Jk''_}d', '', 0, '?'),
('-lZI@ؼT', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gobstones.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gobstones.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S<\Zj/', '\r$)͏Q(YJlO{\r6!W', '', 0, '?'),
('7 R꺢VT', 'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J\n', 'kֶ<P*+uD>%', '', 0, '?'),
('Un샑6DD:?', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@R-odq9', ':"-`i-''<Ά<u8', '', 0, '?'),
('UAb6t$2ߐ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ModBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ModBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֨P-qJ3y', 'Ӗ;`Ԝg*@P@vOB}', '', 0, '?'),
('Vk489', 'wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{SAk(uI5s', 'Iv+BޭՉcd6"O\\', '', 0, '?'),
('YJOΠ*Z', 'wp-includes/blocks/post-author/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.^QǉU', 'W;IF+7CZE Ya,_', '', 0, '?'),
('g7T7&A''D', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A\nhdM', 'ԕu2P\rO"IL\r6', '', 0, '?'),
('p8w#<7', 'wp-content/plugins/elementor/assets/images/go-pro-wp-dashboard.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/go-pro-wp-dashboard.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&"P 3J', ')eߥ6RU*CEYb', '', 0, '?'),
('st]H\n', 'wp-includes/js/dist/edit-site.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-site.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w6)\0Vߘַ', 'QQFDrl+K/!1K,SO', '', 0, '?'),
('v%S[̪Ѿ', 'wp-includes/ms-functions.php', '/home/binawebp/omsrislb.my/wp-includes/ms-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӹJcefХ', 'HCao~DM~ਕgw', '', 0, '?'),
('2S(qM', 'wp-content/plugins/elementor/vendor/composer/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']_#D\0', '\Z ے%4~N~Gh!b:wɌ''', '', 0, '?'),
('/I8s=', 'wp-content/plugins/elementor-pro/assets/js/screenshot.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/screenshot.min.js', 0, 'R"d\nj;', 'R"d\nj;', 'EѬ#0A[M4^', '', 0, '?'),
('zvOk\0A8Se', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-vibrant_ink.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-vibrant_ink.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\zJ{qF', 'N/\\\nIG9?PFR', '', 0, '?'),
('rsa9SUU', 'wp-includes/blocks/post-featured-image/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_=Vi|Bf', 'j;0cHx	&ie3hHQR+iI', '', 0, '?'),
('vyLe!', 'wp-includes/blocks/post-terms.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D5tyQ5Ukt', 'p̥sM/_3"|)4I', '', 0, '?'),
('Z@]\nMO!', 'wp-includes/blocks/math/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' N\\0 Aͮ"', '߉^^SxSϟ1h*fq[k', '', 0, '?'),
('88hlc', 'wp-content/plugins/wordfence/waf/dummy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/dummy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':<]y6jz0', 'w-c}:i\\BSq54uHѻ', '', 0, '?'),
('-8fge\n', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')n TV&5k|', ';aA4\nNs^+uB)', '', 0, '?'),
('|X%jgu@CJM', 'wp-includes/js/dist/vendor/react.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tx,g!*$', '*͡cQ	f1Φܾ_', '', 0, '?'),
('X''w.Zm', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/postman.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/postman.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=sNsg', '''	͌L)DL˧ehQ/Eg^', '', 0, '?'),
('ւxRaǜ@', 'wp-includes/css/dist/editor/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ٵI3?9', 'Vcb;(''mK$f/', '', 0, '?'),
('X"-{$48sx', 'wp-admin/css/deprecated-media.css', '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n!.JK0K', 'ƌFE:r˻M6%|	nLD', '', 0, '?'),
('\rZO[΅f', 'wp-includes/blocks/columns/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '´`boFIK', 'dף!x`J&ͽ{', '', 0, '?'),
('lq.', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lWeU{9', 'G8=\0> 3wg3.4', '', 0, '?'),
('UdMS$l', 'wp-admin/includes/class-wp-list-table-compat.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-list-table-compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}>\r_D"CkC', '\\;]"(+/}˚q5NS''', '', 0, '?'),
('PIbx', 'wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/safe-mode-theme-support.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/safe-mode-theme-support.php', 0, '/f\ZdH!7$s', '/f\ZdH!7$s', 'oE+9VQ &<\0l|', '', 0, '?'),
(' w̮fw', 'wp-content/plugins/elementor-pro/assets/js/paypal-button.0b0a646654a59ebd13a8.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/paypal-button.0b0a646654a59ebd13a8.bundle.js', 0, '/{Kx`0$+', '/{Kx`0$+', ']*w|\rC ~,.ׅ\r', '', 0, '?'),
('\rz@_ÐmdM', 'wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fcAN)', 'u^*OZ\nJ8`R럗XQ', '', 0, '?'),
('!bH,k', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/NullCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/NullCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4&qy;Y', 'U''[=C}ZBԯkM6', '', 0, '?'),
('8ZԚ/M}\0s', 'wp-content/plugins/code-snippets/css/common/_theme.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/common/_theme.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kW/Fe8"*', '3l¿7W_nbAg', '', 0, '?'),
('DT\0', 'wp-content/plugins/elementor-pro/assets/js/countdown.14ae9e6521e5309f2b20.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/countdown.14ae9e6521e5309f2b20.bundle.js', 0, 'Eql\0h', 'Eql\0h', '!BߕfBu|*:-9\rg!;', '', 0, '?'),
('!`Kc"m', 'wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*Ya+"Rr^R@', 'h7ªn˳f1:wd\0,tW', '', 0, '?'),
('#\nde&+Rs', 'wp-content/plugins/elementor/includes/controls/choose.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/choose.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7d"~W-zś%', 'PZޢ9j͈zXxMZV~:', '', 0, '?'),
('40l<S`RYR', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/BlockReferenceExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/BlockReferenceExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Ύm!<lmU', 'nN*!U,0.m@ink|', '', 0, '?'),
('?O<^Cq ', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-searchcop.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-searchcop.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߗaZ*{,M>@l_', '0FS9,: fȬi=0', '', 0, '?'),
('@GteY\\''>O', 'wp-content/plugins/wordfence/lib/wfVersionCheckController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfVersionCheckController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"4a%\nNa', 'P->Zm;Zmk]pVT>!', '', 0, '?'),
('G︈gpΊ', 'wp-includes/blocks/quote/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g2&:2~', 'KwiJM,oXK*\\zKBWLO', '', 0, '?'),
('Wjd~aRٺ', 'wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.min.js', 0, '''Ǻ%	d', '''Ǻ%	d', '\n?Hg(GP:_"|mJA(X', '', 0, '?'),
('ZWtpNh', 'wp-admin/css/nav-menus.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.:b<j%hȇ^', '2rQ''y[~3|Mn`@&QLwW', '', 0, '?'),
('_.̴`~,(u}k', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff2', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z 6>', '@⣂LEQ(ieq[N|&Ð', '', 0, '?'),
('b''?ҐT!', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-ф[(V(', '/F+;EW*pc%ZRo4n4_', '', 0, '?'),
('d	\\7i0en', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/select-control.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/select-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e*NPx', '/Ѷag@:7D\ZDBTd', '', 0, '?'),
('m%piƗYZ', 'wp-content/plugins/elementor/includes/editor-templates/panel.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/panel.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\\rnzۢL', 'lΧ\Z:LU6BncrR''uQ', '', 0, '?'),
('ma#$smxQ', 'wp-includes/blocks/template-part.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q:tU">W?3qN@', 'q\Z~ȑnqb]\ZHԉػ', '', 0, '?'),
('raHCmĦ`hHLc', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DMRťsP', 'i-fa>b2CF"rAio"', '', 0, '?'),
('vK~7r|5PXn', 'wp-content/plugins/elementor/assets/images/background-placeholder.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/background-placeholder.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!>0-ŀq\Z', 'xɹhoLYrLr', '', 0, '?'),
('z{:Ψߠl', 'wp-content/plugins/elementor/assets/css/widget-counter-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-counter-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '׿bn1&$7', 'W sBg*,ɿiwB%H=}', '', 0, '?'),
('#;eO"#[', 'wp-includes/blocks/shortcode/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O*ctBHV', 'tpFWCp>2[}hvp6j', '', 0, '?'),
('Z Og\nWW2', 'wp-includes/js/wp-embed-template.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed-template.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cj?6fN55H6', 'Ils&xjzQꢓ', '', 0, '?'),
('	[?O''-dG', 'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-post.php', 0, 'ܜ8pպ^"[', 'ܜ8pպ^"[', 'LkFʣ?t''Ċp\0)2/fN', '', 0, '?'),
('BJ<`', 'wp-includes/blocks/post-excerpt.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=qo=5<}', '	cOtcۻO3>ܶ@g4Egfе', '', 0, '?'),
('!h>iq8tn', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0>@UeU', 'țp˄o<O\nOo{w=S', '', 0, '?'),
('\\9ѕFw', 'wp-admin/js/revisions.js', '/home/binawebp/omsrislb.my/wp-admin/js/revisions.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MȘf3BiPxj', 'd@$\r''ByGP!kpFd', '', 0, '?'),
('!ΕER޿ۧ', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sessions.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sessions.svg', 0, '׬"Q0', '׬"Q0', 'FB(%nv`LzƎt', '', 0, '?'),
('_n09^:k_', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AKu;>5{', '2#TrIO~mrhhTDIOGcG,E', '', 0, '?'),
('>YzN,0p', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/backup.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/backup.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P}a(y', '5@bo1@mrS9˛', '', 0, '?'),
('?gk4(%', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-preloader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-preloader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[B2Dѧ', '''\\#@mpw0S0/;', '', 0, '?'),
('cϪT_>]', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pj\\ ?)+', ':"Kvfsa)v/\\A~;xG', '', 0, '?'),
('洮|/&JOR|', 'wp-content/plugins/elementor/modules/system-info/reporters/network-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/network-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e~.PG5''G2F', 'a2LT$ܼd}Р.M:DT', '', 0, '?'),
('4H^1q|', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/udlogo-rotating.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/udlogo-rotating.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':Z]zG2ІhG.,', '7eBKKj18T(#x -f', '', 0, '?'),
('-omq\0X', 'wp-includes/class-wp-block-editor-context.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-editor-context.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r~E!b', '''\r=F}LhaIç\Z"$Δ', '', 0, '?'),
('Yh-Fz', 'wp-content/plugins/elementor/assets/js/ai.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W&;aaJ''W', '62Tt/YT5~¬%-c', '', 0, '?'),
('M3vaBcd', 'wp-includes/blocks/search/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e\n\r1p=', 'I_:M>٠}.', '', 0, '?'),
(':+hy^W', 'wp-includes/block-template.php', '/home/binawebp/omsrislb.my/wp-includes/block-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm67!ٱ\Zv[C', 'A-HkqL\\sҏ]{j9qj', '', 0, '?'),
('/=+HhE14ʆ', 'wp-content/plugins/wordfence/views/tours/login-security.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tours/login-security.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pɖ3Tر#', '>㈳ec¯f4s78#G`x0', '', 0, '?'),
('1:9,׮n"', 'wp-includes/class-wp-theme-json.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p8⭎O\Z', 'yCcwnNpA8G!', '', 0, '?'),
('3;;(\rGC	v', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VN%pԳh)', '*1TwFkģ\n*ZPBeH{N', '', 0, '?'),
(':(\\Jj^\0Q', 'wp-includes/SimplePie/src/HTTP/Psr18Client.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Psr18Client.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 2S/Y''1', 'sc]T%r*Maݴp-', '', 0, '?'),
(';Olߧ05<''~z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-luapage.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-luapage.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6.\0U)H]fy', 'A6]b~Ki-g¢+-t', '', 0, '?'),
('<0HǯLx*', 'wp-content/plugins/elementor/assets/images/library-connect/right-2.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/right-2.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|c~maE.9', '''r| ˅^IۏC\n p', '', 0, '?'),
('@)` ~O}ac', 'wp-includes/blocks/heading/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1z	1[m', '3On97m\\Ox', '', 0, '?'),
('P|&wǦ>', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pW] Y{', '}e{mrɦn\0ۚbw', '', 0, '?'),
(']||9oK|ɝ', 'wp-content/plugins/elementskit-lite/modules/header-footer/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c$h\n?5', ':vziYeW\Z=D3:f8', '', 0, '?'),
('`U\ZGJܒmF', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/congrats-shape.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/congrats-shape.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J;+~', 'R\r}B` ?^λi', '', 0, '?'),
('s(=@x(ar\\', 'wp-includes/blocks/math/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CJt\r{Oh>', 'ZTГtQ4><mi<', '', 0, '?'),
('~N@ls', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȹmqn=EP̉', '	3++ҹI&_;O5~f', '', 0, '?'),
('>ՕϘFo', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/4.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/4.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X	.WKI2x', ',l	-HOBl/j5!', '', 0, '?'),
('A;ױ,gs/', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__call.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__call.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L\\NguVpC', 'Z_\Z륰gEH''s?!ZX+V', '', 0, '?'),
('N@(3', 'wp-includes/ID3/module.audio.mp3.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.mp3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TuHWxW1"', 'օw\0J\Z]ڲ9\rn}!n', '', 0, '?'),
('.vy W4', 'wp-content/plugins/elementor/app/modules/import-export/wp-cli.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/wp-cli.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c?*KbL6LlX', 'q͊Z	.\nx碥3|/w', '', 0, '?'),
('h)UG@xv	', 'wp-admin/edit-tags.php', '/home/binawebp/omsrislb.my/wp-admin/edit-tags.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o9:x@', 'jM-ʑ&yx4Ka%EV', '', 0, '?'),
('b))!V.:', 'wp-content/plugins/elementor-pro/modules/custom-code/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/module.php', 0, 'Ok''r#`,d', 'Ok''r#`,d', 'UZP}z:@!=w	b', '', 0, '?'),
('%9Qρ', 'wp-content/plugins/elementskit-lite/libs/template/transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template/transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Bv563m', 'eIr{1+mL9)', '', 0, '?'),
(',D%*z', 'wp-content/plugins/elementskit-lite/widgets/video/video.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/video/video.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7XK:f_', ')L8*q!U\Zΰ\\y', '', 0, '?'),
('XwE', 'wp-includes/blocks/more/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/more/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%O)\nUH\0', 'ҶC}d;Am^_?G.^t&f6', '', 0, '?'),
('ňbemo', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\=ռQCLK&i', '}˹t$)ʦP1~܀', '', 0, '?'),
('{VWwwlғ', 'wp-content/plugins/elementskit-lite/libs/stories/views/template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/stories/views/template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(-!\nBBː', '.g(	x#D', '', 0, '?'),
('ȧ]SZ[', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/setDebugHandler.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/setDebugHandler.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd,lUTp{\Z', '/lLT1FEIHF/Z܄Ŗ', '', 0, '?'),
('ɸvJ6\Z%+', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rdoc.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rdoc.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';.,T+O', ']U^2~L)׾HtCN', '', 0, '?'),
('2]hqu:T6EU', 'wp-content/plugins/wordfence/lib/wfAPI.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAPI.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ry($', 'M>L?az0ӥi', '', 0, '?'),
('$v2XD́ge^', 'wp-content/plugins/elementor-pro/assets/js/hotspot.6ab1751404c381bfe390.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/hotspot.6ab1751404c381bfe390.bundle.min.js', 0, 'Kб4fd', 'Kб4fd', '	!V+Lu\0ZQ3604,', '', 0, '?'),
('냾43ٍe', 'wp-content/plugins/elementskit-lite/widgets/post-list/post-list-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-list/post-list-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '07!<', 'Cm~Zo$z653mlWmI', '', 0, '?'),
('9קے\0]u', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.749b8c1dc8bd8c9b37d2.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.749b8c1dc8bd8c9b37d2.bundle.js', 0, '9\ZzhJY', '9\ZzhJY', '''	Piښ$f6\0I/FQ', '', 0, '?'),
('pL8ґ', 'wp-includes/blocks/accordion-item.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8݊AI', '2Ѣ#{:~&\r>oI', '', 0, '?'),
('k/w`dpG', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tW<W(Kڕr', '&] Ѡu%yb}#''$', '', 0, '?'),
('	Ieԩ[G_6', 'wp-includes/js/dist/editor.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{jd2?dS"7', '=rĉ:ɿl\rN:qn', '', 0, '?'),
('}Jԍ&\ZqZ', 'wp-content/plugins/elementor/modules/library/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' JE#וQTf', 'ez93؅HC:`	', '', 0, '?'),
('H@X', 'wp-content/plugins/wp-optimize/js/cache-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/cache-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vkhn\Z0l', 'V6p^+.pfi,SDD\Zֽ', '', 0, '?'),
('#AuI.F/', 'wp-includes/js/wp-pointer.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-pointer.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8\Z߁@ \r|ɛ[d', 'OȆm~gƷ^96}>|̭/]', '', 0, '?'),
('&\\F$ݽLH\\', 'wp-content/plugins/elementskit-lite/widgets/lottie/lottie-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/lottie-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȝGDm"̃ Ɯ', 'bʹ=[EUC^9@\rf', '', 0, '?'),
('3赱diticQ', 'wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-ϣ;Gi$rG9c$', 'ϯ|/X\n2G:@{\rAL{	', '', 0, '?'),
('8.c,', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TYSKLC', 'mU{qtSPY+6,:	D	', '', 0, '?'),
(';wfkR7', 'wp-content/plugins/code-snippets/js/utils/text.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/text.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=(0ﶁ', 'ƏD鉀JZ%A\\0(F#f', '', 0, '?'),
('@,n\\+k', 'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z~&)j', '6$ ?gC2ǅS\07*瘋', '', 0, '?'),
('FnT''Wgao3', 'wp-content/plugins/elementor/assets/lib/animations/styles/shake.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/shake.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '69烻F8!E', '{ݭ8l\r]\nD!@:S?}', '', 0, '?'),
('G+:փۣ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StagingExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StagingExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nC6c9', '1Z0.f6''''чQ', '', 0, '?'),
('I-:$[<N', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-render-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-render-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǃAV', 'O,\rЌ#&F@¹aT4֙6$&.{', '', 0, '?'),
('Swe-', 'wp-content/plugins/elementor/assets/css/responsive-bar.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/responsive-bar.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}''yV|g5஋', '\\i@%i}Jq2^fu#;]T', '', 0, '?'),
('vFI2hn', 'wp-content/plugins/wordfence/readme.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0&Mvgvl', 'ifh]8$7?߷PepfS9Y', '', 0, '?'),
('{1"^.', 'wp-includes/class-wp-widget-factory.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-widget-factory.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2lNV', 't)	Ј74A8sked;af', '', 0, '?'),
('~3b	', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/media.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*1\r\\''dγ', '2DkOtVr%1/	Fa@', '', 0, '?'),
('&JF', 'wp-content/plugins/elementor/core/utils/assets-config-provider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/assets-config-provider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TDOo ', '4QbRd4`?\\i!p0 T', '', 0, '?'),
('#axG[l', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/DecoratorDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/DecoratorDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^ {i~', '|L(*!r~^NĺW.I2', '', 0, '?'),
('6{TZ^''a16', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̨g\rpef@~*I', 'RyĂx+OQ@	rtg,', '', 0, '?'),
('q6n0q', 'wp-content/plugins/wp-optimize/optimizations/autodraft.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/autodraft.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^rAZM', 'U57ƙ	RG墒1[QZk0', '', 0, '?'),
('h{"S?%p', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles-pro.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles-pro.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('8NWPQMgyav', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-conflicts.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-conflicts.js', 0, '~t9k', '~t9k', 'zq\\K)8; \rVF,E', '', 0, '?'),
('?yC', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coldfusion.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coldfusion.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a!$D<X2', '2+:5b+(A~&', '', 0, '?'),
('sv ', 'wp-includes/blocks/social-links/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<ҔF~,A', '[iWn<S!ψOIDEJԳ', '', 0, '?'),
('sIqF', 'wp-admin/includes/class-theme-installer-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-theme-installer-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}U3_NI', '6W>7U.~X(', '', 0, '?'),
('=V;N.K', 'wp-includes/js/wp-list-revisions.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-list-revisions.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PbOPxOrs72', '#;w1.B3f_;Pf', '', 0, '?'),
('*/%ײ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nwMt785', 'BWk˕Zİ4ЊoRoq\rpk', '', 0, '?'),
('1tҭ#0	[''|', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-chosen.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-chosen.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!cýH', '/FN\\6ʚj;3V(\\x', '', 0, '?'),
('7FWm!wSZ=', 'wp-includes/blocks/video/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')>Hh?7F', '3ᙼ<Ht?>NOuΊEgݎJ', '', 0, '?'),
('Ncͳ;KW', 'wp-content/plugins/elementskit-lite/libs/emailkit/assets/logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/emailkit/assets/logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c8NN?.,tқ', 'nH]?ځfͪ<m1', '', 0, '?'),
('/{B@O', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-static_highlight.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-static_highlight.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7o͡x"*;', 'D	Aۉ||n0|,.', '', 0, '?'),
('\nӛIQED	', 'wp-includes/class-wp-comment-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-comment-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?DO\\~\rx', 'd842v$UӣE`yEق+', '', 0, '?'),
('&b>QC2-', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-short-description.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-short-description.php', 0, '7G8D[%D$A', '7G8D[%D$A', 'bȶyR	"Nk.', '', 0, '?'),
('cĲ.\Z(', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L]T+>q', 'AjQ<0JM޸CE0=1y| ', '', 0, '?'),
('݊,', 'wp-content/plugins/elementor/core/admin/notices/base-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/notices/base-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L`4Ϯ-d?7', '!Rq\r	4>ÿT\r"!DiX)', '', 0, '?'),
('`{G14K', 'wp-content/plugins/elementskit-lite/libs/framework/assets/js/ekit-admin-core.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/js/ekit-admin-core.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZK[T?Lb', 'r=bMQA7Pu=\0"', '', 0, '?'),
('%G\n#j', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SetNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SetNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';{s0)Cհ\\Yf', '_>\n8eC::\n! Ts>', '', 0, '?'),
('Κ,Qagl\Z', 'wp-includes/class-smtp.php', '/home/binawebp/omsrislb.my/wp-includes/class-smtp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.斚aqݓϠ', 'B)HJڐRps 	+''8k_', '', 0, '?'),
('ڄki^', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-url.php', 0, 'hqJ&EjKE', 'hqJ&EjKE', 'gӽ\n\nn&S2W#;r', '', 0, '?'),
('L\Z|=c', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B0oǔ', '7/QƐՐwg:?#{sɟ', '', 0, '?'),
('RZã1U', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BaseDumper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BaseDumper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rOLstTWu', '?u=YG\n?ip\Z:an~ఁF', '', 0, '?'),
('dA#*Źo7', 'wp-admin/js/customize-controls.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/customize-controls.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.w	o1KΪ/', '#"]pEe;I]͇9', '', 0, '?'),
('x-M-Nr', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/OFL.txt', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/OFL.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	-nB	ˌ)u', '8@9e{Ӎ#ңn\nYփL', '', 0, '?'),
('V\ZF\0|', 'wp-includes/sodium_compat/src/Core32/Poly1305.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Poly1305.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@BgEJƽH', 'i|\\IE_X綈j', '', 0, '?'),
('xOW\r', 'wp-includes/sodium_compat/src/PHP52/SplFixedArray.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h{	|is\r$#c', 'n FdiRO{ēfl', '', 0, '?'),
('+BFwm}Pj', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-transients-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-transients-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`o.;U\Z;|', '\rݏV5gwnvqesgߛayx', '', 0, '?'),
('-{:;K-uD!', 'wp-content/plugins/elementor/modules/global-classes/global-classes-rest-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes-rest-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%5?Bۺ', 'N$dZ=rͧb@݀\0%VAA', '', 0, '?'),
('4s63@ 4V\\', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&P\0tׁJPm', 'KÈKK\Z᠒we15B9K', '', 0, '?'),
('5ڜ2l2{', 'wp-admin/js/widgets/media-video-widget.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-video-widget.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':ܥd|QSn', 'R;Twhm^䜺KLA', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
(';o\\3?', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/has-base-styles.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/has-base-styles.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[!gsKL', 'S\rs&l;ZcimDFݻRV', '', 0, '?'),
('AqsH]', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotInBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotInBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X_\Z:$F1%E', 'Uۉ֝*I', '', 0, '?'),
('D!VD+', 'wp-content/plugins/wordfence/views/scanner/scan-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NV	9J', 'փhbf#ЂOER9H\r', '', 0, '?'),
('KeAO''', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K5SuV', 'Xy4~*N?4#M~7H~', '', 0, '?'),
('M/<Pߍf.', 'wp-includes/js/jquery/ui/effect-bounce.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-bounce.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b{o#{', 'vT2n>`_;5>\0%^', '', 0, '?'),
('O2\nG;?=y', 'wp-content/plugins/wp-optimize/includes/class-wpo-deactivation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-deactivation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a6H', '!8:#,]uMz=', '', 0, '?'),
('R6SjvgG', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lTt\rW<C8', 'n&ESCDj拾UٷU,WL', '', 0, '?'),
('VT2ewgߋu8', 'wp-includes/js/jquery/ui/button.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/button.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(1:a?qj@', 'Tm"	Yj%ݚM''Ra>8', '', 0, '?'),
(']gߜ=JTw4', 'wp-includes/blocks/post-time-to-read/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	oauk4"', ' 1!\0x$aӑNJGݖu', '', 0, '?'),
('^#{_\0	s', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_inset-soft_95_fef1ec_1x100.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_inset-soft_95_fef1ec_1x100.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aB+^`|0+', 'lO}pE_5)M(CEG0', '', 0, '?'),
('a&Qmg.C@', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*25<ܞXm', 'd뭟)_\n+}79L*8', '', 0, '?'),
('fPs4f&N', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-16.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-16.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wZRb,X\Z', '?I!k12ۚ=QUij[o!\Z ', '', 0, '?'),
('qV@=Zp#"', 'wp-content/plugins/elementskit-lite/modules/layout-manager/library-source.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/library-source.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h>~̋Ԥ', '&bRXgA2vOT<CO+޽O', '', 0, '?'),
('z6+PH\rtU', 'wp-includes/css/dist/block-library/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ֳT9Z', 'vA#ړ7/\rjL\0$ynN"', '', 0, '?'),
('|W>\nxʧyT{', 'wp-content/plugins/elementor/core/settings/base/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w؅{A', 'Cz%˚5z2.B''§', '', 0, '?'),
('%ou,R', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('˥̰MVЗeA', 'wp-admin/js/widgets/media-video-widget.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-video-widget.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VU6D]C', 'W_T>)Rp>n}Pmz\0:sc', '', 0, '?'),
('(y0ӌUn2', 'wp-content/plugins/wp-optimize/optimizations/spam.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/spam.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\sQ$', 'B}h>\ro(zI)g\0!', '', 0, '?'),
('t(iltY/', 'wp-includes/css/dist/list-reusable-blocks/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@T; \\FYY0.d', '\Zb/7Jt0Ƞ|4;C6̎', '', 0, '?'),
('$X%,~\rRO¾', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasEveryBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasEveryBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&8詅v}UKS', '5fg[V''/6L^p]_FhpjDX', '', 0, '?'),
('Τe;y[99', 'wp-includes/js/jquery/ui/checkboxradio.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/checkboxradio.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' kNg''`s', '{0?;˴d Ԭ%ooWi)7', '', 0, '?'),
(']:~"՜', 'wp-content/plugins/code-snippets/js/services/settings/editor-preview.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/settings/editor-preview.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3&{`sUtG]Z', '2[\\\r8Ƕj[[(0\ZF', '', 0, '?'),
('qƃ2', 'wp-content/plugins/wp-optimize/vendor/autoload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z@/GV', 'z\r\Z<lj߇W:&0\nGawL', '', 0, '?'),
('3"(za48', 'wp-includes/images/media/code.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/code.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-oUʓUU_', '''eM a[R#q2kz+*<7\0j', '', 0, '?'),
('T3''7{N', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G୳a#\n!', '7J_C#zV\rqA1\Ze\nm =_H', '', 0, '?'),
('Ey<h_', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-info.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-info.php', 0, '́dBLc	|-', '́dBLc	|-', 'A͍i.\Z·l#bJ%w', '', 0, '?'),
('T{2\Z\Z8EF', 'wp-content/plugins/elementor/includes/controls/hover-animation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/hover-animation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fDUmp`el', '"A\\SǊ5Xv\nQ>', '', 0, '?'),
('m{@m', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oLFʒ4i--', 'Cc#1_|Z  1ɾYx', '', 0, '?'),
('l/xXz<M@e', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('h)\\z', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q-*/>ۤM', '{D0''zc$\\͗'']', '', 0, '?'),
('8\\oW~­v', 'wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$@+5{4', '{h[bs4)M\rI43', '', 0, '?'),
('ܒ\r\r1w57x', 'wp-content/plugins/elementor/includes/widgets/text-editor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/text-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qJq|l', 'QCJd\r6:ܨA]4\\Š', '', 0, '?'),
('5ҤZ', 'wp-content/plugins/elementor/includes/settings/controls.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/controls.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '23\0$U+NSU', '֯$\0ȗgCNFE\Z?|Gy{e&I', '', 0, '?'),
('U>1ӛ"^', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Node.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Node.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']#_tR v', '	''GcJd0C', '', 0, '?'),
('sot͈P\r}r', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js', 0, 'H1S ?', 'H1S ?', 'eQGl_sZNRYM$lTxGA', '', 0, '?'),
('<zo=rf', 'wp-includes/class-wp-duotone.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-duotone.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':6:\r[6ʗ1', '_''2۾n5(^AfI6', '', 0, '?'),
('\r$	b]h|', 'wp-content/plugins/elementor-pro/assets/js/qunit-tests.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/qunit-tests.js', 0, 'b;㩯:CE', 'b;㩯:CE', '	br;ql\rO\0O>$j晅\nX', '', 0, '?'),
('~QԁŴFp', 'wp-includes/class-wp-taxonomy.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-taxonomy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=O*XS]__]', '|OiеwD6P>yw̊s(', '', 0, '?'),
('ZE;h', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontsize.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontsize.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0S4D[_\Z', 'Ew?v),+vĂu\0&Kk稌', '', 0, '?'),
('@뵰On', 'wp-includes/blocks/html/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z1,8y}ÑH', 'z9=25G14?Z-NA', '', 0, '?'),
('!ּB)A#$', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hkN5', '\r,g01ȲD=PC\rGH>@xh', '', 0, '?'),
('0FO', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-post.php', 0, ')<wphz9B+', ')<wphz9B+', '%^Ɋ\\lENV@%fal]"', '', 0, '?'),
('dM/6KʚNx', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%lIr!6', 'C+ʳ@MV\r|\0::8,b[m/', '', 0, '?'),
('i[=<I\Zk', 'wp-content/plugins/elementor-pro/assets/js/nav-menu.3347cc64f9b3d71f7f0c.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nav-menu.3347cc64f9b3d71f7f0c.bundle.min.js', 0, 'Bnα~mS', 'Bnα~mS', '$sF''7sew-\rV92]ʶ', '', 0, '?'),
('kHm1`0ѹ_', 'wp-content/plugins/wordfence/lib/wordfenceConstants.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceConstants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ncX	_:1Ik', '*}#lL~(q5', '', 0, '?'),
('zݿ&X❙6s', 'wp-admin/css/media-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/media-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q߆_);z9C', 'Y	p|af\nɣ:\0g=', '', 0, '?'),
('|}mxg&;eS7', 'wp-content/plugins/wordfence/views/unsupported-wp/admin-message.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/unsupported-wp/admin-message.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u8l:K', 'yn$訌b?+{%	n@t', '', 0, '?'),
('j{=', 'wp-includes/SimplePie/src/Credit.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Credit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>f\0\nB\Z', 'j^(,#euYR7CC8ӯO', '', 0, '?'),
('ДZ6\n@p_1ۃ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConversionSkippedException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConversionSkippedException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T}Ԟ(J:`w', '\ZEm}=,\\g\\T ?', '', 0, '?'),
('=]\Z`J/a', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/radio.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/radio.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':׿BQya', '"3VT\\]zLseQ,]$', '', 0, '?'),
('!yF]', 'wp-admin/includes/class-wp-ajax-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ajax-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uŪ֘z$B', 'U<zV|T	wUzn3hvAS{', '', 0, '?'),
('\n (z', 'wp-includes/PHPMailer/Exception.php', '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/Exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1WJ4:x', '	SMZ]y[]48pvS|/{.b', '', 0, '?'),
('q3+0<I', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7lU=', 'PzbbG[Z{!', '', 0, '?'),
('])"/6}', 'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9 <F', 'ɤZRZfSNCoD4#{}', '', 0, '?'),
('cU*t~', 'wp-content/plugins/elementor/assets/css/templates/widget-accordion.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-accordion.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[7)h', '[Yex~(dwiAIlOKS', '', 0, '?'),
('H{L\Zl<m', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qiOMl@Pu!"', ' ՞ f֠SC+>}', '', 0, '?'),
('u{]P"%ԁ8[', 'wp-content/plugins/elementor/includes/settings/validations.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/validations.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#[\rqZ+', '*lboZ`Ec; }n/', '', 0, '?'),
('ɏB:O', 'wp-content/plugins/elementor-pro/modules/video-playlist/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/video-playlist/module.php', 0, 'ᘌ3Ԡ2(\Z', 'ᘌ3Ԡ2(\Z', ', 5O\rmSPl/3 yeGI', '', 0, '?'),
('ZGRR', 'wp-content/plugins/code-snippets/js/types/Shortcodes.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/Shortcodes.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R?\\3EY', '"U,i}`,kc y4x\nz''>0hV', '', 0, '?'),
('Θz1;f8-', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/DestinationPreparationTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/DestinationPreparationTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{R޽}:񈹞4', 'AD}zB3,\Zv^@Tz&a', '', 0, '?'),
('ΩLd;j#', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-btl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-btl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4jig齻', '_d~#˔{Z@P_ d', '', 0, '?'),
('ٵ\nhJxdvԃ]', 'wp-content/plugins/wordfence/lib/wf503.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wf503.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`h*xn', 'qbdj[2B\r?,?/K', '', 0, '?'),
('$TX@#A', 'wp-admin/js/widgets/text-widgets.js', '/home/binawebp/omsrislb.my/wp-admin/js/widgets/text-widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z÷C6ؠ+', '>X7T\Z&~27Z=JÜ-', '', 0, '?'),
('2zs4xEB', 'wp-includes/ID3/module.tag.id3v1.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.id3v1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '":0J6(`', ':?Eͅff^/UC9R2/', '', 0, '?'),
('kѮt\ZZN~', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML/Helper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML/Helper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kI;Ӝl\\6e', 'aZZibLWh\ZJ<dm', '', 0, '?'),
('Obc" |J(', 'wp-includes/images/smilies/icon_evil.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_evil.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^M>z', 'Q|x>@VЛ_/"W%S', '', 0, '?'),
('x7qT@', 'wp-content/plugins/elementskit-lite/widgets/funfact/funfact-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/funfact/funfact-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r]yrKFwa4', 'm~PPN\rdW=$bgeZ', '', 0, '?'),
('eX)', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-hjson.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-hjson.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~Hܜ~["$h', '*OUYX|\np\\=wT''!', '', 0, '?'),
('e7F%', 'wp-includes/blocks/post-title/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8XpW\rw2', '{):m{^S?j\n8xJB\n~)Q4}c', '', 0, '?'),
('s2\034$k', 'wp-content/plugins/elementor/includes/editor-templates/panel-elements.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/panel-elements.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9qb[)~', '+_W6N]K˫0x', '', 0, '?'),
('%zc', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G\rTر*Z{', '9_dP?(ZwE?<J:pdxe', '', 0, '?'),
('&>a%2ѨW;', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"j\0dKlt', '}L1~iozAMn8.J^', '', 0, '?'),
('1WV(26', 'wp-admin/images/icons32.png', '/home/binawebp/omsrislb.my/wp-admin/images/icons32.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '۬[m9J4\Z', 'DkCdi|a|+\rx̌', '', 0, '?'),
('3N~5i7', 'wp-content/plugins/elementor/modules/content-sanitizer/interfaces/sanitizable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/content-sanitizer/interfaces/sanitizable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FVFaT}b', '>[Ij<E~sOord\robĵ1^l', '', 0, '?'),
('6M͓)̻', 'wp-includes/blocks/text-columns/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I''|=8', 'N@HK09L*|', '', 0, '?'),
('=}LsQ\n`q&', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[M/*E<sWRG', '\n\\Xΰ֨PA\nXj'';q{a', '', 0, '?'),
('OHU|Z#Z\n', 'wp-content/plugins/elementor/modules/announcements/triggers/is-flex-container-inactive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/triggers/is-flex-container-inactive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ja\ri1薤', 'pӴh	nˌ? BjFgmd', '', 0, '?'),
('Otg\02\\B', 'wp-includes/assets/script-loader-packages.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-packages.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tL\nZsYk', ']~''pV礳''p*', '', 0, '?'),
('P\0}B!Q6', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nTbU;!>}', 'cvv(L<7r^\nSaAm*', '', 0, '?'),
('YmRlX\0:', 'wp-content/plugins/wordfence/views/options/option-textarea.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-textarea.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\nMus', 'O=~jc#6L窜asWOQ-', '', 0, '?'),
(']숊YTXm+%', 'wp-includes/js/dist/vendor/moment.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/moment.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4A.UW7abr{', 'OhGu]݊xXOana6J', '', 0, '?'),
('`/gߤ!=6', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/PimpleServiceProvider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/PimpleServiceProvider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!謍DM})E', 'v?e`4\ZVGZw,g%m', '', 0, '?'),
('i9$:Ӟl{', 'wp-includes/theme-previews.php', '/home/binawebp/omsrislb.my/wp-includes/theme-previews.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dnkA,f~QI', '2v]w\n+fpԐfm[c"raU,=', '', 0, '?'),
('jUUX\Z/J/', 'wp-admin/includes/class-core-upgrader.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-core-upgrader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w<s(''e7B', '\\KDWSf\\OCj', '', 0, '?'),
('gزh/ḮON', 'wp-includes/class-wp-block-type.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r[S3?pnDN', '-^4j9bid3M{-obU_^', '', 0, '?'),
('ġ!\Z', 'wp-includes/blocks/categories/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PŚE#Iۆཀ', '=O-;N8UP3<(oن', '', 0, '?'),
('tFÆ''E', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlElement.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlElement.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*:2o\Z1kN', 'F)QHO<G40vY', '', 0, '?'),
('²78', 'wp-includes/abilities-api/class-wp-ability-category.php', '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-ability-category.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A+\nrj*', ')&\ZL=vVAk~Xk$ȭ7TW', '', 0, '?'),
('³|&K%', 'wp-content/plugins/elementskit-lite/widgets/page-list/page-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/page-list/page-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bkسc, .', '#.c~Z&K-EH'' Z', '', 0, '?'),
('1|}dQ', 'wp-admin/export.php', '/home/binawebp/omsrislb.my/wp-admin/export.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' Fk=-y', 'g_NU,ŞRCW_(M', '', 0, '?'),
('Վ][Nj', 'wp-content/plugins/wp-optimize/webp/class-wpo-server-info.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-server-info.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eE+3vb', 'rBci)(3I2+8}', '', 0, '?'),
('փݭX=4TT', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=\n"ls[$Y_', 'QJbؔULr\0CŉE0Y', '', 0, '?'),
(']GXޭS9', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r]CpMSN,lK', 'zrK%$\nUڋ=3h5ZM', '', 0, '?'),
('O=mDY +', 'wp-content/plugins/wp-optimize/css/smush-4-1-1.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/smush-4-1-1.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U7(~`%^5	', 'UV[Zen0uF`&җI', '', 0, '?'),
('fdanK', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_document.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_document.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mx&f`''nu', 'ndH9m+]"RT0><6xwT', '', 0, '?'),
('켦ť%[E', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsById.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsById.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xLK<>W', 'u` ,*ru\\9[,1''\\)bi', '', 0, '?'),
('	1А々S:(', 'wp-includes/js/thickbox/loadingAnimation.gif', '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/loadingAnimation.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"h\rc&', 'BF`F-lڛRT6Յ', '', 0, '?'),
('\rW$2lv9{ܭ:', 'wp-includes/blocks/post-title/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E9ʢ.`BP', 'bXjLX@so9E\r{;mF', '', 0, '?'),
('w:k@DiWQ', 'wp-content/plugins/wordfence/lib/wfModuleController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfModuleController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oIƷkb', '7.ݰ̿UL>"TM5]>', '', 0, '?'),
('plIB:', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-url.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y`\ZQƞ''X^', '//2TKʤ6l{8-JVw', '', 0, '?'),
('_WS޲$', 'wp-includes/js/dist/edit-site.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-site.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's{G&Ҫ', 'h6MOu\r\nQ{e>~%m', '', 0, '?'),
('#"ԘA:.', 'wp-includes/Requests/src/Transport/Curl.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Transport/Curl.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pay', '=FWeS>\\+sR$@', '', 0, '?'),
('/0WfĦ', 'wp-includes/images/media/video.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/video.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';{q''El', ')8uG\\LbEDI', '', 0, '?'),
('0u=`Ue?', 'wp-includes/SimplePie/src/Enclosure.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Enclosure.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[̕{:ph', 'WDMmRAo\\q7wB\r)', '', 0, '?'),
('3G:&''', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/cache-files.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/cache-files.php', 0, '(nYx}Tc', '(nYx}Tc', 'δo4	/sK-s]X', '', 0, '?'),
('9r^-)', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u3t16~5?', '(, 1	l	hoJzo', '', 0, '?'),
('J\nVl/ל{', 'wp-includes/blocks/post-time-to-read/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5gY揺', '܇Um)FԹ Ra!~!0*', '', 0, '?'),
('T!ة7l<', 'wp-includes/js/codemirror/htmlhint-kses.js', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/htmlhint-kses.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[k[#cLf{', 'N&V\ZA/R#~բ_J*Ї', '', 0, '?'),
('WFREE4\0', 'wp-content/plugins/elementor/assets/css/widget-testimonial-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-testimonial-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C'',^uDp', '|%NNȱ+߱(A>vݶ', '', 0, '?'),
('W\ZY9\\DKWD=Y', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mysql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mysql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SF}żzj+', 'q.-|wc2', '', 0, '?'),
('_jSX2QQ=', 'wp-includes/ms-load.php', '/home/binawebp/omsrislb.my/wp-includes/ms-load.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UKtOCC"', '<9>>nY\Z''J<ͼ2RP\\(', '', 0, '?'),
('`~|D%EHwO', 'wp-includes/sodium_compat/src/File.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zsJTj', 'KPzafN\reDJ&', '', 0, '?'),
('fDܥWQo5', 'wp-content/cache/wpo-cache/omsrislb.my/mobile.index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/mobile.index.html', 0, 'n#AX9', 'n#AX9', 'ذ`7]r׻dJծ,>hdW', '', 0, '?'),
('l\Zt7P- ', 'wp-content/plugins/wp-optimize/js/heartbeat.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/heartbeat.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a@p\n!UqX]', ']H?ބêu2''awXJ''eU', '', 0, '?'),
('r2I''w', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!øK%;8', '[/0U!8]%{@aѱ+1^3O', '', 0, '?'),
('ÂuJM/ wy', 'wp-includes/sodium_compat/lib/php72compat_const.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php72compat_const.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p{[˔	', '9oGfpmeG#`:Q{`', '', 0, '?'),
('Ìн0ubM', 'wp-content/plugins/elementor/modules/checklist/data/endpoints/user-progress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/data/endpoints/user-progress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jA/h(1ow', '''.,edoߤDu2,t', '', 0, '?'),
('ÑwH+qF', 'wp-content/plugins/elementor/assets/js/app.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N4e;z❝o', '%H(K%?G0[E', '', 0, '?'),
('ÕuU[,IY', 'wp-includes/Requests/src/Exception/Transport/Curl.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Transport/Curl.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ТR1UUQ', 'q]t(Jj\r#9o\0Ⱦ', '', 0, '?'),
('Ø0Eg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/logiql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/logiql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%NQWlf+', 'SǕN@lB1Q} ՝c3', '', 0, '?'),
('ä]0`AS:D', 'wp-includes/js/dist/blob.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/blob.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VKq]}eSɭ', 'Z/9y}Lm', '', 0, '?'),
('ü)Hb*>ҦCw', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\uyzw8	n', 'R׋G#''|+[(q_zSSݘU', '', 0, '?'),
('ýP7&ݣ`)', 'wp-includes/sodium_compat/autoload.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#8i=]_n{U', 'gxlv#Ɉ9Ug''', '', 0, '?'),
('QƇhԜ', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o\rӆNa۴u', ')r''OшU(;h[M', '', 0, '?'),
('N:]y\nϱ', 'wp-includes/blocks/search/view.min.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.min.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd:Qj', '6Fn[L\0!mm9m#k', '', 0, '?'),
('f|J#P2', 'wp-content/plugins/code-snippets/dist/settings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/settings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']C|l:Aq[', '`\0otM.<k	klagB', '', 0, '?'),
('tnRؔ%^', 'wp-admin/images/align-right.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-right.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BOe#l@:P+"v', 'ɳC?=&UyZ31!<c', '', 0, '?'),
('5V"$$_', 'wp-admin/includes/post.php', '/home/binawebp/omsrislb.my/wp-admin/includes/post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ߍ~؍A', 'C{bF%P6b7q)`', '', 0, '?'),
('זkTKB', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/editor.js', 0, '\\\0ȡTJ', '\\\0ȡTJ', 'E}>p#,ۜdi!{c*75', '', 0, '?'),
('4l!r؄', 'wp-includes/class-wp-block-type-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-type-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qw;LUp', '~ofqJ^\r3>k*x?Vyn5', '', 0, '?'),
('4赆R2', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jS)*wr?', ']iL>קO1Y\Z)%_L', '', 0, '?'),
('9ٲtr', 'wp-content/plugins/all-in-one-wp-migration/storage/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/storage/index.php', 0, 'A-pޜ\r͈V', 'A-pޜ\r͈V', '=+O²2E[VOD', '', 0, '?'),
('iY\0\nR)', 'wp-includes/post-thumbnail-template.php', '/home/binawebp/omsrislb.my/wp-includes/post-thumbnail-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ݪR"gC', 'hj[h湉.EHS:fpީ̫', '', 0, '?'),
('uXݼ#-', 'wp-includes/class-wp-http-ixr-client.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-ixr-client.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '45eTֹ', 'F@Iі%4]aks<Pkk', '', 0, '?'),
('ʆϓac', 'wp-content/plugins/elementor-pro/assets/js/load-more.064e7e640e7ef9c3fc30.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/load-more.064e7e640e7ef9c3fc30.bundle.min.js', 0, 'J-"ײ', 'J-"ײ', '-Iu!e7ϱP7s?1DeT', '', 0, '?'),
(']hU/', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iڼM>(', '7CUX	nUU¿Bi%Ȁm', '', 0, '?'),
('\0UaS', 'wp-includes/widgets/class-wp-widget-block.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-block.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gGP''#Dax\\', '|XKeQLK[u\0@R', '', 0, '?'),
('cᘣrw', 'wp-includes/blocks/file/view.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ጚHf I', 'yeJTGЈVK9рkԜ', '', 0, '?'),
('Yv{oJy', 'wp-content/plugins/code-snippets/php/settings/settings-fields.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/settings-fields.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LNxFR͘b', 'AX/?aBۙYiQK"A', '', 0, '?'),
('}}߳У%~H', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y=M;.', '<W=.4Ro>Kw@', '', 0, '?'),
('i\\''YXӯ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0mQC2)', 'fWbRF}mĵ2yĴh.\Z', '', 0, '?'),
('8d$nxyŚ', 'wp-includes/blocks/navigation-submenu/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#r\rl\0{@/', 'Su/{R\\e-xFh!E', '', 0, '?'),
('5Ĩ)0X''', 'wp-admin/widgets-form-blocks.php', '/home/binawebp/omsrislb.my/wp-admin/widgets-form-blocks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[g?_', '\\/(`u,\r{i\rHg4', '', 0, '?'),
('+o.\\^M', 'wp-content/plugins/elementor-pro/assets/js/popup.483b906ddaa1af17ff14.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/popup.483b906ddaa1af17ff14.bundle.min.js', 0, 'InI _V#5', 'InI _V#5', 'u[*<g#75mw', '', 0, '?'),
('/fhwiR', 'wp-content/plugins/code-snippets/dist/editor-themes/3024-day.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/3024-day.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?M^;8', '0Շkض,w?4AG', '', 0, '?'),
('1P$*BU', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.04e1965a317cbb6d22df.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.04e1965a317cbb6d22df.bundle.js', 0, 'nQx\0N', 'nQx\0N', 'NٛP3A_@=U(', '', 0, '?'),
('C䠷T	f ', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gOP҇č', '~8 ir\nPp\n25DahBzP', '', 0, '?'),
('QU%j*̃~', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xnj', 'iF8 vkG`p0؂\r', '', 0, '?'),
('V{"MJ&', 'wp-includes/sodium_compat/src/Core/AEGIS/State256.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS/State256.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<AB5\0', '==|nړvFk_[_O', '', 0, '?'),
('`,}D@', 'wp-includes/class-wp-recovery-mode.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZYHtz{''', 'PKHa_:Y&W;#Ì', '', 0, '?'),
('fa;7F', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-deprecated.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-deprecated.php', 0, '*ub0', '*ub0', 'Yt+D?9F̢zz', '', 0, '?'),
('pȬES0K', 'wp-includes/blocks/search/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O1f43Ѽ_0', '}+{Ȗ19D\0W0S(\0sj(%%p', '', 0, '?'),
('vV/W{}!^N', 'wp-includes/blocks/html/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&FR~R	', 'k"D?W2eIuD8<3G', '', 0, '?'),
('~;$(pXz', 'wp-includes/blocks/comments/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$н?(bKd2', 'n\Zz293S', '', 0, '?'),
('ākOd%:R', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lisp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lisp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rS25Z', '5"3\\^j-,\r\rZ{)', '', 0, '?'),
('Ĉ^A+lod', 'wp-includes/js/tinymce/skins/wordpress/images/audio.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/audio.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7~!\0"w', 'gz.gV:[ЙH)Ȟ', '', 0, '?'),
('Č2F;', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mask.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mask.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g9}7AL钫', '6ӞBE\\_D`/@S\Z', '', 0, '?'),
('ĔԼpPZ	H', 'wp-includes/images/smilies/icon_cry.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_cry.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E\ZECsx', 'vewIHea-c', '', 0, '?'),
('ěw+qAZ', 'wp-includes/blocks/group/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hʬHkx', '٠XD/5\00\0DlNhew', '', 0, '?'),
('Ĥbd3H(', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/loader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/loader.php', 0, 'WHXb', 'WHXb', '}`V}}[L7߼~ ', '', 0, '?'),
('Ĭc|cg|G', 'wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+fq(4Ȯ', 'k(\r(Njj''̣6./''', '', 0, '?'),
('ĳJ\n`|5,HT', 'wp-admin/includes/admin-filters.php', '/home/binawebp/omsrislb.my/wp-admin/includes/admin-filters.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z+{}PkFt`', 'J\nWZ>o7߭\\tQֽMՖL', '', 0, '?'),
('ĶƖoèf{U', 'wp-includes/js/jquery/ui/effect-highlight.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-highlight.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nBs>=}[+C', '	{Nm9CTO/kK0w', '', 0, '?'),
('kG&_W<^l', 'wp-content/plugins/elementor-pro/modules/forms/controls/fields-repeater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/controls/fields-repeater.php', 0, ',WnKzBz', ',WnKzBz', '̮ڨ\0kܾYUf*e\r`ĵ', '', 0, '?'),
('uh\Z\Zi0&', 'wp-content/plugins/code-snippets/php/views/partials/list-table.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/partials/list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':a)ph:k/(', 'k\\`󰭦BCgѿ', '', 0, '?'),
('eN-@1\Z', 'wp-includes/blocks/legacy-widget/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/legacy-widget/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gtnr*a', '>!OjeE"~9*503', '', 0, '?'),
('Ѻɩuy}', 'wp-includes/sodium_compat/src/Core/Salsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Salsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b5lJ#v', 'c=0-#-TSX&4\0K8\r', '', 0, '?'),
('ʙ\0}甠K.', 'wp-includes/js/jquery/jquery.color.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.color.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{)7wF', '.R''1taf*t.rtv''b', '', 0, '?'),
('Єj[''P`y', 'wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b\ZTw_b', 'HUw؃n׭AÑe', '', 0, '?'),
('䜀_Pu', 'wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.js', 0, '|w솜c,B^0', '|w솜c,B^0', '\n-³Ip@5Z"os0Rp쩉', '', 0, '?'),
('3*͋ˢ!6', 'wp-content/plugins/elementor-pro/modules/call-to-action/widgets/call-to-action.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/call-to-action/widgets/call-to-action.php', 0, '`<itЛ$\Zem', '`<itЛ$\Zem', '&wlb0w:xW-[', '', 0, '?'),
('{Amm*K', 'wp-includes/nav-menu-template.php', '/home/binawebp/omsrislb.my/wp-includes/nav-menu-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w<^Cm.\r`', ']d@"\r5檢[', '', 0, '?'),
('ZX|or', 'wp-content/plugins/elementor/app/modules/import-export/processes/export.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/processes/export.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\L78oA', '0stKm^^̣3bK\06', '', 0, '?'),
('%5VJuq.j\ZVA', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pgsql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pgsql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ό_zqW', 'E`jW4''%Ycz"56^S`l', '', 0, '?'),
('.#i1K<7͊', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kb}.\\u', '[9q36ݝL\0m\r', '', 0, '?'),
('6Nϫ|G%8', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-content.php', 0, '!@]NLCm3w', '!@]NLCm3w', 'BcE\rŲ<ʃ֔;X<s"u9E', '', 0, '?'),
('A煷`!%@RQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1/#\Z-+N', 'N&bv#*U0Y?\0', '', 0, '?'),
('Q8󖺅^nY=G', 'wp-content/plugins/wp-optimize/js/modal-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/modal-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's_Җ6?#o', '[22w>:7Yq՗ce:4$k', '', 0, '?'),
('_npaV', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>*L1˵"k%F+', 'ZiMfUvi-})f"Mnd?X', '', 0, '?'),
('`#GbC֊', 'wp-includes/js/swfupload/handlers.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/handlers.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('xeju', 'wp-includes/css/dist/edit-widgets/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BC$hT}i', '(4pnd}?-1^ \ZT', '', 0, '?'),
('~l_Vg,v', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ExportButtons.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ExportButtons.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ꁮ#GYDT:', 'cYs.C՘gNV%az*[j', '', 0, '?'),
('ŀf;4', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/control-media-preview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/control-media-preview.php', 0, 'rƑ8e)jb', 'rƑ8e)jb', 'd4U0BDzNЇ.,56exR"{', '', 0, '?'),
('łjDߋ.˖D', 'wp-admin/css/forms.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/forms.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}ڲe!\0+vt	', 'hn)QF\0yNJqcoJ^F!iC', '', 0, '?'),
('ņԡyiD1', 'wp-includes/blocks/embed/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rz8F|Oے#^', '''	=c; >fs>x(O''^', '', 0, '?'),
('Ŋ6@L(`', 'wp-content/plugins/wordfence/views/scanner/site-cleaning.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\!ߴ_&xhG', 'lt!oVL`͂eܶ<`', '', 0, '?'),
('Ō`f.ڒZDa', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fҡ(Q{oVN', 'qC-b>poTSMwL', '', 0, '?'),
('Ő5]dxv:', 'wp-includes/blocks/pullquote/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N)$tO2', 'O|1UAg\\\r:Jj/L[E', '', 0, '?'),
('Ř2WC', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/DescriptionEditor.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/DescriptionEditor.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^g''m0&mai', 'a{& jÏq!`mbXWgL\rc', '', 0, '?'),
('Ś˴z\rJ6<{', 'wp-content/plugins/wordfence/modules/login-security/js/admin.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/admin.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1Ya(~D4X<', 'm_fg ]B{#2\rAb', '', 0, '?'),
('Ŝ\0>j-', 'wp-includes/blocks/latest-comments/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lt3Ta', '<E(SW䮓+|ѫ$4(vWph^d', '', 0, '?'),
('ũ	±zc9AQ', 'wp-content/plugins/wp-optimize/templates/settings/support-and-faqs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/support-and-faqs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Lcjp*', 'HQ =s"gR:0e*k', '', 0, '?'),
('ű:m:ni', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/link-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/link-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7>ۡw$', 's2y~Mb7WpF;d@!', '', 0, '?'),
('ŷ\r8ɅZSI7', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`kUKeQ~', 'frb3\0LBhB\nAKR}Wj9~5', '', 0, '?'),
('_)Vsg-', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-data-tabs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-data-tabs.php', 0, '͍ɪBJ>nj\Z', '͍ɪBJ>nj\Z', '.8eUAY*THH@', '', 0, '?'),
('<>kt%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-json.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-json.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':=\\ ', '_%4ߥgbG2<i9tՙ-j', '', 0, '?'),
('-plEk/', 'wp-includes/js/jquery/jquery.hotkeys.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.hotkeys.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S!}EU\\bgh=', '\ZJ]x ծTc0n9  +Vk', '', 0, '?'),
('|ǶπZr?', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-install-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-install-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C#wh=Vq', '\r	박_Albŷc:D6d~', '', 0, '?'),
('ZTD\r[FcLL', 'wp-includes/blocks/gallery/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w1SL0i3', '7G\rPY0EG:!"1^vxk', '', 0, '?'),
('s\\ܥ)ٸ', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Env.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Env.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#=0V', '	לPDng`ŠQ_Zk#', '', 0, '?'),
('SrxZyBD#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-erlang.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-erlang.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C$''[Vi', 'Q\\]"\Z⼉7B>5ps', '', 0, '?'),
('Jig', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'INS56.TI', 'J%''vw5sk8ӑMs', '', 0, '?'),
('\rWU', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-snippet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-snippet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9UJSb	î', 'QeT[Z6@\0`s)', '', 0, '?'),
('xxw]3', 'wp-content/plugins/wordfence/lib/wfScanPath.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanPath.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';YkjRzA$20', '୹3vQPju$$e܋Hq', '', 0, '?'),
('	#A\n#b#=', 'wp-includes/js/tinymce/themes/inlite/theme.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/inlite/theme.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z=\ro<3E', '";l\0s''lB3q6)8\n@D', '', 0, '?'),
('*Wei	X', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Sh/^.@\\', 'M2''nmX-yC}2dv߸h', '', 0, '?'),
('f˟rMBkH_', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/gen.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/gen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5\\+:2}d', '\\BR	0w5@>4mcN', '', 0, '?'),
('1_m-+', 'wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''/q!󓩴', 'eYQNbukou\\7ս', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
(')!X?H;+0', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('+gq6^\0', 'wp-admin/images/wheel.png', '/home/binawebp/omsrislb.my/wp-admin/images/wheel.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E0 q0m\ZY%VX', '(]:=dqۅO{9ԀvȘ~', '', 0, '?'),
('7$BG%$TR', 'wp-includes/SimplePie/src/Parser.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(\0xkJo\0_', 'nF=SFGKo}''r', '', 0, '?'),
('@:<o|J-e', 'wp-content/plugins/wordfence/images/wf-error-badge.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wf-error-badge.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EQts	Mzy', '殙F`a݀kmEQ+~', '', 0, '?'),
('dtS0[\\Og:', 'wp-content/plugins/wordfence/modules/login-security/views/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Aabvr', 'C''r9@Kކtw#@k', '', 0, '?'),
('e3C)8\0', 'wp-content/plugins/elementor-pro/modules/nav-menu/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nav-menu/module.php', 0, ']-(r', ']-(r', 'rD$rAڳ..cĖ.ص', '', 0, '?'),
('oks\ZdQ2', 'wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/favorites.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/favorites.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3ZY,ZQ', 'Ȩh\rljbNrɢSy	', '', 0, '?'),
('qVTe_>e4', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/styles.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/styles.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-36DX', 'Ū1cܗnwCH:bK.a', '', 0, '?'),
('ƅ|_i/y	', 'wp-includes/js/tinymce/plugins/media/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/media/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6''1Zf ', '\n>EQi漺k}îǲ', '', 0, '?'),
('Ɖ3S+c,N5', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=x$/"', 'HE* dǭl)z8Ӷ', '', 0, '?'),
('Ɖ{''d}', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-upsell.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-upsell.php', 0, 'z4BR`W699', 'z4BR`W699', '-Y^fêQ+J^', '', 0, '?'),
('Ƌ%h}t', 'wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.js', 0, '=\rEOF', '=\rEOF', '\\7#1߲&IsQ;66', '', 0, '?'),
('Ƌ4no8G/f', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/xmltext.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/xmltext.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HF''@>1 3', '<f3$\n$<) P\r', '', 0, '?'),
('Ət\Zo+ش', 'wp-includes/blocks/spacer/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'skk3zU)', 'u2Tz"-g&]Vj$O>', '', 0, '?'),
('Ɛ8sށf', 'wp-content/plugins/elementor-pro/assets/js/app.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/app.js', 0, 'pK>E7', 'pK>E7', 'gX̕)n-\r?{bB2vCad', '', 0, '?'),
('Ɣ6U''I8n', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-finderselect.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-finderselect.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6+@Zn', 'ykWHw^ۣ ަ', '', 0, '?'),
('Ɲf\n\Z\0C]', 'wp-content/plugins/elementor/assets/js/editor-document.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-document.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ьy]h\n2', 'SmMa/SǒR<"/&6', '', 0, '?'),
('ƟNl:T4', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/primitive-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/primitive-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$?&ކ&`G', 'ƕWal@{''\rCD.1cg{n', '', 0, '?'),
('ƦQqQ!9', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-javascript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-javascript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĝ[T^6', '\\5+=''x]@\r|\r`	OԖ', '', 0, '?'),
('Ƭ+\ZId^i <\0', 'wp-includes/js/jquery/suggest.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/suggest.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':$tVEʿ', 'r,Kpŗrq^b\\=rZ]6+', '', 0, '?'),
('ƬSXZ3', 'wp-includes/js/dist/plugins.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/plugins.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1{,wnFKWQ$', 'Sse%?_Ni+JA-B?L	', '', 0, '?'),
('ưG>wxݕ', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pul]<', '<϶=L*z-*lL\n', '', 0, '?'),
('ƷMu\\#u|<', 'wp-content/plugins/wp-optimize/optimizations/orphandata.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/orphandata.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[wIg?(', 't0"!+=݆[$.\rBnKs', '', 0, '?'),
('î>sDD', 'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LȌťD:', '?ĕ1]pGOd/xٱ#S2', '', 0, '?'),
(';VޯnTy ', 'wp-includes/class-wp-theme-json-resolver.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json-resolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VPdrv$J', '''(;mBUYOA,J0Ktg-|g', '', 0, '?'),
('ĞmF\\b~U', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g7ρwtZ', '-WZ\\ݛoHF	i<Y*[*', '', 0, '?'),
('F}cʎ', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vk`hvJ^c!}', '^ۀ2C<.\r(Nt+ZU9B4', '', 0, '?'),
('몳@ =y`', 'wp-content/plugins/wordfence/views/options/options-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/options-title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۘj玓݆E', 'Kxf+eǖ٭ʌm', '', 0, '?'),
('UM<d(', 'wp-content/plugins/wp-optimize/templates/settings/settings-general.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-general.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z L-õm ', 'V0\ns\n9Qur<u_zB', '', 0, '?'),
('͌%+e@uQ(', 'wp-includes/js/dist/editor.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')ڙ"e]^[', 'a:ɞ7''D\roC+,K63Jʧ2', '', 0, '?'),
('Va		6O', 'wp-content/plugins/elementor/includes/base/controls-stack.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/controls-stack.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',3x', '-fM$_	8WdXLoT', '', 0, '?'),
('M`u_A', 'wp-content/plugins/elementor-pro/elementor-pro.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/elementor-pro.php', 0, '~8`k39r', '~8`k39r', 'V$S4j#F: Q', '', 0, '?'),
('eoyOIy.(', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ServiceLocatorTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ServiceLocatorTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Asyi\\D', 'D³L" ݬ,pQHK', '', 0, '?'),
('\r\r`a}', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lի0tXC9', '+PO9[{zpX&3yy', '', 0, '?'),
('\r!!mJ\Zm', 'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '35di#e%+', '''Qi1m直ʱp۫%VͅD', '', 0, '?'),
('dƕPi+', 'wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/template-renderer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/template-renderer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M2LhiGp', 'VgiY[9a\0\Z', '', 0, '?'),
('k<ċ$͓', 'wp-content/plugins/elementor/assets/images/eyedropper.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/eyedropper.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qkh	,n)x+~', 'Oˮ$|dint-P<+̜C', '', 0, '?'),
('.a8dAFp', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/ValueUnresolvableException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/ValueUnresolvableException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n6IXt3', '=H:p©v. 3d\n#$x0', '', 0, '?'),
('HFS"7\r', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/base.php', 0, '8H!Z\n8_z\0', '8H!Z\n8_z\0', 'Opｕ\\s)U5IC', '', 0, '?'),
('I#)ˁ\\', 'wp-content/plugins/elementor/core/kits/controls/repeater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/controls/repeater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IJp]Ӽm', 'Xw\nS4GML.|x', '', 0, '?'),
('SQsY7aFIMjz', 'wp-includes/blocks/post-author/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7C8', 'KG׷y3W\0Ɋo\Zw''\r&', '', 0, '?'),
('W}\rDŬw*', 'wp-includes/blocks/query-pagination-next/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-next/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|p$.NWJ', '¢JC͊\\t2(1$YSVh8', '', 0, '?'),
('^TOSDIPt', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rdoc.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rdoc.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',x=u\nt)p$', '.\\m.s*iW=	ͬ%', '', 0, '?'),
('ǂ-i).\\z^a', 'wp-includes/Text/Diff/Engine/shell.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/shell.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tC& wB@', 'ݙ<J2AQ<NIW|	eW', '', 0, '?'),
('ǅ99:\Z', 'wp-includes/cache.php', '/home/binawebp/omsrislb.my/wp-includes/cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VTQ&[+eA', 'ڋh-lS7p', '', 0, '?'),
('ǝb2!', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/check-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/check-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1ئN', '{ᓚfpj md#jx', '', 0, '?'),
('ǝ^xJB\Z3-6', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G5]{"V', 'CJr~WOY*[:[j)GЄe', '', 0, '?'),
('Ǥ>zԄ!J]>', 'wp-includes/css/wp-auth-check-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']ahr\n!', 'αa?Z.%?gmi|(\nSJ?', '', 0, '?'),
('ǫ=m/^', 'wp-admin/includes/schema.php', '/home/binawebp/omsrislb.my/wp-admin/includes/schema.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/U6ΰ', 'IJBX2a-x h\0!+X^to', '', 0, '?'),
('Ǭqw֕rO', 'wp-content/plugins/elementor/assets/css/templates/widget-star-rating.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-star-rating.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u%7)Rc3$`TJ', ';''gTQF6bq}5QQ	ɋN', '', 0, '?'),
('ǳ\\_L-YŌ%$', 'wp-includes/ID3/module.audio.dts.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.dts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'llA2̋', '\ZaHr%A6$`HuT6y4', '', 0, '?'),
('ǿeg!', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/genesis.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/genesis.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0(Eؙ', '"@ŖjKny-Ac֊', '', 0, '?'),
('G-/7q#dfVX', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uFY/?K\\31', ']Y:bp.	*&t#a', '', 0, '?'),
('Ҭ@>]', 'wp-admin/images/contribute-code.svg', '/home/binawebp/omsrislb.my/wp-admin/images/contribute-code.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%''+c&"L', 'RuiKt\Zjl@7#U*A', '', 0, '?'),
('ۺޅ;''', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-excerpt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-excerpt.php', 0, '昘m8ԋy', '昘m8ԋy', '.*\\:{aPLu', '', 0, '?'),
('myvH̍', 'wp-includes/blocks/table/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ye_\rk*8', 'A''Rr;hWOؔ!F%S_s0 ', '', 0, '?'),
('wy*XO\nG', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}&?P!D,"', '}gY/~[-Ԛd	pl9fάs', '', 0, '?'),
('gELz1a*', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+:дYW#c3a', 'YaM1ln4,Ūsy2Ħ$\Z)', '', 0, '?'),
('}CwXTC', 'wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm]a\\$', 'Ǘh?S):i@h.Xg', '', 0, '?'),
('`	Ž1 `e7', 'wp-content/plugins/elementor/core/files/assets/json/json-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/json/json-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',ϑE5v', '\rf\r.Դ"MO+uL', '', 0, '?'),
('	pR', 'wp-content/plugins/wp-optimize/templates/handlebars-compiled-4-1-1.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/handlebars-compiled-4-1-1.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3L,һX^', 'MgWi(Ƹp ON/efXB$', '', 0, '?'),
(';Tg{9ό@͍', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-split.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-split.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IIsIz!$', '9-t\rxӤbLIP([PvPont', '', 0, '?'),
('\r;AdMkA', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k4oP', ';_d\nͪ"ܗ\rBtOl`/', '', 0, '?'),
('|2E<s#il', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/taxonomies.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/taxonomies.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(}SuP"y5#-Y', '	1০/n`<W/ԃ>04', '', 0, '?'),
('\Z{g?3gڢ\Z', 'wp-admin/images/icons32-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/icons32-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%*g', '#!$@0g.;i3%!cHP=', '', 0, '?'),
('fp\0!tDK', 'wp-admin/js/code-editor.js', '/home/binawebp/omsrislb.my/wp-admin/js/code-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N''߽	%', '-Bd/`\\Vx6Y*-$W', '', 0, '?'),
('"u@TS5', 'wp-includes/images/smilies/icon_idea.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_idea.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<]W3tށ', '{2^4STlIJQ"', '', 0, '?'),
('&d߻|', 'wp-content/plugins/wp-optimize/templates/minify/css-settings-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/css-settings-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<h:', 'تM3dO)3Ț?(A', '', 0, '?'),
('*sP;#IA', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFunction.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFunction.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$".@Ҡd', '&2M: =;r{nv2', '', 0, '?'),
(',~YJJ2', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ini.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ini.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YB{Gj\na', 'hAȳ,NoBB1hdr4', '', 0, '?'),
('.Ƅ)to', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tsx.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tsx.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RpDKU⏳6|', 'f\0Q}#>{\r%0R#hş(', '', 0, '?'),
('6wr]*\\#', 'wp-content/plugins/wordfence/license.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B7&]NDd', '@HM;ﺾ5 i''o5V', '', 0, '?'),
('7\0tt.', 'wp-content/plugins/wordfence/views/dashboard/status-renewing.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/status-renewing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hwBe (', '^K$1\0nƄ&iM{$^h', '', 0, '?'),
('8R6>G"', 'wp-includes/js/dist/element.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/element.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm\n=WSw)', 'X2|ڐvmD\rGut9', '', 0, '?'),
(';NQ>', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v@ޗ֙8:(', 'Dkf}{g%y=3Vfh)nqTx', '', 0, '?'),
('=qgBdc', 'wp-content/plugins/elementor/assets/svg-paths/circle.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/circle.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' |o!\r^QTy', 'PfI<dPUyUK-eXpu', '', 0, '?'),
('Ge`("+wd31x', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Token.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Token.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x\0hҸ(', '(,jRc^7T8k7{n#B', '', 0, '?'),
('Y$''o', 'wp-includes/css/wp-auth-check-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~ie/;. ', '#\rlXCF*Z}$e\Zj', '', 0, '?'),
('bfU9AF/C', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/UriRewriter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/UriRewriter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r5 ', 'o6\ZO\nJgk^D}', '', 0, '?'),
('h2nuXjq_', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/updraftplus.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/updraftplus.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W5ap5''@r', 'pR#[2C\n>\rNݎ', '', 0, '?'),
('p\ZmNukT', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontfamily.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontfamily.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XNb׿.$', '6НP\nC=ƶ`I2"8ƪt', '', 0, '?'),
('uC~7\nWe', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ko`U', '4C	x̶Q\n*7', '', 0, '?'),
('xxj^׀', 'wp-content/plugins/wordfence/vendor/composer/installed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/installed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$SNRcg..3', '}[VD痎xc0{''x v', '', 0, '?'),
('ȁ#/\06', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2Atz`n%YP', '\\1[Z>EKRkW\\v', '', 0, '?'),
('ȍP 3\n', 'wp-includes/class-wp-customize-control.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5k]Enf', '٦d34\Z)SDW1Aﰺ:	8\\g˃', '', 0, '?'),
('ȍٶtTl~', 'wp-includes/js/dist/development/react-refresh-runtime.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-runtime.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\M(gɌ#', '?l\\^	=nC6}T7', '', 0, '?'),
('ȎwQB~ߴ +', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DoTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DoTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Awb1(', 'o5㰯zl#$HP\\.W', '', 0, '?'),
('Ȕsڏj;6j', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x@l?:.J8', 'xzzz3gR51W7k1', '', 0, '?'),
('Ȗ`}{D?Z5', 'wp-includes/blocks/term-count/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5s2V', '+{CP4NT`aߧ+`UeA', '', 0, '?'),
('ȣ-Ŀ?', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NpҒ ', '5sqZ1NLJxq5/', '', 0, '?'),
('Ȥ	1]#w3]', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӣ/`', 'Ub'']NjqDoʿ', '', 0, '?'),
('ȷ~5?=ed', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.tZ#f', '{\nI }WN\rEOAr', '', 0, '?'),
('ȼ B=s,G@', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/index.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/index.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!ZWQ', 'NìRm$ƅl/?H۴', '', 0, '?'),
('l1F"0(+', 'wp-content/plugins/elementor-pro/assets/js/table-of-contents.4c244acf62929782146e.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/table-of-contents.4c244acf62929782146e.bundle.min.js', 0, 'HTnC!@<', 'HTnC!@<', 'μc({oW[wB', '', 0, '?'),
(';L	\r\rS', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-core-render.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-core-render.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm7=k릌lBw', '6 14ۺvx\r4{1', '', 0, '?'),
('R=#Z^', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rust.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rust.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&ꢹ}sG֘o', 'n2n= iB8+;%?R\Z', '', 0, '?'),
('''	δP+!', 'wp-content/plugins/elementor/assets/css/widget-icon-box-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-box-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B4R20j~61', '*C0ކJ-Lؔi=(25<', '', 0, '?'),
('q=~1\Zr~', 'wp-includes/SimplePie/library/SimplePie/Parse/Date.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Parse/Date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@p i~HE', 'Cu3fq>2;cDG', '', 0, '?'),
('^*\\H'';', 'wp-content/plugins/elementor/modules/site-navigation/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1VoWNW', '?\nY(5%m솚QJ.׿]^', '', 0, '?'),
('~\r\ZK4(#', 'wp-admin/user/credits.php', '/home/binawebp/omsrislb.my/wp-admin/user/credits.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(팋#A;', 'uA+I/㊓\0nN1G8\ZD-', '', 0, '?'),
('ALA=', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore_soft.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore_soft.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kN,33z:;', '2\Z3;!2ǴjUE"1$7', '', 0, '?'),
('k̆}Ch', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/GhostOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/GhostOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V:&9E\nU', '|9*	/~?ԀɁح)/', '', 0, '?'),
(')5xis', 'wp-content/plugins/wp-optimize/images/features/scheduling.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/scheduling.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l3HBhȞd\n', '.{zst<fgCfk<=tp', '', 0, '?'),
('19WuӀ4B', 'wp-includes/blocks/query-no-results/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-no-results/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rڠB0*}3', '*Lo^7&D־2Sַ3A}\r', '', 0, '?'),
('9oIGdtY', 'wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9w?JM@', 'G+L:)3\ZXf&U', '', 0, '?'),
('A7''C#wSs', 'wp-admin/css/about.css', '/home/binawebp/omsrislb.my/wp-admin/css/about.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(LS ', 'RHc^I,P/$?aI,"Lb;', '', 0, '?'),
('G5F^Ե\ZN', 'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')8QFbT=', 'G\Zkig r)z3', '', 0, '?'),
('P2SS$}6''', 'wp-content/plugins/elementor/assets/js/packages/env/env.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=l{K3?+CB', 'ގmA+K)7&nw''̑ʜ', '', 0, '?'),
('V}V`[\nh4', 'wp-content/plugins/elementor/assets/js/accordion.36aa4c8c4eba17bc8e03.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/accordion.36aa4c8c4eba17bc8e03.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a๠[+5Ec7', '\Z/9+k>ݱ./[m}X', '', 0, '?'),
('W6[%s', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gmagick.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gmagick.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!}ɅX9 {&', 'ta1e_A89Ug9Bǝq', '', 0, '?'),
('`a:0.f', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fortran.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fortran.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fs	\\"͔{)', 'YM]ΒJCw龬c', '', 0, '?'),
('l/EֺZx4', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-number.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-number.php', 0, 'qKt%6''lX[', 'qKt%6''lX[', 'cc`-E(1/ȝY', '', 0, '?'),
('lXwB*XW', 'wp-content/plugins/wordfence/images/sort_asc_disabled.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc_disabled.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Oɧ*X9e', 'v\Z|5.YX Z鹁Ź', '', 0, '?'),
('p\rso4d', 'wp-includes/Requests/src/Exception/Http/Status400.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status400.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GlC\Z }*b\n9]', '|-;[e6U*|DC3', '', 0, '?'),
('ɀA[+\ZrB', 'wp-includes/SimplePie/src/Parse/Date.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Parse/Date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W''1Զ@', 'Ǯ݅S\r!Kf;٘', '', 0, '?'),
('Ɂr~"!j', 'wp-content/plugins/elementor/includes/controls/groups/css-filter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/css-filter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j/a\r', ')JB*Ql__S[yz', '', 0, '?'),
('Ɇ8pŻѵV', 'wp-content/plugins/wordfence/lib/wfActivityReport.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfActivityReport.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j{az', 'Cg\r×9qZA:E', '', 0, '?'),
('ɋSd', 'wp-content/plugins/elementor/assets/js/e-home-screen.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-home-screen.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&60	~', 'F.^m"jV[%#xw_"#+', '', 0, '?'),
('ɋ%@9#v`Q]', 'wp-content/plugins/elementor/modules/atomic-widgets/parsers/style-parser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/parsers/style-parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rMÂ"x', '}oTb"\rrT%,(\0[`Bm', '', 0, '?'),
('ɐ(X}Ek\r', 'wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.9df78f10e131a7423313.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.9df78f10e131a7423313.bundle.min.js', 0, 'LA2&0*', 'LA2&0*', '9AZu֩qce\n(k', '', 0, '?'),
('ɓ<nJ@nqr/', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/FInfo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/FInfo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1+@DX!', 'ipnJmﱯ.*4%m~Mq(^', '', 0, '?'),
('ɔu\\K_Jo}F', 'wp-content/plugins/elementor/assets/js/ai-unify-product-images.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-unify-product-images.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=m	0J>ff', '\n}SDQ''VP''#cQd4', '', 0, '?'),
('ɘɿ''', 'wp-content/plugins/elementor/core/files/css/post-preview.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/post-preview.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'UH1P)TL|', '|/3`CddDND', '', 0, '?'),
('ɡʧ~.)k', 'wp-admin/includes/class-custom-background.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-custom-background.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0Ι?:$ѴH', 'ԗ>BTMa%@<\ZqwE$', '', 0, '?'),
('ɦ''$䅪R', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/Autowiring.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/Autowiring.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɯXG\ZgeN', ';Si_fAQעWuFި:', '', 0, '?'),
('ɻq$OLN&Ǝr$', 'wp-content/plugins/elementor/app/modules/import-export/utils.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/utils.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-on]$,{6', 'AFi\rU/`_ys]nCl7`', '', 0, '?'),
('ɻ\rt条=k', 'wp-content/plugins/elementor/core/documents-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/documents-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'utg.Т-', 'taĊP.\nLJW}', '', 0, '?'),
('ɼWq!K(Y', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AXH)vMWy', ' t4k5-&', '', 0, '?'),
('ɽ⋝.Y\\+Қ#', 'wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6rXi{8', '\0\ZZ}[)([:?+e)5', '', 0, '?'),
('$AQ7ю', 'wp-content/plugins/elementor-pro/assets/js/video-playlist.1eaa6f5cb62ea2d58265.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/video-playlist.1eaa6f5cb62ea2d58265.bundle.js', 0, 'pMdl>QC*', 'pMdl>QC*', 'FG\r!r\n嵸t>P+c47_', '', 0, '?'),
(')\rӲ\Zↇ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asciidoc.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asciidoc.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1i<!VYZ^', 'yL=_Sw4c\ZBkdwB\0', '', 0, '?'),
('2Die', 'wp-admin/css/l10n.css', '/home/binawebp/omsrislb.my/wp-admin/css/l10n.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''BFUbB@\r', '\Z67`l \Z֘''VwLS4U', '', 0, '?'),
('jI]a\Z\n', 'wp-content/plugins/wp-optimize/images/features/logging-n-reporting.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/logging-n-reporting.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z*:d	l\\X', 'ǪT3U`x	`T8XEB2ԈJ', '', 0, '?'),
('xV4', 'wp-content/plugins/elementor-pro/modules/notes/database/models/note.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/note.php', 0, '>j\rՉ[H6', '>j\rՉ[H6', 'J3jxZv5k:Et96;', '', 0, '?'),
('zĄj"+-', 'wp-content/plugins/elementor-pro/modules/countdown/widgets/countdown.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/countdown/widgets/countdown.php', 0, 'EIF.', 'EIF.', 'K/b<j֟K3\Zaw,X+', '', 0, '?'),
('UrDJs[FɎnD', 'wp-content/plugins/elementor/core/admin/notices/elementor-dev-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/notices/elementor-dev-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vt3Ȍ%w', 'kZ''IVj+P7F⏞/V~''s', '', 0, '?'),
('0\nY9#c܌]', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-typography.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-typography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	c?07]Alu', 'myEЫ0VÁ5Hah\\', '', 0, '?'),
('?"&-j', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!yNќz', 'ݩ\0$\no[\\q͞rv"/', '', 0, '?'),
('h&''s', 'wp-includes/blocks/search/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&W+', 'S(g%$%p+3\\:5', '', 0, '?'),
('hAaҿ@ڧ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/django.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/django.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '98GQ:\0"', 'dK+z/z}`bY"7աjkR*', '', 0, '?'),
('&Pox', 'wp-content/plugins/elementor/assets/js/editor-notifications.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-notifications.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HuB8', 'tUV=:2V eQ*z3g', '', 0, '?'),
('gvϭŵBUw', 'wp-content/plugins/wp-optimize/templates/admin-page-header-tabs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-page-header-tabs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z1E\n''S#', '\\ 6cu=!BG>r]', '', 0, '?'),
('<7dt5:''', 'wp-content/plugins/elementor/includes/widgets/html.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/html.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b?g;ǘsX', 'a5nʒX9@G+', '', 0, '?'),
('բJh=-kkp', 'wp-content/plugins/wp-optimize/js/minify.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/minify.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VJSʟƜ/%', '`Inry~);.Rs\n''', '', 0, '?'),
(' tdrlPj', 'wp-includes/css/dist/widgets/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z)2.Bi', '2țPd+Icom&b*)4', '', 0, '?'),
('"RvN]Б', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E;(X75Uh', '$pYH2r:5zWo:]w', '', 0, '?'),
('(q4P}5Ozk', 'wp-admin/js/inline-edit-tax.js', '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-tax.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_hA?D', 'LZV(j0~\Z3u)ztef\nO', '', 0, '?'),
('5/̔kwʯ', 'wp-includes/interactivity-api/interactivity-api.php', '/home/binawebp/omsrislb.my/wp-includes/interactivity-api/interactivity-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KDpC,P	:', '`ЛKH~BýxBǜK#l%', '', 0, '?'),
('D06mq', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SXOF(ͩ', ')\\ Co<0^R,Lr*k3r', '', 0, '?'),
('Jh#Q:Tnjh', 'wp-content/plugins/elementor-pro/modules/popup/display-settings/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/display-settings/base.php', 0, 'LX	}', 'LX	}', '.ka8\0>''&6hfY[a42\0', '', 0, '?'),
('Ry*e3', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&۰%z', '&Px`A6>چ6F', '', 0, '?'),
('Rш޿0', 'wp-admin/css/themes.css', '/home/binawebp/omsrislb.my/wp-admin/css/themes.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>UYc"Ķ', 'm3@ba7|`>4}ll-', '', 0, '?'),
('W8^WuII', 'wp-content/plugins/elementor-pro/modules/posts/traits/pagination-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/traits/pagination-trait.php', 0, 'հ#_o}+%9>', 'հ#_o}+%9>', '\\tM+$Ĕ\nsN6"/_\r', '', 0, '?'),
('X:j|ަo', 'wp-includes/SimplePie/src/Rating.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Rating.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lIAH\nO', '\nTTx''St@?I	', '', 0, '?'),
('Z*h\\[\Zv', 'wp-includes/blocks/accordion.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ulC:0O', '	cbO_6I\r91(MGBjV', '', 0, '?'),
('bîσϮ>2|}', 'wp-content/plugins/elementor/core/utils/collection.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/collection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RYC=\r', '9DKQEfo\\@:Pnm', '', 0, '?'),
('hFM<@`%q-', 'wp-admin/includes/class-wp-filesystem-direct.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-direct.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WĦ5iLb', 'Czɔ] +I7&4MhF7mN9[', '', 0, '?'),
('r{\Zk"k', 'wp-admin/css/site-health-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-health-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vqT5W', '^҅_#ƫCauF)d3ᝈUV', '', 0, '?'),
('t*\0؆x\\,%h', 'wp-content/plugins/elementor-pro/modules/notes/notifications/user-mentioned-notification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/user-mentioned-notification.php', 0, 'BdK[6qHL	', 'BdK[6qHL	', 'e|ۅq(u$r\r9', '', 0, '?'),
('x^d&aΉK', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v0H=԰Ć9ҬTP', 'V!g$XMӈṇQђ!UO', '', 0, '?'),
('xjP!cx', 'wp-admin/plugin-install.php', '/home/binawebp/omsrislb.my/wp-admin/plugin-install.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^vP}s5Kk', 'J\rˊUP|_=-6k5', '', 0, '?'),
('ʁ	i:gy', 'wp-includes/blocks/search/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z嘻S', '-Nk",[[j_t -XO', '', 0, '?'),
('ʊ2%+a_LF', 'wp-includes/blocks/columns/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kGm#e\\', 'GRP9&4hNrNLW@\\nϮ', '', 0, '?'),
('ʜ;2-QST+', 'wp-content/plugins/elementor/core/utils/exceptions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/exceptions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'օ\Z潇H1J', 'nRg([J`4_@/md65', '', 0, '?'),
('ʠck//FSI', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EqualBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EqualBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yVM,}Y〱u\r|2', 'hHXt7ipvBL', '', 0, '?'),
('ʭU\0D!?8', 'wp-content/plugins/code-snippets/dist/editor-themes/elegant.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/elegant.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mOClضc٣', '~ǺGuc׍;~]I*', '', 0, '?'),
('ʵܬ;!R_5', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4d%\Z&e', '\\I4Va%v?9e,Ms:', '', 0, '?'),
('`U', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-bullet.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-bullet.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*ʬTdV;{', 'wK4,꽾#w*qcDJi', '', 0, '?'),
('3(92', 'wp-content/plugins/elementor/includes/rollback.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/rollback.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Z}X\\l', '\Zuu,&~h\ZˇuR', '', 0, '?'),
('o<HZQ~ن', 'wp-includes/script-modules.php', '/home/binawebp/omsrislb.my/wp-includes/script-modules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x9\n{8LMW', 'aL&T5K7.;%qQLքbj;<', '', 0, '?'),
('3B\r3~', 'wp-content/plugins/elementor/assets/js/packages/store/store.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9b_5dwy', 'F}u^>fɝj''k37', '', 0, '?'),
('ܱ\ZZ1u\r:j', 'wp-content/plugins/elementor/assets/js/packages/store/store.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('	b8[y', 'wp-includes/js/wp-emoji-release.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji-release.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̛F=R~', 'U~Wnqpw\nD62X', '', 0, '?'),
('㱛 V9{b', 'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~Jnw8z2swa', 'u<O8Be''Ob\0yPJx7I', '', 0, '?'),
('׵ld', 'wp-content/plugins/elementor-pro/license/api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/api.php', 0, ';S!6MO%T', ';S!6MO%T', '^RU5ŜI)昫u6rr˒r', '', 0, '?'),
('Toa/ x1', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ValueDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ValueDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r݇գJ', ']w d~ɝ֑6rof', '', 0, '?'),
('O忯uRc[j', 'wp-includes/sodium_compat/namespaced/Core/HSalsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[clru	Сu^', '6p''`+*[AG4^6Ŋ%C', '', 0, '?'),
('/IYE', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EDЖ', 'LvuV3oRBm}B\\"s', '', 0, '?'),
('\ZŖT.	.3', 'wp-content/plugins/elementor-pro/core/database/base-database-updater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/base-database-updater.php', 0, '''''4#\\p', '''''4#\\p', '{lǶc`\\t\ZF|', '', 0, '?'),
('%/ߌx"', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/BasicException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/BasicException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wejj/ːv', '=5,2Y>댭V [9NYA', '', 0, '?'),
('+\Z"j''l隰', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('n7J\Zq11', 'wp-includes/fonts/class-wp-font-collection.php', '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-collection.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%iqD\\uF %', 'yU̮v灛 \rQ\0]\\\\/', '', 0, '?'),
('!#I|F', 'wp-includes/js/tinymce/plugins/directionality/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/directionality/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&"X	& )=ʀ$', '&[@5(cvLYI6B;)-', '', 0, '?'),
('''I?1~4M', 'wp-content/plugins/all-in-one-wp-migration/constants.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/constants.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N>2@n}x\r', 'y);.?,!,̆lV,', '', 0, '?'),
('''sV̻W	g', 'wp-content/plugins/elementor/includes/controls/icons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/icons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xppH":S', 'US7H*(\0B~F:', '', 0, '?'),
(')\Z̦I', 'wp-content/plugins/elementskit-lite/modules/header-footer/activator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/activator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yIM׉2K', 'VhoHs&ЕA', '', 0, '?'),
('*(]>&ZDd''', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/taxonomies.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/taxonomies.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ekD:', 'y^|x*PY<FM*', '', 0, '?'),
('.ױ\0$?߻kd', 'wp-content/plugins/wordfence/css/wf-roboto-font.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-roboto-font.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']Ouݵ', '+hJ~ʆ*a*Gb67\r:', '', 0, '?'),
('5Vx,$>7dk', 'wp-includes/sodium_compat/namespaced/Core/X25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/X25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ڸb9M', 'F/''M%9}@fW>S*m', '', 0, '?'),
('6<C﮿V:(r', 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{CNAŜ,J', '.ޏ^dl`OR>K0)>O=Bb0d', '', 0, '?'),
('FKKMt$', 'wp-content/plugins/elementor/app/view.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/view.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F%?`ɨ', 'WV@*f4/6,WCvv4 !', '', 0, '?'),
('U<?Y,ػ(', 'wp-admin/js/svg-painter.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/svg-painter.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '÷#9', '~HeLi|075j	w', '', 0, '?'),
('U}B	Js', 'wp-includes/class-wp-object-cache.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-object-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>ꖸ', '_FlT(eU$35	;ދ\0''', '', 0, '?'),
('Zsʜ7', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/SystemRequirementsNotMetException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/SystemRequirementsNotMetException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ҽF+ED*^', 'c\0\\x%v\0=(\n\nisY', '', 0, '?'),
('`A1mv`', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@k~YV3U', '@\r)wR W\rJf"SDkۈ0', '', 0, '?'),
('cڮq".|0>', 'wp-content/plugins/wordfence/images/icons/check-response.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check-response.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NF', '82f)o>5iq)e=G}', '', 0, '?'),
('dGWj<,-Ά', 'wp-content/plugins/elementor/assets/css/modules/apps/admin.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/apps/admin.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hr#r5''', 'Z\nwJG0'']\n\06.%j', '', 0, '?'),
('q8]C֔', 'wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y-ȮqQx', '˯I@~£0s;\\*vwG', '', 0, '?'),
('s񿉧}riS', 'wp-includes/block-supports/shadow.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/shadow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OZqvB<V*', 'zߝ\Zz3[b\Z\\&XPO?GS', '', 0, '?'),
('y66lMC', 'wp-content/plugins/wordfence/views/waf/firewall-status.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/firewall-status.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S4,=tP', '-.\\zo֑ʈgmPPR.$', '', 0, '?'),
('|G$k', 'wp-includes/js/dist/vendor/wp-polyfill-url.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-url.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>dKP''IC38', 'kz:_sDpxe%J	ST_', '', 0, '?'),
('}Ua&gli)!', 'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N-o', 'Dj!.[z(T1AcxpqUxX', '', 0, '?'),
('ˆ]g1{[	pe', 'wp-includes/blocks/video/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rPi CIя', '_NBԭEmX=zCr', '', 0, '?'),
('ˍG䯀oeo', 'wp-includes/js/shortcode.js', '/home/binawebp/omsrislb.my/wp-includes/js/shortcode.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@P}SΊ', 'yaeaKR\0%xyuy↢', '', 0, '?'),
('˜AtA\0ÑeZb', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-tagline.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-tagline.php', 0, 'a7ډ0_0b', 'a7ډ0_0b', '_p[q\ru4!@݃Juc\r', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('ˤԐ{%k#f', 'wp-includes/js/mediaelement/wp-playlist.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-playlist.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nWizT֯', '۔<Qy\\Bu|͏fC|d', '', 0, '?'),
('˨?x=\nd#', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/cart.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/cart.php', 0, '빑"fZ,ɯ', '빑"fZ,ɯ', 'mF>^͢)*(PimƄ=', '', 0, '?'),
('˴\rpLNG·', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-footer.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-footer.js', 0, '\Zt)9{ce	w', '\Zt)9{ce	w', 'yH;''x\rÔ0qDř<Z42p', '', 0, '?'),
('˸>f>cʪ@{', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TSVuwFn۽=o', 'B((Iw,\\3#Pm', '', 0, '?'),
('ǝQ_yd+', 'wp-includes/sodium_compat/src/Core/XChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/XChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wbY- '']L', 'ehG	S=RG]"', '', 0, '?'),
('b\\bRsA&', 'wp-includes/PHPMailer/OAuth.php', '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/OAuth.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '틸ɢ찹''', '-Rq@~''.?=0e', '', 0, '?'),
('N\0ܹt', 'wp-includes/js/jquery/ui/spinner.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/spinner.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.$9ͼ[zo', '@e8XejTw[¯E=K!\\P5D', '', 0, '?'),
(' Dm%', 'wp-content/plugins/elementor/core/common/modules/event-tracker/personal-data.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/personal-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';Y~ϣ', ';Wɞ㣌S\nNUPiI0Sv\n', '', 0, '?'),
('攁4)', 'wp-content/plugins/wp-optimize/includes/tables/interface-wp-optimize-table-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/tables/interface-wp-optimize-table-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'umEͫcta', '|f۲w0Tߟ@2GT܏*', '', 0, '?'),
('y҆RD_', 'wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ژdRt', '\\\nn&].1dgpylJ', '', 0, '?'),
('5Y.i''', 'wp-includes/Requests/src/Hooks.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Hooks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|"e|j', ';g}hfט>SC8\Z1', '', 0, '?'),
('vE,-O{', 'wp-includes/link-template.php', '/home/binawebp/omsrislb.my/wp-includes/link-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c и@p_1', '(!}R2xF;"G8YF\Z', '', 0, '?'),
('<ĆKrI', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Environment.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Environment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '28k?֤%', 'gs	J\r80S>5u_%', '', 0, '?'),
('!LT3ix', 'wp-admin/update-core.php', '/home/binawebp/omsrislb.my/wp-admin/update-core.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w6pK\r', '+.dF;ͲD{PU;."BCkZb', '', 0, '?'),
('/}¦kAZj', 'wp-includes/blocks/query-pagination/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R8Hɢ^M{', '#s(ȲWm"\ZZO˛Puk\\p', '', 0, '?'),
('4>{nu^-', 'wp-includes/Requests/src/Exception/Http/Status404.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status404.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I!ĂfZpL.re', 'rcc5\Z:^KYR|', '', 0, '?'),
('=`:x~', 'wp-includes/blocks/site-logo/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AN)X8', ']R<NR9b76j+tBt', '', 0, '?'),
('@>"cDæIriw', 'wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-menu-item.php', 0, 'e_=Xh', 'e_=Xh', '3QhX2reߖ͠L_E\Z', '', 0, '?'),
('MTq&[?>칊\n', 'wp-admin/css/colors/ectoplasm/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1¢=~U}Z$', '~ѣV0"g:KZi³\nC2]ѝ', '', 0, '?'),
('MzŭY', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GJu;QZ6', '\\MUKhQwCiVJ''', '', 0, '?'),
('VڮMjӁ', 'wp-includes/js/plupload/license.txt', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u&\nTIz+', '\0v1sN>cID٦I0-', '', 0, '?'),
('a$:4j\0\ZX', 'wp-includes/blocks/comment-template.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']	2a4څ=', '<SA0:Zηv-ZE', '', 0, '?'),
('inj/r', 'wp-includes/js/dist/i18n.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/i18n.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':X8.ZXn%)', 'k_h''2"y0i^)2', '', 0, '?'),
('́ԑAHa]'':', 'wp-includes/blocks/index.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˝Q"_U(#4b', 'n!)z(+NEF296O`', '', 0, '?'),
('̆_iyH', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/jquery.fonticonpicker.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/jquery.fonticonpicker.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f~\nO~ٔ>', 'q 	riðdUd\ZD{]i', '', 0, '?'),
('̆cj<<{$', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x<S"/ikR', '"F6ܢ`P2:ʍؼo*[NYf', '', 0, '?'),
('̋qB3aY-', 'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0`''}(bA#', 'c,Bp280j7}hp-宆', '', 0, '?'),
('̙~Ȍî+byȁ', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ǆ簕۹3w', 'ʣ>yqөf_#QuW"^?', '', 0, '?'),
('̚4䖤a[x', 'wp-content/plugins/wordfence/css/license/response-global.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/response-global.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z@-]>p\0T', '\0$ۈfvvܕf`AQ|V', '', 0, '?'),
('̝Vs836ԋ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/set_callback.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/set_callback.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',[Zg~R^', 'Cny̖Sy4]\0Erftp', '', 0, '?'),
('̤4G.:e0[', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DefinitionResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DefinitionResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9-UqL^i H', ':Lr_\r88RTB܀"R', '', 0, '?'),
('̫j9Q', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/add-to-cart.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/add-to-cart.php', 0, 'dys2^p*', 'dys2^p*', 'eέ5w4KYɩH!|jZ.e{', '', 0, '?'),
('̸-]\Zn', 'wp-includes/sodium_compat/src/Core/Ristretto255.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Ristretto255.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k9wZ~ ''', ' z`WN?]ӟB,KJlW>k', '', 0, '?'),
('̸9ż9', 'wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fM6<ȼ9,ł', '{-odE)̷;q\n`(kw$', '', 0, '?'),
('Ê5ff;,G!''''-', 'wp-admin/css/colors/ocean/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ot`[', ' D~))RY|=`Elmd>', '', 0, '?'),
('";+\rxuw', 'wp-includes/js/mediaelement/renderers/vimeo.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/renderers/vimeo.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?~si6G/', '{w-\rzFv_\\wf', '', 0, '?'),
('ǊEvc,صyS^', 'wp-includes/images/crystal/license.txt', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/license.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']LciGfQ\r', 'vpmc6Y~",!VEXll"z', '', 0, '?'),
('\nAn`3O', 'wp-content/plugins/elementor/assets/js/cf70912a0f34653ad242.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/cf70912a0f34653ad242.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1,rƷ', 'dD^}(㨲^8٭', '', 0, '?'),
('͂h7j\nuz', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-overlay-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-overlay-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2m{+ob', 'm4%>$Mp;A9(', '', 0, '?'),
('o\0\rcVHn', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/julia.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/julia.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':qC,ig<', '\Z;;VRAyK2$', '', 0, '?'),
('ߥrW?]', 'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mbnS;W-ݝ', 'sDB!:\0!3lU', '', 0, '?'),
('2>:mz=	6٣;', 'wp-includes/blocks/comment-edit-link.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\F¯^', '(uMvsFR''VGDPDn6', '', 0, '?'),
('\n""dRYfs', 'wp-content/plugins/elementor-pro/assets/js/portfolio.042905bde20a1afccada.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/portfolio.042905bde20a1afccada.bundle.min.js', 0, 'e]9.YWi0', 'e]9.YWi0', 'D	$dk_[+N', '', 0, '?'),
('pj֛`w', 'wp-admin/css/customize-controls-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`iex_)om', '.wE/)3|v\0	~0', '', 0, '?'),
('dlPOI', 'wp-admin/network.php', '/home/binawebp/omsrislb.my/wp-admin/network.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*J;uc^0R', 'T`h[rTUg+4', '', 0, '?'),
(')\0e_5=', 'wp-content/plugins/wordfence/lib/diffResult.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/diffResult.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hrSt5''', 'wa\rVULY˴p8ӆjE', '', 0, '?'),
('0:Ө Y~#', 'wp-content/plugins/wordfence/css/wf-adminbar.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-adminbar.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԧ_SZډ˴&nQW', 'ܭ3[=[]|Djga,X	n-H{o', '', 0, '?'),
('3зٴgW', 'wp-content/plugins/elementor/assets/js/responsive-bar.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/responsive-bar.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0!I/z|', 'ڄiD8P^\0Is}?FsmWw', '', 0, '?'),
('B+݈6g9', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pascal.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pascal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˫v:V6nW', '$56)Qfw\nB6\Zo0%', '', 0, '?'),
('C|CB\0', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!K\ZӡC?', 'g[P"yڹZ~a3''', '', 0, '?'),
('EgZvY', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qis]C6L0', '\\B)cXŻڂgn', '', 0, '?'),
('K=Xa:''5', 'wp-includes/sodium_compat/src/Crypto.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Crypto.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F2	8\0~;!p-G', 'к\\#xnLIʈMRi8', '', 0, '?'),
('Vo2)_m', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__debugInfo.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__debugInfo.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VN{nd(c', 'KuSo\Z ~\nd)nQ', '', 0, '?'),
('Z#,PX s', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-emmet.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-emmet.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ɲ/;YCo', 'Iyq7''H$Bm;,z{q', '', 0, '?'),
('^&`RyJ', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aj@DTت+9w', 'q4q+@gsvz,~F麦\r$a', '', 0, '?'),
('iFGq9*\n', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-07.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-07.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-XCx8\0H', 'n/gcBIz\ZtTcFe', '', 0, '?'),
('k	U:9\Z', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/FactoryUncallableException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/FactoryUncallableException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4k\\.JA', 'p(J~ߨ GOXr', '', 0, '?'),
('mL0N"T~b', 'wp-includes/theme-compat/footer-embed.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/footer-embed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z.+j', 'iDAJψ;v,gc%	^#', '', 0, '?'),
('q§%$$Z=0f', 'wp-content/plugins/elementor/app/modules/import-export/usage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/usage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E-wjL2u', 'UO#mE#ܸ0H\0 BC', '', 0, '?'),
('w9=_"h%v', 'wp-admin/css/install-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/install-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.J	 ˶v', '7лKԑy3+3$)GI#', '', 0, '?'),
('͂VIYJ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Taz_3/%', '0-*\n|6|,З@7Nd`z<?', '', 0, '?'),
('͎3עJynĀM', 'wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nq*ZF)2', '&4"\rQjXmN"?Po\\?', '', 0, '?'),
('͓Y36lY', 'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v<hp', '!/[I+\rG Dխ7=''', '', 0, '?'),
('͗ճf:o)', 'wp-content/plugins/elementor/core/common/modules/finder/categories/edit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n\ZZ}nwi縅', ',a.3''51sয;ljK+Byfвd 	', '', 0, '?'),
('͘{YE^d2', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/controller.php', 0, '/	awpN5', '/	awpN5', '1*부~1tT{٢T', '', 0, '?'),
('͙.I*E$eG', 'wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js', 0, 'dW6''I\Z', 'dW6''I\Z', 'kZ\ZvnHG93ؼ\\ޝ', '', 0, '?'),
('ͪuowsFCG[c', 'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K[2C', 'bb1<B>`]*H{\0vN', '', 0, '?'),
('ͱNj\rYgw', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/community.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/community.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r]UL98', '5\Z$ިwvq''GE,EKT', '', 0, '?'),
('Ͷjʃఱ-', 'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd(ɪ''G^e[1', 'sXrə{r.RX\0qΙ@', '', 0, '?'),
('1xf*=', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-twig.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-twig.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wzbn`w⺜', 'inTRj\nLC3q5n|B', '', 0, '?'),
('_P=O)', 'wp-includes/Requests/src/Exception/Http/Status402.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status402.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y 3NJC@wC', 'R.-	hkVHP''jx`*', '', 0, '?'),
(',\\i@''!', 'wp-content/plugins/elementor-pro/assets/js/media-carousel.a98799d9f5a454b751e1.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/media-carousel.a98799d9f5a454b751e1.bundle.js', 0, '''@$-fA', '''@$-fA', 'g;mAl:g}pHI[WVsĲ', '', 0, '?'),
(';~$Ϻ*F\r ', 'wp-content/plugins/elementor/includes/controls/visual-choice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/visual-choice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W>\0X꽹կ]', 'fpuMzB~vyN1e', '', 0, '?'),
('ϨAQ\\4\nv', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EWoP<<', 'pI܋Mce1Av9?''\Z`Yr', '', 0, '?'),
('d斸+渔', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oc5q?c~#!}', 'ZS`S1&KiRҠO낤S$', '', 0, '?'),
('8@ѣdл', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/style-definition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-definition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')cƭ"', ']V|.MHШY%', '', 0, '?'),
('3F<8', 'wp-includes/js/underscore.js', '/home/binawebp/omsrislb.my/wp-includes/js/underscore.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0S>\ZS', '8ZC\nMIdy\n''p,aJGd', '', 0, '?'),
('S>sU)H', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y$NXll', '[-v5<M\n+Bu.,5g', '', 0, '?'),
('E\rvϭЅ+1', 'wp-includes/l10n/class-wp-translation-controller.php', '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm\n\0,SxaZLW', 'tԋ!K}/Sa)-ڵVAy]', '', 0, '?'),
('j(g~jU#', 'wp-admin/includes/class-wp-filesystem-ssh2.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-ssh2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o\ZL2}9', 'ܟp\0$t%Օ䭥%cPǵ̝', '', 0, '?'),
('Bt', 'wp-content/plugins/elementor/includes/widgets/divider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/divider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܪī} Z[\Z^', ']1y"bKvV΋D', '', 0, '?'),
(',&x	Z=', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/swiper.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/swiper.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C40G', 'x6ybJmY&zF', '', 0, '?'),
('"[Lc', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveArrayOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveArrayOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0i^Dq75', '/o"x\n	#ICNŲVHDq', '', 0, '?'),
('(*fj?1C	', 'wp-content/plugins/elementor/modules/kit-elements-defaults/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/data/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[o1QZuP', 'ǡNѩxLuZIZ7bA=', '', 0, '?'),
('(*ľ&Sp', 'wp-content/plugins/all-in-one-wp-migration/deprecated.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/deprecated.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ق.-%x8', '\0ܦfj? (g7ݸUաFh,r', '', 0, '?'),
('\\063cOԑ-P', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Files.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Files.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}QAN	\nhD/', 't:(iQF-N8o\ZohF', '', 0, '?'),
('_)-]ˌkO	', 'wp-includes/ID3/module.tag.apetag.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.apetag.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Op0dJd', '_%	;Pֳdt-dx', '', 0, '?'),
('brI`f[dW', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b׈6Í*}', 'k8}	XM`0qa+>I3''҇8', '', 0, '?'),
('e%6mI8?,', 'wp-content/plugins/elementskit-lite/compatibility/backward/utils-backward-compablity.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/utils-backward-compablity.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '84.!k$', '%M+^#7Ni2	', '', 0, '?'),
('esꀇ4UI.D^g', 'wp-includes/css/dist/admin-ui/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?{\Z)[9?B', ' .\0VT_ \\`\0%te', '', 0, '?'),
('l/<UZA', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''ЈHn0\rv', '<iqótIx8+IٍW;''', '', 0, '?'),
('|f,2T	', 'wp-admin/term.php', '/home/binawebp/omsrislb.my/wp-admin/term.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a2ױwSF.', ')iCH358lB{Bfg', '', 0, '?'),
('~^/sũ1', 'wp-includes/SimplePie/src/Cache/MySQL.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/MySQL.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xv%>X&l', 'T5Z[Q] ]g,AN+G', '', 0, '?'),
('΂ ֗s^nt', 'wp-content/plugins/wp-optimize/cache/class-wp-optimize-detect-cache-plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wp-optimize-detect-cache-plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6]^C(WP[', '6O|=	ABypث', '', 0, '?'),
('Β_hl5lq', 'wp-includes/blocks/term-name/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g&\njVSbf\\[', '*v''o4P{+`4BLUӻ;[S', '', 0, '?'),
('ΝP|ڒ\\o', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' w^]緣M', 'ZEO7(nYh˨', '', 0, '?'),
('Ωj%Yg8', 'wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@@¤0ZB', 'Hxk">DiyHrկz}!Z+,Edqϥ', '', 0, '?'),
('αZ	iIȏ', 'wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G"7d֑k', '16 yȜх\\ީĸU D', '', 0, '?'),
('γy\06ϛ\0^	=@', 'wp-includes/blocks/post-navigation-link/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cbr:', 'A!Dg$;~ِoP;{', '', 0, '?'),
('κC5H\Zκ~\Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/wollok.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/wollok.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[ݹ*zܵ@.r', 'X־5F[s*H~ߤʱ', '', 0, '?'),
('œϔ=#6', 'wp-admin/images/post-formats32.png', '/home/binawebp/omsrislb.my/wp-admin/images/post-formats32.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WY~O{+_LkE;', 'k<8._DKG[5e-I(0wh', '', 0, '?'),
('Me$SoTi', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_D,)9&-', 'I@cȽt\rqpi%IXRV=', '', 0, '?'),
('Ό4{B.\r&0-', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/has-atomic-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/has-atomic-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a)&QU[', 'y^+LLB)6n\ntİmO', '', 0, '?'),
('Ӵ:DkZx', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/error-404.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/error-404.php', 0, '/J9', '/J9', '.xu|h[MQ+ZG/}', '', 0, '?'),
('\nP', 'wp-includes/blocks/quote/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')A̿<:>N', 'O/\n/G"s΁RȌwe', '', 0, '?'),
(':''P', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/date.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/date.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hty9l>7C', ':}g\Z0ie+oAR\\', '', 0, '?'),
('B0i`zz', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']oR,Kh`', ' P^b>\0WCx2{F"', '', 0, '?'),
('JǱ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-sqlserver.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-sqlserver.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0UnxLR.b', '?G#l*G*X\Z0d', '', 0, '?'),
(',@Q', 'wp-content/plugins/wordfence/views/common/indeterminate-progress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/indeterminate-progress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I"sg4\\(8', '@Zn"ξ~QՔ8sP\073', '', 0, '?'),
('M(xiJR', 'wp-content/plugins/elementor-pro/modules/forms/controls/fields-map.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/controls/fields-map.php', 0, '!zg_>>', '!zg_>>', 'kHQndcǖ*~ҧI,', '', 0, '?'),
('''p鱇yw', 'wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'De,m', '%bR447TWz?X6&.', '', 0, '?'),
('-+emu"x', 'wp-admin/css/colors/sunrise/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*Kh_;{', ':mJ,\\[|lߣ,r5\0:', '', 0, '?'),
('.Tq6,', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=juͶLK', 'S6۠鱂VitA*7WVb', '', 0, '?'),
('266#	S[h(\\', 'wp-includes/css/dist/block-library/common.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i0_3yGf5G', 'mhA%^8> UH\\{;\\8~', '', 0, '?'),
('5d>"hQ', 'wp-content/plugins/elementor/includes/controls/groups/typography.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/typography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$r&bij?', '/uݩ)@_GaIHi', '', 0, '?'),
('K386!˹lm0', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Jj|o>\na', 'רD+~[|2\n>$o,R', '', 0, '?'),
('MVt\0ދ%k', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b`,|=U', 'LW/EL`U;*''(5-kޡ''', '', 0, '?'),
('XZn8׮*7', 'wp-includes/SimplePie/src/HTTP/ClientException.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/ClientException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_\n#19\01"', '6ZA_]ڽ.r@i#85,Y', '', 0, '?'),
('XNȻw|#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/less.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/less.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w7\ZϲJ\ZR_', 'Vp" qH޴X(m\\D2', '', 0, '?'),
('_q ^<8:	', 'wp-admin/css/colors/modern/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0V+@j)ha:', '\Z+gBsۓYfDcQbH{', '', 0, '?'),
('ig`~2', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nodeName.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nodeName.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~mF	WC<OR', 'h	,~+&:EV	&m]\nK"p', '', 0, '?'),
('uF^GE+c', 'wp-admin/network/freedoms.php', '/home/binawebp/omsrislb.my/wp-admin/network/freedoms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u6|tJ41', 'B;M7߃[9</', '', 0, '?'),
('}ZFe%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_309bbf_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_309bbf_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8igk 44', '!_Mb\nxY&\0', '', 0, '?'),
('πtGȩD', 'wp-includes/js/tinymce/plugins/image/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/image/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B\n4\\0=', 'QvSI>;41%rf$@p\\j', '', 0, '?'),
('ϊ=XbBz'' ', 'wp-includes/js/jquery/ui/effect-explode.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-explode.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}3ԭ4^sƛ/', '!!EylnʳV`˸1w9=T器', '', 0, '?'),
('ϊ0L\n_6#q', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-edifact.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-edifact.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6L,\\ɗ9vR$', 'S4䗑~ucmo\Zf?	(', '', 0, '?'),
('ϊYw׹EG', 'wp-includes/blocks/group/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3jCOѺ}`xݰ', 'GCf0S"hsp4YuR\Z$xqO', '', 0, '?'),
('ϔ6Lqf', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/classes/mail-chimp-rest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/classes/mail-chimp-rest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yO2-', '{5ƼĻfuoݝȓ=3/\n', '', 0, '?'),
('ϗZF	R', 'wp-content/plugins/elementor-pro/modules/usage/features-reporter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/usage/features-reporter.php', 0, 'pѼ)Z', 'pѼ)Z', '|DǼ\rzWy\ZZY', '', 0, '?'),
('Ϛ"jy^', 'wp-includes/js/dist/blob.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/blob.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@)\Z?+z\\A', '	L|ǐ>#;_W', '', 0, '?'),
('ϯ	?\r#Ǥ]t', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mvzxp0{', 'EiepsA''3xҌ[?', '', 0, '?'),
('ϴɅ_]', 'wp-content/plugins/elementor-pro/assets/js/stripe-button.0b77acd00b7163edd0ec.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/stripe-button.0b77acd00b7163edd0ec.bundle.js', 0, 'dEoߤ{%', 'dEoߤ{%', '~{mx9R+ɜ', '', 0, '?'),
('ϼ\nxԡ%eB', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S~ٽCD', '"\Zۻb[$Md/퍤.z', '', 0, '?'),
('HԹfk', 'wp-includes/js/tinymce/wp-tinymce.php', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/wp-tinymce.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1_H0US@h', '_ؕN͞1*ǜ', '', 0, '?'),
('yKv.\Z', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>_3Nw#', 'ǥmZz*,=:\n-3|!', '', 0, '?'),
('ݙP(O''Ee', 'wp-includes/js/jquery/ui/effect.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kM|n#', 't]\\80=\0)4Z8x0췋 1', '', 0, '?'),
('Ql!!\ni-', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/ConstantTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/ConstantTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i1F"q6*', 'F6=61%Wd^jIy3~<', '', 0, '?'),
('ߎ\r.g&', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!&#wJ\ZdF', 'G}NAY򝷚 M-b7', '', 0, '?'),
('S<Cէ6g)', 'wp-includes/Requests/src/Exception/Http/Status408.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status408.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L]pæ֊K', '|g+}պIwyTlfO\rOd', '', 0, '?'),
('S"oEM', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w_x\n9', 'h;$lw<@T3y]b(1|', '', 0, '?'),
('鋭{^MU*_', 'wp-includes/js/twemoji.js', '/home/binawebp/omsrislb.my/wp-includes/js/twemoji.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C&xoQB~L', 'Uِ`9Fuh͓H3', '', 0, '?'),
('\\T@SO|m', 'wp-includes/blocks/audio/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';4L%^is1A', '+㦍&+.VOڏVQ#\ZiQ²', '', 0, '?'),
(')@`U', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\/}{/l$˗{q', 'mJ@\0]8$VUoS', '', 0, '?'),
('@AO=	yA', 'wp-includes/class-wp-paused-extensions-storage.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-paused-extensions-storage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/otUbi', '.ԲJ_P,H4AlY', '', 0, '?'),
(']mٲ	▭', 'wp-content/plugins/wordfence/vendor/composer/installed.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/installed.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MX"ƷU]\\', '*5œ,VuC*_o1\nPC\rF', '', 0, '?'),
('J`P&+ȳ^,', 'wp-content/plugins/wp-optimize/images/logo/udp_logo_small.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/logo/udp_logo_small.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n3H&{ٍ@', 'mкkak(:/ z&<Un *f~\0S', '', 0, '?'),
('gs)݅', 'wp-includes/blocks/latest-posts/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I7C^;"', 'I,S%_#Ra:ik\Z> P<', '', 0, '?'),
('\r$R,/j_^:', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coffee.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coffee.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=z7sR_Q', 'ý7>2KU\nóciru', '', 0, '?'),
('(c`,m', 'wp-content/plugins/elementor/includes/controls/tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Btܜ~HYo', '\0q`%r(ǙK9.|6 Y9Ԫ', '', 0, '?'),
('֜TF50', 'wp-includes/css/dist/base-styles/admin-schemes-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '><;-\Z7[;@i', '0U~b\n):cjqX^^ePN', '', 0, '?'),
('%#t4x', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yW0{XnZ0', '\0AVRXȕ~d^/)@R', '', 0, '?'),
('1y}e\0', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon_backup.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon_backup.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bt	rw5I', '#L\r+I:	+{SfsMJwp7i?j]', '', 0, '?'),
('8tW''\\Q_˰|', 'wp-content/plugins/elementor-pro/core/integrations/actions/email/email-address.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/email/email-address.php', 0, 'hI\rD1l	', 'hI\rD1l	', '7rJ!II{FcU+g]F', '', 0, '?'),
('>6bYAUF.', 'wp-includes/blocks/archives.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/archives.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TKe;DeL)A', 'ՀVf''kwqyb^ς7ƨ+', '', 0, '?'),
('>slWD7M', 'wp-includes/bookmark-template.php', '/home/binawebp/omsrislb.my/wp-includes/bookmark-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Žgy<ozC4', 'jL.ǖil=&E	`R', '', 0, '?'),
('Q;A\Z]̣1i:', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/constants.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/constants.php', 0, 'e$MV', 'e$MV', '%^`hss_d`bHQysψ\0', '', 0, '?'),
('RcG'' =\0ލ', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rV''X^A', 'J''@Ϥǟ,146	4#$V_', '', 0, '?'),
('gz_Mvf~', 'wp-includes/css/dist/block-library/classic-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݮux2V8C', '69S$B#n.0%8lF*$"', '', 0, '?'),
('Т펹|@', 'wp-includes/images/smilies/icon_arrow.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_arrow.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 	J<go9:x', 'ncx0ĥtN޾Y2X\0!', '', 0, '?'),
('ЩD=)@?', 'wp-content/plugins/elementor/assets/js/frontend.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i3dsR(P', '7or3|uqX3݅A}$<', '', 0, '?'),
('ЭQKr}', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/6.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/6.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f=nYQ6ju', '窤؇?"z(ߗ*	\\b~n5', '', 0, '?'),
('зxgA+dNy', 'wp-content/plugins/elementor/assets/images/app/site-editor/product.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/product.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݦ	ҮTǁ@ق', 'J0NWעzȍp5N_+EXE', '', 0, '?'),
('йB0Ч3p@R܍', 'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-background-process.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-background-process.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T;๫zG', '84C5-.I@.2\r$`0̌', '', 0, '?'),
('aO]C$', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c{<G', '(	QLWqL;KbUCɎ56;', '', 0, '?'),
('u|=:1v', 'wp-includes/blocks/post-excerpt/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	<\r''w9zR', 'OFsoKL*(\nb`fNXsSԚ\\S]', '', 0, '?'),
('҉d5l', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinitionExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinitionExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rYXUq', '{	q >qCif@H\0)jAq8P', '', 0, '?'),
('2[v\\)IQ', 'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~/\\/0oҹ	ע\\', 'gZxEĴΗM&3rqclTG', '', 0, '?'),
('^\\XPvS\\{', 'wp-admin/js/media-upload.js', '/home/binawebp/omsrislb.my/wp-admin/js/media-upload.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F߻V?an\r', 'Ea,\Z,yM/\\iQӠ"?28', '', 0, '?'),
('a\n!2]EV', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pc.#7;]', '?HO>":mPM''ְ`Pr$N&', '', 0, '?'),
('a&ls{1)0', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php', 0, ' NGVyL', ' NGVyL', '/*T]whmUTb', '', 0, '?'),
('*r1\\g9', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ShellExec.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ShellExec.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sDo`', 'Xٹ\Zi,H5Ȳ6SQ,', '', 0, '?'),
('^G甝%', 'wp-content/plugins/wordfence/lib/wfScanFileLink.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFileLink.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2%Ự嚃g@Ξ', '\ZcBQVYNEgI%3<cvX', '', 0, '?'),
('>O]69MS', 'wp-content/plugins/elementor/core/experiments/exceptions/dependency-exception.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/exceptions/dependency-exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i\Z}a \ZGc', '''a`έف''NI9A@\rs\rĄ', '', 0, '?'),
('OK5D\\\r', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rg5O5>s', '\\:hpAu.kGCsHa', '', 0, '?'),
(',f', 'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y2eRۻI', 'Rws5Ǩ6ТKxi,u|', '', 0, '?'),
('ϙdadz', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/TemplateDirIterator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/TemplateDirIterator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǃՅ1c$<8', '40oH}RP)MCp0Bp||', '', 0, '?'),
('d#u^4', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-gallery.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tbj+*A?_*', 'bKuYБ&^=O]8Gjb', '', 0, '?'),
('!Z&kAyX)', 'wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aOYc*C)%', '~$;V|&8mpțh>', '', 0, '?'),
('x2:\Zyv', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|0ģ,olږ', '+0I559/N7$}܉S-t', '', 0, '?'),
('EU-фM:', 'wp-includes/blocks/more/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tx:,!f`', '!;KQ ʿ''62w_3R.Ը(', '', 0, '?'),
('	B~m9bnbŇ`=', 'wp-includes/blocks/details/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2GaF!P^', '#_*%)&k;]V~zo', '', 0, '?'),
('\ZbmAbG', 'wp-content/plugins/elementor/modules/nested-tabs/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-tabs/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"''1K:7r$t%!', 'D_{̘gߍmeh', '', 0, '?'),
(':KޞCj>', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/matlab.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/matlab.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vi)H[_ ,', 'ɮ%e5MuுBԪ\Z\Z؝K', '', 0, '?'),
(':\nyˌ"4', 'wp-includes/blocks/text-columns/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w`}N\nX', 't!l`|*^0	l$C;', '', 0, '?'),
('EvР\r>@@|[l', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/FFMpeg.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/FFMpeg.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h^SS`5''', 'iVYOVjX%XUca2re$|', '', 0, '?'),
('GC!4|`', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-title.php', 0, '\0ZKdx;r', '\0ZKdx;r', '\Z5sy4&Pdν8ps', '', 0, '?'),
('I92Qw#''', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parse_selector.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parse_selector.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Փ@LЈ', '^>\rf	f2e8b%жn', '', 0, '?'),
('K0''ߵ!%', 'wp-content/plugins/elementskit-lite/compatibility/backward/module-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/module-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N\\kUdYû@', 'sm"\0\n7z^\0Z{bꔰ!', '', 0, '?'),
('_\\c9mLv1', 'wp-includes/compat.php', '/home/binawebp/omsrislb.my/wp-includes/compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ٿM{Gc''', 'Wj''\ZU\\T8kרD', '', 0, '?'),
('mavMvK\Z', 'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 2%\\&"P', '6_]W>VXvBӾuK$ް9|]E\r', '', 0, '?'),
('uRlt"', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ef2OHKn', ':RT3PY"2g2FJReHcҪu#', '', 0, '?'),
('|\Z/K)PF', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedMethodError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedMethodError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')\r]B\n`9', '_G28iV_h:''HCfng7', '', 0, '?'),
('эڬxV&TZxjw', 'wp-includes/blocks/footnotes/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Qfn3', 'li+!)f%%u!Ye4''', '', 0, '?'),
('ю)3CpLٜ0=', 'wp-content/plugins/elementor/core/utils/str.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/str.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^BeI4''n', '0J\n2 j-iI_9!', '', 0, '?'),
('єbl/@N]', 'wp-content/plugins/elementor/includes/controls/base-units.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-units.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-ɃO1W*7H\r', 'a_/5ׂo4L%9[ЯnF`ܮ', '', 0, '?'),
('ћXClBȆ,', 'wp-includes/blocks/query/view.min.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.min.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5UHĠ\n', '˭w\0tzwF7ǢXΞSu#t', '', 0, '?'),
('ѝ`-0TvyQC@', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-list-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-list-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۢ''i+\r<{c', '&(ީֈ,ܿ>Ns[5U', '', 0, '?'),
('Ѣ,(UVi\\"', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DoNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DoNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '˓ՓH/שּȍ]', 'Kq8=OtMƞI', '', 0, '?'),
('ѶɷzHC''00w*', 'wp-content/plugins/elementor/assets/css/widget-google_maps.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-google_maps.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd){~i	,`', 'J 2˜=ˇL,>9|0퀤1F', '', 0, '?'),
('Ѷ"<9޺ZXmǕ', 'wp-includes/class-wp-theme-json-schema.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json-schema.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`yul[)', '<Z5ews[qr_157', '', 0, '?'),
('ġS}@0', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'POٝ3B', 'q,&=ǁZ:''=9~Z~6_MHQ', '', 0, '?'),
('j(P0', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '10"(8Y', 'lV~W3yT=nհϰ', '', 0, '?'),
('άt\\aM', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-types-mapping.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-types-mapping.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';D~w', 'ŸlR+)뷗Ф!fi+(', '', 0, '?'),
('viT(R`{&', 'wp-content/plugins/elementskit-lite/libs/framework/views/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gCS', 'Ws8U)W\nG]', '', 0, '?'),
(')0%a', 'wp-content/plugins/elementor-pro/core/app/modules/kit-library/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/kit-library/module.php', 0, 'IJP߳h=xMc', 'IJP߳h=xMc', '\\iW˘dК*|M_ǎo-T', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('Yf8v?B', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/js/ekit-layout-library.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/js/ekit-layout-library.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@U1QT&', '0{Ki/Mf8	%ӣXjp\0z?8', '', 0, '?'),
('_V#Bt', 'wp-content/wflogs/config-transient.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/config-transient.php', 0, ':50"-p', ':50"-p', '''qN%+8`d''vjF^rw̽', '', 0, '?'),
('m]1', 'wp-content/plugins/elementor/data/base/processor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/processor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4''VC\0', 'BwiY y.N]FT\n0`kwo', '', 0, '?'),
('gEB#(', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EI}8bB', '5\\gH3!ۓ-쾔ۀf~-', '', 0, '?'),
('QH$byD', 'wp-content/plugins/elementskit-lite/libs/xs-migration/migration.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/migration.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&@Z', 'ˬB4IkCJ#0	Hj>', '', 0, '?'),
('n%''o>Tuӝ', 'wp-content/plugins/elementor-pro/base/base-widget.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/base-widget.php', 0, '8gƞ', '8gƞ', 'u,`qGKh_<K?$bt>./t', '', 0, '?'),
('Jh|0`ZpE', 'wp-admin/user-edit.php', '/home/binawebp/omsrislb.my/wp-admin/user-edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MOؙw', 'HXDjE.z5aw!o}^K', '', 0, '?'),
('[X$iˡ', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-code.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-code.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''EaFI', 'ka͖QT`l̂	r)', '', 0, '?'),
('&Xc.', 'wp-content/plugins/wp-optimize/templates/admin-metabox-smush-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-metabox-smush-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I)^iz', '߇CQ\nzlgxd''H', '', 0, '?'),
('7[*wJ\nn>', 'wp-includes/js/dist/redux-routine.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/redux-routine.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',@6M(j', '\rUZţ''Ffj^q', '', 0, '?'),
('7ϣ~Sg\r', 'wp-content/plugins/elementor/assets/js/editor-loader-v1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'akA`<', '|,`W^x擘<x;Du', '', 0, '?'),
('8s鎗߹Oh', 'wp-includes/js/dist/vendor/regenerator-runtime.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/regenerator-runtime.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4("$%~', 'Vс*3)θe@?zBɚ', '', 0, '?'),
('O,ʭ9`?', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_65_ffffff_1x400.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_65_ffffff_1x400.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.(\\''3Ȩ', 'olhi6#K@Jہ)G\0Jϛ7', '', 0, '?'),
('Vq_,', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/roadmaps.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/roadmaps.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9ti;imi''&', 'U΅͔)vWGצJW\r&K', '', 0, '?'),
('Z\n%G H', 'wp-content/plugins/elementor-pro/modules/notes/database/transformers/user-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/transformers/user-transformer.php', 0, 'mZN\re&', 'mZN\re&', 'W;c*{gect	d4c_N', '', 0, '?'),
('ji \nT槿\r', 'wp-includes/blocks/post-featured-image.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0yf}؟Q', 'DU+ӡ_Tn6Zn_;&', '', 0, '?'),
('nש!@', 'wp-content/plugins/elementor/assets/css/templates/widget-tabs-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-tabs-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\/eqɹ$', 'M=@h_}mx׮x8۴	', '', 0, '?'),
('҃̐!?BbMo', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__toString.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__toString.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bT.P1`', '@Ms?"0AX8"]', '', 0, '?'),
('ҒqQhz^pӌ-', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/javascript.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/javascript.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '91_ɻ{n1WR', 'Ea`,tcoK-Oɝ^l', '', 0, '?'),
('ҕ%1MYT@E#~', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/fundengine-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/fundengine-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iމ\r_;', '09hd~&+y!-u<D', '', 0, '?'),
('Җ6M֦5wH', 'wp-content/plugins/wordfence/views/options/option-text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kߟ*׉k+;8', '7M$<rO9GjEyQ*+3', '', 0, '?'),
('Ҟǟ	Ks', 'wp-includes/images/icon-pointer-flag-2x.png', '/home/binawebp/omsrislb.my/wp-includes/images/icon-pointer-flag-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2b&Zr', '4Bȥ''x+chҠVn5I>j', '', 0, '?'),
('ҢFn۹XZ,1', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/EvenTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/EvenTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*c\nIŹ*ӄ', 'R¸ur@DU7t\n<9', '', 0, '?'),
('Ҫ*H\n;t', 'wp-admin/includes/ajax-actions.php', '/home/binawebp/omsrislb.my/wp-admin/includes/ajax-actions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/+!N"n |', '>/7x[Ѯ%/>sߐH', '', 0, '?'),
('ҭ_VlKg!p1', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؼtQ|`ˊuS', 'E{sr	\0w(|4P(SoN', '', 0, '?'),
('ҲE5|ѵCd闼', 'wp-admin/options-reading.php', '/home/binawebp/omsrislb.my/wp-admin/options-reading.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>~?H3WX+', 'w1|َPj*=|^p͞HD', '', 0, '?'),
('Һj5Ž_y', 'wp-content/plugins/elementor-pro/modules/forms/classes/action-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/action-base.php', 0, 'NMlYI\\.A8', 'NMlYI\\.A8', 'C"FaǭZ\Zg^C^BN-', '', 0, '?'),
('YqLH', 'wp-content/plugins/wp-optimize/includes/class-wp-optimization.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimization.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ßs(vd', '#D|6.=j#)[Q''T/', '', 0, '?'),
('Lt593u^)', 'wp-admin/images/comment-grey-bubble-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/comment-grey-bubble-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TYŝ2s,\rm', 'DxT-wN	P{', '', 0, '?'),
('ǣ]\0T', 'wp-content/themes/twentytwentythree/patterns/hidden-heading.php', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-heading.php', 0, 'x&nX^7', 'x&nX^7', '_BE4h~|#E4[V1', '', 0, '?'),
('q~3', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7r/ܫLV\\', '.Iy:P]!~P	׫:p5eP', '', 0, '?'),
('^?	=_Pn', 'wp-content/plugins/code-snippets/dist/editor-themes/midnight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/midnight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\rr\0s`*!', 'o?x~c0Q7Z(W:~', '', 0, '?'),
('r(7[^s%', 'wp-content/plugins/elementor/core/base/providers/social-network-provider.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/providers/social-network-provider.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x+bFKB]', '&k_qgq 1.im&Lje', '', 0, '?'),
('Ί\n@6', 'wp-content/backuply/backups-0uelYu/index.html', '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/index.html', 0, 'f~\n', 'f~\n', '#xx=\r"Y*7', '', 0, '?'),
('\0\n9C', 'wp-includes/class-wp-speculation-rules.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-speculation-rules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':",JK', '_tE_.ѝoLf\\4Fi1jX', '', 0, '?'),
('lI\r,B8', 'wp-includes/blocks/quote/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fm/x%rka', 'YSYOOc1tjxRTB', '', 0, '?'),
('AXZ=', 'wp-includes/Requests/src/Ssl.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Ssl.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tvbuض:|', 'ċ^Ȩ瞅KFc"Wd \0V֜,eb(H3,', '', 0, '?'),
('Pr@4!', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tܖ(=CE', '\r''`^|)P=XNE\rۂ&V', '', 0, '?'),
('w]cIwȰH', 'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''WFRW', '\0^x <KB`SNej6jOW', '', 0, '?'),
('j!''0Ȓ&', 'wp-content/plugins/code-snippets/dist/editor.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2Wk''d;''', 'nAg0#a?ؔ;', '', 0, '?'),
('\rL#U=*N', 'wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SXw\09Ij[u', 't/b8?ͽj\rO	*', '', 0, '?'),
('E|/`_?jM', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h>:$:֣PS', 'd۽(t-[(/4`=̞;Nh0', '', 0, '?'),
('F9\r\Z0DU', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-whitespace.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-whitespace.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|&,e\0̘i', '#=]r\rݛrZq7\Z.Y8M)).', '', 0, '?'),
('1IF', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/create-edit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/create-edit.php', 0, 'c[Ji˨', 'c[Ji˨', '\Z0Z^DZ\nm{/(I߳-83', '', 0, '?'),
(' ٫\ZsYPei', 'wp-content/plugins/elementor-pro/modules/library/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/module.php', 0, '\\}9', '\\}9', 'o	.xF~@1dp I\rտk', '', 0, '?'),
('(EhLf|~', 'wp-includes/blocks/details/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2GaF!P^', '#_*%)&k;]V~zo', '', 0, '?'),
('0Ufdw(y''', 'wp-content/plugins/elementor/includes/controls/text-shadow.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/text-shadow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g.', 'q^ti`.j4ܶ%%<4', '', 0, '?'),
('E#lL_&ܪ', 'wp-admin/images/arrows.png', '/home/binawebp/omsrislb.my/wp-admin/images/arrows.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v$>>Y', 'YW(N32U;<.iDd!', '', 0, '?'),
('H %9lԅE', 'wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z|JS', 'i\\JkFt\\\0xRehe&j', '', 0, '?'),
('Mp\0`knP', 'wp-includes/template-canvas.php', '/home/binawebp/omsrislb.my/wp-includes/template-canvas.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b\\Kg5vmx', '=\0Ć}}8\rq>&', '', 0, '?'),
('QH\\7ǛC9N5', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/lightbox.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/lightbox.php', 0, 'uZs"[D', 'uZs"[D', 'gRg{t})`fGg}^4', '', 0, '?'),
('Un/|r@ڪ', 'wp-content/wflogs/config.php', '/home/binawebp/omsrislb.my/wp-content/wflogs/config.php', 0, '*aDi`~MP', '*aDi`~MP', 'JYm"xXL7$XFEF', '', 0, '?'),
('boaj''w:O', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/upload-class.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/upload-class.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h#LW@\n', 'vSU$NMζ,}U-7CNZ!', '', 0, '?'),
('jsw2pqS', 'wp-content/plugins/wordfence/lib/wfIssues.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIssues.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i!3IPAf', '-5%9rz˒,O=݉[,bR', '', 0, '?'),
('n}@6eh', 'wp-content/plugins/elementor/includes/widgets/traits/button-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/traits/button-trait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7lkpJGK', 'l3$7,C^C B''"	.;', '', 0, '?'),
('s}Ƕ)TV', 'wp-includes/blocks/nextpage/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oXVዏM', '2?#{eOz_Q"z}', '', 0, '?'),
('y4=9{', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('{ڭd3TXy7;', 'wp-includes/css/admin-bar-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''!zT9i', '6LO*^׼ŝ^\r[)pƩ', '', 0, '?'),
('}eC!*', 'wp-includes/js/codemirror/codemirror.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/codemirror.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	fh;fq', 'u*Q6Ƅdvdȇ_\0', '', 0, '?'),
('ӂ|H8-:Fl', 'wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-promotion-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-promotion-menu-item.php', 0, 'Nvtދz_#', 'Nvtދz_#', 'W8-WvVyYcUS', '', 0, '?'),
('ӏ)\ZʰZFm|', 'wp-content/plugins/elementor/core/common/modules/connect/connect-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/connect-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɾ\n̦4>y', 'Q|98lSsQAМ}I)e ', '', 0, '?'),
('ӕ\nt0', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mpGaBNX>(', '%-*Ψ6Fi\rWϹM׽WI:vD', '', 0, '?'),
('ӕB5\np', 'wp-content/plugins/elementor-pro/modules/forms/fields/acceptance.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/acceptance.php', 0, '3<ѪّbeL\r{', '3<ѪّbeL\r{', 'l]EC|rcީ)={\0=', '', 0, '?'),
('ӟmy+\nf:', 'wp-includes/js/wp-api.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-api.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɶ	@\\RT3', '<bЍS8"fU-ЛrM~L', '', 0, '?'),
('ӤǕLFZQ', 'wp-includes/css/dist/block-library/common-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wX -hP', 'j\Z^	ƓYo;aeEn"', '', 0, '?'),
('Ӫ!Ft	%?l@]', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wM;_mȁ', 'NSa4\\Mؘ$ΓH\0x', '', 0, '?'),
('ӪG=OLwP', 'wp-includes/blocks/comment-author-name/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3\\IFfyLZ', '=NI9\0:#$ynq', '', 0, '?'),
('ӷO#rãCZJW', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"VsKc', 'Ȇg*G,>+WZ8Ma",', '', 0, '?'),
('Ӽ0@ڢS_', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^n8.#Ɗ:L\\', '~)~<W\060k)w', '', 0, '?'),
('а', 'wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}&{Ϟt*', '+	/k%C.+W;\nd', '', 0, '?'),
('эo(Httx.', 'wp-includes/blocks/table/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.PuJa?-', 'jәO2dkU6WֈvgUje', '', 0, '?'),
('5ĺ%', 'wp-includes/blocks/buttons/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nFh5%pD?', 'vF?˨l@c~J5?5tN4', '', 0, '?'),
('ei(#X', 'wp-content/plugins/elementor/assets/css/app-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RzFyM?', '-5:%DuK*	T~:WǙ', '', 0, '?'),
('HAG|"', 'wp-includes/blocks/nextpage/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6Rc0t F0', 'XkW4xYĘH7ya', '', 0, '?'),
('I7߇S2&', 'wp-admin/erase-personal-data.php', '/home/binawebp/omsrislb.my/wp-admin/erase-personal-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']yC|DJ&!', '&\0&YU5F@)', '', 0, '?'),
('D`61iga', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/8.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/8.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zsVjj02+F', 'GPj6eҠaޜJY/ě_׵T\\Ygr', '', 0, '?'),
('?H4V\n', 'wp-includes/blocks/pullquote/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ҵ%a;', '>Q ٘5,ý}a\0in', '', 0, '?'),
('\0_NНvg', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php', 0, '#zNMS', '#zNMS', '?XRC~NҬhsV%1K23\\+y', '', 0, '?'),
('ư$3^]mT', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-custom-field.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-custom-field.php', 0, 't+ʰ:8', 't+ʰ:8', '0պSS*$`Fdq[#c', '', 0, '?'),
('	kJ? @x', 'wp-includes/blocks/categories/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CtܕKѥ|', 'zәDӶn!A˃]?', '', 0, '?'),
('0*W', 'wp-content/plugins/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/index.php', 0, 'gD,V=\\bP', 'gD,V=\\bP', 'k~	UH\ZxPĀ<;X', '', 0, '?'),
('ټ+d? R', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_static.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_static.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v\r/ɽ۝\0h', '&娮\\})=ﯠo6ICo~Q', '', 0, '?'),
('\r\n8n}', 'wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4Cm[^ԙ*', '	Or[\0c+1w@ChVE.', '', 0, '?'),
('넑wI\nIA', 'wp-content/plugins/elementor-pro/assets/js/nav-menu.ded2ef1815c81841b6b8.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nav-menu.ded2ef1815c81841b6b8.bundle.js', 0, 'Ք.Н"|', 'Ք.Н"|', 'Yd+:8\00,ԕs؅ճ', '', 0, '?'),
('A?j&l\\tQ|', 'wp-includes/Requests/src/Capability.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Capability.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dzϤw{', 'g$_;^>mΔ-dp+g', '', 0, '?'),
('1\nH̵EQ-*/$', 'wp-includes/blocks/post-author-name/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}rMXo', '~	(Z<=$ޤ#ݹw', '', 0, '?'),
('6BW(!', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/NotSupportedException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/NotSupportedException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qx[aQak', 'Ta=c)?,X_C.^N', '', 0, '?'),
('H4LfPc', 'wp-includes/blocks/accordion-item/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VUe~W	', 'DcO+,("\\_+WoƬ', '', 0, '?'),
('U,Y䶼0', 'wp-content/plugins/elementor/includes/controls/base-data.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-data.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ifDB>j;', 'K-$|{,y,=', '', 0, '?'),
('].ooȦM-n	', 'wp-admin/images/align-none-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-none-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XC)[-4', 'ߧ&QQp"~\Z8S׊YS`', '', 0, '?'),
('h6t5O)', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-gallery.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-gallery.php', 0, 'J@Ydg', 'J@Ydg', 'q6MrֻΚ \Z/b15z', '', 0, '?'),
('qESLO,W', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O`/.\rQ\n	', '=:T媅HBJ/Ps|	2X', '', 0, '?'),
('y8WN9VӨ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's\Z6ي $', '%8@FU4hR$Fd)e4m/3?', '', 0, '?'),
('{Kuoe\rʹc]g=', 'wp-content/plugins/elementor/assets/js/packages/http/http.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('ԀjEj\Zp+o', 'wp-content/plugins/elementor/modules/library/documents/container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']<{<S6', '\Z$;lH \ZP^''[''', '', 0, '?'),
('Ԁz^Ϫ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/&t3yqZ\r', '_TTBLznMVQמcgN)', '', 0, '?'),
('ԗRa>8S', 'wp-includes/SimplePie/src/Cache/DB.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/DB.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɋׇT\nT', 'jNn{cfp=ܹZQ)%', '', 0, '?'),
('ԛatr', 'wp-includes/blocks/video/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o\r9s', 'jk(h1XݥN-@¯ǃY', '', 0, '?'),
('Ԝd&;0;}h', 'wp-includes/blocks/columns/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kGm#e\\', 'GRP9&4hNrNLW@\\nϮ', '', 0, '?'),
('Ԧz_+>i ', 'wp-content/plugins/elementor/core/dynamic-tags/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e<\\p>', '<mh@pPb_Рws6\0Sx', '', 0, '?'),
('ԻqE{n', 'wp-includes/blocks/verse/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eˣRR|', 'j/+H+׈z*c*aae', '', 0, '?'),
('Ȇp]4Lq', 'wp-includes/css/admin-bar.css', '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`rA5nnl', '2M\nrQҰ-ej\n"\nX=', '', 0, '?'),
('pS`]T]D', 'wp-includes/css/dashicons.css', '/home/binawebp/omsrislb.my/wp-includes/css/dashicons.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6swvH7gM', '#.f\ZcOyl9tg4', '', 0, '?'),
('̆lҘ\\4,C-m', 'wp-includes/css/dist/block-library/editor.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܙptj^', '%%3xeL&M@.%=xr', '', 0, '?'),
('Žu ', 'wp-content/plugins/elementor/core/upgrade/upgrades.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/upgrades.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gR._rq?U*)+', 'hؾ/''܂Ix9"EcSDFŲ', '', 0, '?'),
('0E2q\\', 'wp-content/plugins/elementskit-lite/compatibility/element-manager/init.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/element-manager/init.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{9ZPhnh@', '}Yek\Z"PPfj*3	K+HOX', '', 0, '?'),
('SO6jH\ZR_n', 'wp-content/plugins/elementor/core/settings/general/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/general/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G`dq˔ݾL', 'nܨM&(&f=o-WZ`H', '', 0, '?'),
('g{-T`< ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']y', 'CظWH-NL?qޓF', '', 0, '?'),
('$$To:@.', 'wp-includes/blocks/term-template/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zL', 'pg''FMXcLMmL-b[y', '', 0, '?'),
('G\n 	v', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-03.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-03.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ŏ(,բ-w', 'Kawҙ)bugOWh.!', '', 0, '?'),
('/qRR|', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~zf8m', ';!us`''4bp8sblRZ{y', '', 0, '?'),
('.SVna', 'wp-content/plugins/elementor/assets/css/modules/styleguide/editor.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/styleguide/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6<s(4S?', 'آ*ni~3\0!qB', '', 0, '?'),
('X$aB^', 'wp-admin/js/user-suggest.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/user-suggest.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6|3sJ:+IV', 'ǌ0BȠ|qO	F>g#', '', 0, '?'),
('vf*&ξ', 'wp-includes/Requests/src/Exception/Http/Status409.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status409.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rZD6$[$', 'G973Uɬ}O@,', '', 0, '?'),
('\nE&', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tsx.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tsx.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5x5i\nѢ=e\0', '		R?ZS5D,u|2a', '', 0, '?'),
('!#	JjͣS', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/ruleset.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/ruleset.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$EW1emR', '9V.^I^\n&,hiVJa', '', 0, '?'),
('2_R[Y', 'wp-includes/blocks/code/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q\ZQ響', ' $\r$gI`@+9\rmf', '', 0, '?'),
('BImS967X', 'wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"UE"Eb;Dn', 'ԱrgCXJU1։Ya,1', '', 0, '?'),
('BgLհ5ǩ9', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G/!(~', 'C#D\0806`^DGlzN6\r>5', '', 0, '?'),
('UOX=H0_', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D	\nʩz*<:', 'Phv)6D#MQү"&{', '', 0, '?'),
('b{q;|2(', 'wp-content/plugins/elementor/includes/controls/groups/border.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/border.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A?u>Z', 'fE$>/K''1TbE', '', 0, '?'),
('gֿm㋣I', 'wp-includes/js/dist/data.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/data.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nv', 'kKG,`!(j_&,@ꐨ5', '', 0, '?'),
('hV0Fn\\kA', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-logiql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-logiql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']\rU\Zd', 'P4G=`wBaUώk', '', 0, '?'),
('psZZ#N7e', 'wp-includes/css/dist/block-editor/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3n, y?J@c', '8rgՑy>C~=.(2	', '', 0, '?'),
('uN;KS<R', 'wp-content/plugins/elementor/assets/mask-shapes/sketch.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/sketch.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';z>qb', 'RڂC %`}]v*J w9Y]s', '', 0, '?'),
('Ց<,#@:>S\\', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xquery.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xquery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YMq', ' ~I,pv6zh^Wz\rC', '', 0, '?'),
('ՕL+7>$ɡ4]', 'wp-includes/blocks/post-comments-form/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '쮛9\n.ha=8', 'b?C=P\nEHgpE', '', 0, '?'),
('զ,kI:aq', 'wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b?\\ٰYgD\rz', 'Od :X RU+@9', '', 0, '?'),
('ծn@u:]u', 'wp-content/plugins/elementor/core/modules-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/modules-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Syq"*4w', ' p<{*\nV׹p7\0;7', '', 0, '?'),
('շK;-/U7f', 'wp-includes/class-wp-block-parser-frame.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-parser-frame.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1ۯY', 'T_?>* ?x4Erg:7ʯN', '', 0, '?'),
('Ȩr%Mè', 'wp-includes/blocks/file/view.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Cxf]\\_0Oi', 'o''|F7]+R+x4=yYvz0R7', '', 0, '?'),
('̤\0-A', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fc]', 'skYA0)Vv''Z#E''#', '', 0, '?'),
('fI7"vR', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q:#zQ%', '{T~ǁ1ĹbXPr(=', '', 0, '?'),
('TsW\\)s', 'wp-content/plugins/code-snippets/php/class-plugin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':nM''nɍEh''', 'Z_Kܗ1<?/NY`/%eI[\0_', '', 0, '?'),
('v)+/~Z%iV', 'wp-admin/images/dashboard-background.svg', '/home/binawebp/omsrislb.my/wp-admin/images/dashboard-background.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[H\rkgyjKOM', 'c.K.h|M=ʀ0RϭD', '', 0, '?'),
('պYceB0oJk', 'wp-content/plugins/code-snippets/dist/editor-themes/oceanic-next.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/oceanic-next.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*jOAp_L', 'Y*^!`5.Vo^.p\ZCTt', '', 0, '?'),
('uORO̪ks93', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0_MW{\r', '<#{cm|^I}6yiߙՄ U\0', '', 0, '?'),
('"2#"!zW	', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/R ܜUu@ٓ', '1c7\Z6ϰ]ʮnGa3c4&Z7', '', 0, '?'),
('K2;<Dkub', 'wp-content/plugins/wordfence/lib/wfStyle.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfStyle.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')JG', 'Ɓ_7JpFWSsilg Cd', '', 0, '?'),
('- ', 'wp-includes/Requests/src/Exception/Http/Status403.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status403.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#YOdsCHMG7', '\ZYEKqev@9n3Jy&', '', 0, '?'),
('ͤ6\0/k', 'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӳ/VaW6\r', 'tcAt]{ N@''y)BCL', '', 0, '?'),
('J?,Q6', 'wp-includes/blocks/read-more/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']fp/', 'N\n:''9@cb5''A=''', '', 0, '?'),
('c$s<07', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/index.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/index.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6P:Y}^3', 'ų^ݧ"zr0	/DPka٧]1c?', '', 0, '?'),
('OB5\r', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/module.php', 0, 'l\n_\\~Vo', 'l\n_\\~Vo', 'n@gUjlyi{LSEJ&', '', 0, '?'),
('Q"0]קEL@', 'wp-includes/Requests/src/Utility/FilteredIterator.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Utility/FilteredIterator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c׵L{$G\\i', 'GdOu$A$6PCnts', '', 0, '?'),
('+O+!֦nk', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ace.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ace.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`<Ҡc9+\n\03', 'Ţ+d''8k8~F\nYӂG\ng', '', 0, '?'),
('/0@v1QS&Q1Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӥVLxۗwf', 'ܸwzo\ZI1o cvTuzt', '', 0, '?'),
('0XpOC	.', 'wp-content/plugins/wp-optimize/templates/settings/settings-logging.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-logging.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lg&r7;@', 'V/N_-_{EШ', '', 0, '?'),
('6Z.m*&O+', 'wp-content/plugins/elementor/includes/template-library/forms/new-template-form.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/forms/new-template-form.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PiA"1Kt', 'TtDFI)p@|@', '', 0, '?'),
('<8;p xTG', 'wp-includes/css/dist/edit-widgets/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ev7x', '<MIðpJT=\Z\nևr[|)', '', 0, '?'),
('?ز<r2^', 'wp-content/plugins/elementskit-lite/widgets/pricing/pricing.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/pricing/pricing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WvF>E', '5\r!o֪Fil0?:.z<', '', 0, '?'),
('A>c\r7UعK:', 'wp-content/plugins/elementor/includes/plugin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xܴ֤4', '7C~F4fIM)rUY:%CଃJ', '', 0, '?'),
('F8mu@_XT', 'wp-content/themes/twentytwentythree/parts/footer.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/footer.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W	o9i[r', ',	׼b$O`I', '', 0, '?'),
('H(]@\ZUįv@Y', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U\rdhbPrg', ')01?aB\nRҿ8XFi', '', 0, '?'),
('I,F}l[|', 'wp-content/plugins/elementor/assets/js/packages/query/query.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L:ǰu<\rv.+', 'aXGIXCWڡ(Nc^>=7Ï#嶴', '', 0, '?'),
('J\nsK׳k\\', 'wp-content/plugins/elementor/modules/usage/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/usage/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''1nyi4x|', 'f4rmG''cw>"f', '', 0, '?'),
('Pi2:6A]', 'wp-content/plugins/wp-optimize/images/features/choice-n-flexibility.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/choice-n-flexibility.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v09\nPCLâ', 'J핳4Pt-2B9+c(z~', '', 0, '?'),
('Qh2mߌ', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-position-offset-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-position-offset-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F8x_dn\\', '	Cś}r2Z^\Zޖj', '', 0, '?'),
('S*ɠ߅', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-title.php', 0, '5r\0{', '5r\0{', 'ڽCEai20TC֔%', '', 0, '?'),
('Xډ|8}B', 'wp-includes/js/tinymce/plugins/link/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/link/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V\\\n]Ks''', '\Z>ISеv,qU^', '', 0, '?'),
('Z	r!ޏf	', 'wp-includes/images/icon-pointer-flag.png', '/home/binawebp/omsrislb.my/wp-includes/images/icon-pointer-flag.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',E^j`''', 'oq9a{)h}=#Tק', '', 0, '?'),
('\\VG+`', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*iLem´a)', 'ӷf77\Z>Aq#', '', 0, '?'),
('dE+3`+ֲy', 'wp-content/plugins/code-snippets/dist/editor-themes/xq-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/xq-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P}k4', 'm0DO^nڀ[UnZh׽\Z', '', 0, '?'),
('j#ӲX%I', 'wp-includes/block-supports/elements.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/elements.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pk1E3׬4\\', 'x#g_DI&Ҁ?=߿%S', '', 0, '?'),
('mዞjWBv|', 'wp-includes/blocks/template-part/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[\Zu7 ', '%F.R8c@BLHg#YS	', '', 0, '?'),
('oҨ*Ko7{ <', 'wp-includes/ID3/module.audio-video.matroska.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.matroska.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FopHJ	!', 'whd=n=yLY<,oY-KZlm', '', 0, '?'),
('rYSxwDY˚J[', 'wp-includes/images/media/interactive.png', '/home/binawebp/omsrislb.my/wp-includes/images/media/interactive.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R׬˂ôŉhH', '{ [K\0!긽/\\lw.', '', 0, '?'),
('u*!\r', 'wp-content/plugins/elementor/includes/controls/section.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bZ6﹚	!', 'ALo"r3(}DnK%D', '', 0, '?'),
('{^^T', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HYZ?/', 'G7Jl4g QB%US''''{1P=', '', 0, '?'),
('֋8[0ʊ', 'wp-content/plugins/wordfence/views/waf/debug.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/debug.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ANz	ܿ', 'ŗ5bDG!{t*"y', '', 0, '?'),
('֌qóX[', 'wp-includes/class-wp-feed-cache.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-feed-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|J#.͆~j.`', 'h^SFwb\\v):>\n3H', '', 0, '?'),
('֓q+Za#<C', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/autohotkey.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/autohotkey.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I44', 'dD!"i㖏q$jјh', '', 0, '?'),
('֘	fx=9a', 'wp-content/plugins/elementskit-lite/widgets/tab/tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lPy/\n)ۋwuI', '\r\rY::fcw*)R', '', 0, '?'),
('֛.l&D$Ϸ?', 'wp-includes/l10n/class-wp-translations.php', '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translations.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DH  f\rl', 'ώ	8tY6!h*o\\9`/~m', '', 0, '?'),
('֦ұ8}/*ʹf', 'wp-content/plugins/elementor-pro/modules/payments/widgets/stripe-button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/widgets/stripe-button.php', 0, 'E"3G*\\vhP', 'E"3G*\\vhP', 'Ϯ^!{n8EQJl\r_cl', '', 0, '?'),
('ֱN9kt>', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-04.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-04.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WwYm', 'Cq/V1HY[X&)τ%E', '', 0, '?'),
('ֶ9؞fpo3t', 'wp-includes/class-wp-admin-bar.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-admin-bar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[uEs2M', 'c{ (_\01I75eqƪ:', '', 0, '?'),
('־N@8\neS', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/README.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '18KuZMp', '!*\rL''/&[S5CZl', '', 0, '?'),
('J![W6ݧ', 'wp-content/plugins/wordfence/lib/IPTraf.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/IPTraf.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KF;5G*"O', 'cg.5R>_,^tItAC\nGOK', '', 0, '?'),
('{nq,j(x', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-profile-picture.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-profile-picture.php', 0, 'IxK\0', 'IxK\0', '4䕃GeZ)իIJm)8~', '', 0, '?'),
('Gc?F9UY', 'wp-content/plugins/elementor/assets/lib/font-awesome/json/regular.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/json/regular.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(}K+`n>', 'xkF.2i9!ttD&}', '', 0, '?'),
('BWk\rZ{', 'wp-includes/sodium_compat/lib/ristretto255.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/ristretto255.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܶ]]', 'FojS1<$+qPwXQ', '', 0, '?'),
('d?uc0|:&}', 'wp-includes/SimplePie/library/SimplePie/gzdecode.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/gzdecode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LXjTTO>\0', '/iB{/\n:ShNG', '', 0, '?'),
('D%Qup', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DecoratorResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DecoratorResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G7*\0ݷ,ѳ$', '*PElvAU*Yv9ͅϙ`Q|s', '', 0, '?'),
('\0s,ӄ=,', 'wp-content/plugins/elementor/core/common/modules/finder/base-category.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/base-category.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QAo-ZJ', 'y jC=ܥH^#՚/"^', '', 0, '?'),
('8[kM6)ϲ40)M', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-notices-main.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-notices-main.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FJ< GtG', 'yDޗBh&zJؒ"', '', 0, '?'),
('\nyxhG', 'wp-content/plugins/elementor/includes/admin-templates/beta-tester.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/admin-templates/beta-tester.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z\Z!L', '9eEk\nE)H*r;{GZ*=', '', 0, '?'),
('߰c|brj', 'wp-includes/css/dist/edit-site/posts.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f[1)KG', 'wqwmvGP3\rǣ', '', 0, '?'),
('%ucp֖]', 'wp-includes/blocks/calendar/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E!\nk݄uscь', '}^i\rة-= J#\n', '', 0, '?'),
('q&ɎpQ', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APC.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APC.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}Tlk{Ϸ', 'zuvV䑺dV! @c]2@[/&ҋd', '', 0, '?'),
(' cK-Q', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-dimensions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-dimensions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V9̟c', 'gzv+0?@{4ߚHÅ-۩k', '', 0, '?'),
('"zbƻJq', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ParameterResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ParameterResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hſ=ĻܐK', 'Ӂ\ZI;eϧMXC"~', '', 0, '?'),
('/="	AxSpH', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-pseudo.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-pseudo.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''Wf rs?b', ' Qq$/\r(,m+J^yZ', '', 0, '?'),
('4Ux-s=mzN', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/NullToken.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/NullToken.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!UCi', 'Qrv?i  $<J%''vh_>I', '', 0, '?'),
('5Py=6', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/template-conditions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/template-conditions.php', 0, 'd>pgl\nR', 'd>pgl\nR', 'Æ*RN\0n!}i8''vל*', '', 0, '?'),
('Gȩ6\0Y', 'wp-admin/includes/class-wp-posts-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-posts-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̸hw%#W', '2SӇal0i( :ףz,EO@zl*', '', 0, '?'),
('Ȟ\Z"*֩', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_ruby.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_ruby.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ő#NR', 'k~.ˆi=O3}kHY	jO', '', 0, '?'),
('I	Ja~RZ', 'wp-admin/includes/class-wp-application-passwords-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-application-passwords-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9,٣ڸz', '	z،syhT''\Z) ', '', 0, '?'),
('M\0c_d', 'wp-admin/includes/class-file-upload-upgrader.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-file-upload-upgrader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm(MB?*ͬ', 'EG$v5|9Tb)>R_Z', '', 0, '?'),
('Sj P\0^c', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/RuntimeExtensionInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/RuntimeExtensionInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bluujݖ)	', '8!{>~bֺu:"FŀUՌ/]e', '', 0, '?'),
('fk[x \\/Y', 'wp-includes/js/dist/redux-routine.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/redux-routine.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DɉN$B', '@ʭG_\r띟˨	i\nǋ', '', 0, '?'),
('wh]á&wM', 'wp-includes/class-wp-network-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-network-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5"8*AA6֦,', '9XzuH=bB@Ƃ͑', '', 0, '?'),
('׉Y{M', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/functions.php', 0, '8-RkF.''', '8-RkF.''', '3JU2M_vt<29', '', 0, '?'),
('ח\r	]0', 'wp-content/plugins/code-snippets/php/views/partials/cloud-search.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/partials/cloud-search.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6+a~HhS', '23uyf$ƻ%Z_>qtKdS', '', 0, '?'),
('יuM60BJ', 'wp-content/plugins/elementor/assets/shapes/waves.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/waves.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jX\\YBP', '!SkU54{U2A]~[@ghfZ', '', 0, '?'),
('מj N@d', 'wp-includes/Requests/src/Exception/ArgumentCount.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/ArgumentCount.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '䏽$JzfDU', 'Vh6#EI =\r6U!\Z(', '', 0, '?'),
('מy7mE5O_', 'wp-admin/js/media.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/media.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']vro$ô', '5iJq\\B⩚e~\\w+C', '', 0, '?'),
('׹g[j@3', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Profile.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Profile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't7Y2;W?', '|Hݎ8]pRY2\nugs߮', '', 0, '?'),
('j0wE}®R', 'wp-admin/css/wp-admin.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eUpʓHWtP!H', '^E-R''#?lemL0kU@', '', 0, '?'),
('Pـ\\/ov', 'wp-includes/Requests/src/Exception/Http/Status406.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status406.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4)-Հ\0G', '$+}dm<|viwr1G0', '', 0, '?'),
('~hp6黊,Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/java.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/java.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2=AQ-*}', 'P#=\\t_\0(pX OI', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
(',dm"6E#*)', 'wp-content/plugins/wp-optimize/vendor/psr/log/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZtbryI79J2~', 'KԼiEl19GRMC', '', 0, '?'),
('lʖ]2t_', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dart.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dart.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xrb0unB', 'rgй zÉJ<bWm7BYRv', '', 0, '?'),
('ۦdJu4&pW', 'wp-content/plugins/elementor-pro/assets/js/notes/173.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/173.min.js.LICENSE.txt', 0, '߀*2.^GE', '߀*2.^GE', '^.L{El"Dԝhg`', '', 0, '?'),
('_x<T%\0@', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/WinCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/WinCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GJZ*', 'ژ=|[0D>??4 RǋCܶB){֐', '', 0, '?'),
('CUةET$', 'wp-content/plugins/elementor/assets/css/widget-rating.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-rating.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't\r*PX', '&gOdnµuV? v\rк4', '', 0, '?'),
('^u}G', 'wp-content/plugins/wordfence/lib/email_unlockRequest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_unlockRequest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '΁~͟ak', 'u\Zg$}obĄ+\r\n8', '', 0, '?'),
('/|J2O/', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-trumbowyg.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-trumbowyg.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eVCVa\ry', '\\]#iM3mEJl5X', '', 0, '?'),
('$RbY{''''U', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/3.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/3.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',ZO]<zK', 'A?ከ0B>G[9]L\n', '', 0, '?'),
('OMu.;X]\\', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w&|яsb', 'd:Ψ aKEkFn', '', 0, '?'),
('_\r 8&9U4', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ׂ&eq+Iǟ\\', 'pGb5cX2ttwck	AH\0D\rJf6', '', 0, '?'),
('0";0̭', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"P\n:g', 'uq3ꛭAc 孵U', '', 0, '?'),
('\ZvI:wm''~K-', 'wp-includes/ID3/module.audio-video.riff.php', '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.riff.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V#', 'fsBa	n3,#).ċI,5d&>', '', 0, '?'),
('$NC@1Ü', 'wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-footer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-footer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '鈣mU:+*b', 'e*Z5x@8_g/Txeͨ', '', 0, '?'),
('&Zh$Éo', 'wp-includes/class-json.php', '/home/binawebp/omsrislb.my/wp-includes/class-json.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԒMokA', 'Dkz\\^,ɑ#Y$HniR', '', 0, '?'),
('8/B$8`m', 'wp-includes/js/imgareaselect/jquery.imgareaselect.js', '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/jquery.imgareaselect.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XN?[ƁZL"', 'YE64g/<"zq$', '', 0, '?'),
('=#WDWckn"', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/SanityException.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/SanityException.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y>db\0T', '%I\0t)d+,UW(T''c', '', 0, '?'),
('>;5w{tD!', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailerlite.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailerlite.php', 0, '`dŖ3on', '`dŖ3on', '''rn	-^\\nz4x\n<јwOw', '', 0, '?'),
('Ah)I\Z]GrE', 'wp-admin/includes/import.php', '/home/binawebp/omsrislb.my/wp-admin/includes/import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%G	or>Rvڔ', '՝t\nnx/\Zdſ:\nIH|', '', 0, '?'),
('J=R''t^}\n', 'wp-content/plugins/wordfence/images/2fa2.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/2fa2.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0H', 'npʅG06KqJ]J', '', 0, '?'),
('M]vIx~', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ocaml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ocaml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y\Z۞b', 's1{ɇ=R!TY(NB!k', '', 0, '?'),
('M&3\r3CMaQ{', 'wp-admin/images/yes.png', '/home/binawebp/omsrislb.my/wp-admin/images/yes.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+7܉\rqZQk', '=QG9%K,\r\ZFy', '', 0, '?'),
('ao?w9b-', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ejs.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ejs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2އV$Q)', 'HLxv)ˠG5x%G7+cV', '', 0, '?'),
('b<<;\\.<}', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/text.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/text.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g\Z>:iYq', 'Ï7DE2Ko҇J<0', '', 0, '?'),
('v\r&X', 'wp-includes/js/jquery/ui/selectable.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectable.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Kpxс[B&Կ}', 'sV5ibNiP&F0', '', 0, '?'),
('xβЦA	<', 'wp-content/plugins/wordfence/lib/wfCrypt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCrypt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CR`9|e', 'U͊sds9;COȤ@', '', 0, '?'),
('؅ P;fD7', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-text.php', 0, '0''\0WX\\', '0''\0WX\\', 'zK~֘VR}ȩ# ʽZ]', '', 0, '?'),
('؈2s#h@', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli/Arg.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli/Arg.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$t?\n%An+', ',̥XM\0\r1!.ST0y', '', 0, '?'),
('؊Z?yw', 'wp-content/plugins/code-snippets/php/export/class-export.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/export/class-export.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<kSﱴ', '	)G"	aӚSwEw\nuƨqpJ', '', 0, '?'),
('ؓjWAi4-bI*', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/pro-awareness.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/pro-awareness.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V</}K', 'H>mӰk	\rwq', '', 0, '?'),
('ؔ4^xa !', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?|jFRp', 'r&Rv pvJ65', '', 0, '?'),
('ؙrpj@ѨI[:', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub-id.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub-id.js', 0, 'N~tcyz6V', 'N~tcyz6V', '-[WC쭈ۯS~	:/', '', 0, '?'),
('ؤ@Tpgxl', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U"+6ח', 'Sk 1Q:adDQTIBx1F`IQ{', '', 0, '?'),
('ر-_}Zh\n\Z', 'wp-admin/includes/class-walker-nav-menu-edit.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-walker-nav-menu-edit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j뉴\\ϛ`*', 'vge &.f.V:\0糔Wzr', '', 0, '?'),
('ظKp=j̟2$', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-border.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-border.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Qϩ]hdP', '(ad@6-ʳGn(2$', '', 0, '?'),
('G	ǐ>', 'wp-content/plugins/wp-optimize/js/handlebars/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JI׹5<', 'ZFp4kYП\rƔ*]=	279', '', 0, '?'),
('ǭrvWHa&', 'wp-content/plugins/code-snippets/php/class-validator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-validator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S+9G/#[', 'U;1~s\ZCw\Z`@|U`o=', '', 0, '?'),
('`X\ZPhr', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0YmlK&2', 'MM(v0g=ve?', '', 0, '?'),
('8+1J%uo\0#', 'wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ''';Yо9b1;h', '(ӳrq8n*@rl\rɣU}7', '', 0, '?'),
('ҡK%^', 'wp-includes/js/dist/dom-ready.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom-ready.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Eʑ	ޡ4\\Q', 'i!6ѓ]sR96TM<\nln', '', 0, '?'),
('-h\n\r`ýەC/s', 'wp-includes/class-wp-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nJ%#', '`6W|TU+d6VfHVl', '', 0, '?'),
('k|Q1]rR', 'wp-includes/blocks/term-count.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y4z*%', 'tÆwBg/)l5>C', '', 0, '?'),
('Ԍ*Z`~', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+\n+Tr', '6OnqI\Z\nZ1~@YI3@Fn', '', 0, '?'),
(',(i7:^^#', 'wp-includes/js/tinymce/plugins/paste/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/paste/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dXz҆֫', 'f\0W{?qUlP֫c8', '', 0, '?'),
('J^\Z7uGk+', 'wp-content/plugins/wordfence/lib/wfDB.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDB.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'צxk#-Of!', 'P·JIK>ISBf`yYrA', '', 0, '?'),
('RM<60%;', 'wp-admin/network/contribute.php', '/home/binawebp/omsrislb.my/wp-admin/network/contribute.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cyJߛB\0', 'CKdSISߪի,<,F', '', 0, '?'),
('T	twc"|i', 'wp-content/plugins/elementor/assets/js/tabs.e808857358793ac13db5.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/tabs.e808857358793ac13db5.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')\Z`L{匘', '֟ ,\Zj6iLE۪', '', 0, '?'),
('d%3Z4_+', 'wp-includes/css/dist/edit-post/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%|93`*N', '!\\NHj\nsʷn但hx', '', 0, '?'),
('k/y&G', 'wp-includes/images/rss-2x.png', '/home/binawebp/omsrislb.my/wp-includes/images/rss-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ya[Qrj', 'yS0c`\n7as#nY', '', 0, '?'),
('mxәcǨ', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionFile.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionFile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1~ٽ}5K', 'ڻosXfv_83h/[>', '', 0, '?'),
('rp]O%W3	\0R', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2?', '9&r\rU!K%m\rФF', '', 0, '?'),
('وTĖhx~Dt>l', 'wp-includes/js/dist/compose.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/compose.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MKX|', 'fި''bnD(1$|[', '', 0, '?'),
('ُ.pX|\n9G', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A%^	  W', 'QC\nn(\r~Z߱\Z-r''', '', 0, '?'),
('٘"Pܞ,', 'wp-content/plugins/wordfence/images/icons/ajax24.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajax24.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K:m𙗣P', 'j*edoX~7&N9|L', '', 0, '?'),
('٩.~ƫ''', 'wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NJ}XM', 'zFvH~8_|Q\\F Xm1Z', '', 0, '?'),
('ٱMPrh~', 'wp-includes/blocks/post-content/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?8p%H', 'H5:ټEv&6ic', '', 0, '?'),
('ٳQOU,SvR', 'wp-content/plugins/wp-optimize/templates/minify/cached-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/cached-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӑ #u>^i', 'Jp^?_B<	8OWy', '', 0, '?'),
('ٻ63=q=>t', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExistsUsingExec.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExistsUsingExec.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v\\mŦ', 'S2PXdq)q_Jd"䡊VgʏMi', '', 0, '?'),
('ŗEs.9\0<q', 'wp-content/plugins/elementor/core/files/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W˽Yo`', ':%\0̎080tuiT', '', 0, '?'),
('N#,: ', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/homepage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/homepage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qCM%c', '$oUC~''vc~HIńR2/\r+i', '', 0, '?'),
('(>m7=', 'wp-content/plugins/elementor/modules/home/transformations/filter-get-started-by-license.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-get-started-by-license.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dˣOY', '2([)	,LK{ۖ<6#|', '', 0, '?'),
('!}=`*gZ=', 'wp-admin/network/themes.php', '/home/binawebp/omsrislb.my/wp-admin/network/themes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ԻK+tAYrb\0=', 'a{]P}8ҷh"Væn	Y~>td', '', 0, '?'),
('_9ìD.', 'wp-content/plugins/wp-optimize/images/notices/wp_optimize_logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/wp_optimize_logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'qdBnR˶\0w', '!*ug{IpGL>W"VR׶r', '', 0, '?'),
('VBǡ\ZB"\0', 'wp-includes/js/codemirror/esprima.js', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/esprima.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd_ Sgٛ', '];%JslxFqBH\ZU8', '', 0, '?'),
('>~!gq', 'wp-includes/js/tinymce/skins/lightgray/skin.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\B&pw', '7>xV&v|­U& ݷ"ǥz9jF%ѽKV', '', 0, '?'),
('p\Z\n', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Serializable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Serializable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P֢M@o2+', 'LrvGx@njߵ*j)\rA4gٲ', '', 0, '?'),
('^%W`Pq', 'wp-content/plugins/elementor-pro/modules/woocommerce/traits/products-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/traits/products-trait.php', 0, 'U3fO	CԜ', 'U3fO	CԜ', '|Ӽ ׿u2	W!<B\0O', '', 0, '?'),
('w=ŢO&F', 'wp-admin/css/colors/midnight/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bVn2W\\\n\\', 'R#/\0`|3yK;+O2', '', 0, '?'),
('R5_J9@', 'wp-content/plugins/elementor-pro/base/base-widget-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/base-widget-trait.php', 0, '0mk%', '0mk%', ':''''P''ǱE|A.dV`@N7', '', 0, '?'),
('?CtDְ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GmagickBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GmagickBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sPH/iRJ^''%,\n', 'C[X1TF*i=._ѹ9', '', 0, '?'),
('S;=SӘᢔ^', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's :/Ke%$', 'AZ-֭:''<5FWq,', '', 0, '?'),
(')D', 'wp-includes/block-i18n.json', '/home/binawebp/omsrislb.my/wp-includes/block-i18n.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n!:D8', 'f\\tM&\r1	$u3 ', '', 0, '?'),
('''7b~ 6', 'wp-includes/sodium_compat/src/Core/Base64/Original.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Base64/Original.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>^AdS^', 'f+T&\nIOkoa+Xdrp\r', '', 0, '?'),
(',\r	gH6', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8v\ne=\r+', 'o!#0`Bڡ`Rݖ&##TF', '', 0, '?'),
('1NUOĢ/Ѳ6t', 'wp-content/plugins/ooohboi-steroids-for-elementor/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('26,̞|keL\ns', 'wp-content/plugins/wordfence/images/2fa1.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/2fa1.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/)h\\ hG8', 'C%0z)f @t>ɶ{T8o', '', 0, '?'),
('52hCr^95', 'wp-content/plugins/elementor-pro/modules/notes/user/capabilities.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/capabilities.php', 0, '{leX8{;', '{leX8{;', '[b襧1>I*AAב', '', 0, '?'),
('<5\nmeu', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Logger.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Logger.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G**<U`t%4', '.>D`R8gԒ-h{', '', 0, '?'),
('BZS>xꨏ', 'wp-content/plugins/elementor/core/frontend/render-modes/render-mode-normal.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/render-modes/render-mode-normal.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ң6Oi3i.', 'y:*BMi}( $܄/', '', 0, '?'),
('Dl$M^&wiQ YP', 'wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-style.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2"-hw N]', 'u\\:Q;\Z68.,=HM\Z', '', 0, '?'),
('J8mZ<#', 'wp-includes/blocks/accordion/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kT0kUٵ', '@q\Zxt-"P)', '', 0, '?'),
('Q}!Ng', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-curly.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-curly.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p$hvdL)-', 'E%Ub%9	fT87V=]', '', 0, '?'),
('SUҧm\ZWFwh', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/stroke-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/stroke-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r[;\niy Y@', '=_%ls\n\09W9\\@', '', 0, '?'),
('VCdvۦ', 'wp-includes/blocks/file/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AVHxn', '\n#e"L2OVJR@''8\rB', '', 0, '?'),
('VzKO.|65', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/test.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/test.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g\ZWO]ٴe', '\nMqx.*aV0y}t/Q8`\r!', '', 0, '?'),
('Z1׼B0n', 'wp-includes/css/dist/patterns/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k9-ms>`E\0K', 'PpGvNA>PvQ>J"', '', 0, '?'),
('u78¸KԊkh', 'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tJֶDܒ+C', '"uugI$ED=\nQg-TZ', '', 0, '?'),
('|#԰#{', 'wp-admin/js/link.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/link.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nwhs[', 'y׈h8Hi*\r!4*<9gV"U', '', 0, '?'),
('ڈ-d%', 'wp-content/plugins/elementor/assets/js/packages/store/store.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')b?(Y$)', '1\n~MUh\\Pp7', '', 0, '?'),
('ډx`9LťM,L', 'wp-includes/css/dist/block-editor/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ih''!	\r&(X', '|IT63''I݇[/MzpnZd', '', 0, '?'),
('ڊ	>wEL', 'wp-content/plugins/wordfence/css/main.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/main.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L)Sv''Y', 'bTHRVE%&kԧ%\ZW\ZdVӻ', '', 0, '?'),
('ڐVG[rpuY]1', 'wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MitIt\\', '`Jq$@h\\*c', '', 0, '?'),
('ڐǽZT< ', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wesp-V#', 'f9!HV<8OQc''įQƋ', '', 0, '?'),
('ښ޴u_', 'wp-includes/blocks/post-template/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4ЖE`DoD', '<\Z..U,fںNUqxVU]', '', 0, '?'),
('ڠ7+4)C\Z', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/GetImageSize.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/GetImageSize.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=<J#/`', '{["f]nO ^v:	', '', 0, '?'),
('ڦYL\nrQ-', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IZC#lUm', 'lڋ2sl*''BCk', '', 0, '?'),
('گ\r|~', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('ڹ:ЙqWl ', 'wp-content/plugins/elementor/core/utils/svg/svg-sanitizer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/svg/svg-sanitizer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2$\0;E	', 'TV[''}Ok\nql', '', 0, '?'),
('#6K%#f\r', 'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')N F]-(', 'R	õ<\\@\n>4f$Z Cv}Z', '', 0, '?'),
('"Hr4T<\ri', 'wp-content/plugins/elementor-pro/modules/notes/data/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/controller.php', 0, '#Z"bWބ`', '#Z"bWބ`', '''jƔEM8nw]%1', '', 0, '?'),
('rwƞ', 'wp-includes/blocks/footnotes.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jt+`촒:', '2*q-htQe{uEZ''i', '', 0, '?'),
('̭\n5B+l', 'wp-includes/blocks/gallery/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#''yb XbS', 'uk*d,ЙO!uCͰҚ\0', '', 0, '?'),
('JB&9:VF[', 'wp-includes/js/dist/media-utils.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/media-utils.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*65eDxb', 'j^''}+HrBj\0w\ZO', '', 0, '?'),
('C.yj\0o*f', 'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L\Z3`fі{_zq', ' .IETأJ#JUk7hy\\0', '', 0, '?'),
('F!|δ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AכO>5i', '-!@8bV5\nRha;5NV', '', 0, '?'),
('?	\\|~Kb&', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Container.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Container.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uQ=>8r#j', 'NKLyoBrpUΠ6.wG),<', '', 0, '?'),
('xF+r2', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/RuntimeError.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/RuntimeError.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cE@߾_', 'C<طJd"trKn?Qq;s]*I', '', 0, '?'),
('!(t<Թ', 'wp-includes/js/heartbeat.js', '/home/binawebp/omsrislb.my/wp-includes/js/heartbeat.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӃY\0dp>P', '7?Fĭx\Z''2fv\Z', '', 0, '?'),
('_\rJL#@B', 'wp-admin/css/colors/midnight/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mpy^-"j', '9 gUGߖH', '', 0, '?'),
('RQ}n{qc|', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f<\nQu|', 'G-~BrB&oN**e\r+', '', 0, '?'),
(' I_X?', 'wp-admin/js/gallery.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/gallery.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V\r~7xDecb', 'У0	#u\r/L:hJR''9k', '', 0, '?'),
('4Vs#,Q', 'wp-includes/blocks/query-pagination/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '֌7̈$8', 'P`֓}8=_%ogSu!', '', 0, '?'),
('461mYR', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4tQSDv', 't!BxV\\N<tp!SEг', '', 0, '?'),
('5cƒ\0hwT', 'wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^K''~r,`', 'I6adā8D9\Z[MYN+', '', 0, '?'),
(':U.\n:jXH9', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-finderselect.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-finderselect.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KPBE*Ȓk.%;', 'ɀx0=]6I_R%GE', '', 0, '?'),
('Aq8k"ݏb~p', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\0t	%K:z', 'Wd~a_o[Zw/uUrU', '', 0, '?'),
('WV؃\rԮWv', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeClass.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeClass.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nlo]ӱSr', '.Pu_%,jGP', '', 0, '?'),
('W;.+8<U', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/3.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/3.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hg0-\r@p@㩲', '^߫ǲ8[^ygs', '', 0, '?'),
('[ݒ8UiQ', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/footer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/footer.php', 0, 'uw݊cpi;+5', 'uw݊cpi;+5', '`Ȟo|yX4mgeZhx5', '', 0, '?'),
(']?a+', 'wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mNEs', '93yH?\rKM!%w1SKE	!', '', 0, '?'),
('rS8Z+"8gn', 'wp-content/plugins/wp-optimize/images/our-other-plugins/wp-overnight-sm.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/wp-overnight-sm.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k*խ*i=c["', '''W1b\\[rmVǇƓԗ', '', 0, '?'),
('v6^AA/],6''y:', 'wp-admin/css/site-health.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-health.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JrZO({', '̦U ٳbKbRWN', '', 0, '?'),
('~9s5",', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/boolean-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/boolean-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X yq$L', '˃ǇFu݂*V', '', 0, '?'),
('ۆA+:ʌ', 'wp-includes/Requests/library/Requests.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/library/Requests.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5NEj4yx"$', 'P\05P^9*xG)֬aX|', '', 0, '?'),
('ۋ{S0\0\0=1_ئ\r5', 'wp-includes/js/dist/priority-queue.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/priority-queue.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z%\\NfJxk', '\nܭA]rNFkMEw\0', '', 0, '?'),
('ۏ2Ɲ営8', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/AutoEscapeNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/AutoEscapeNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|/5`Myo', 'B)Re\\7ՈN4z9Z', '', 0, '?'),
('ۓG{M8f֫5Ũ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''vrD', '8e|fE30W6\Zjf;', '', 0, '?'),
('ۖJBwC|Mv', 'wp-content/plugins/wordfence/lib/Diff.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5VzY]#yRJݮ', 'YM"z)tϖ*cwL\01w$d', '', 0, '?'),
('ۚ''ScϷ]R`', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nsis.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nsis.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OST ', '*=:CO{F9MI\Z<ni^', '', 0, '?'),
('ۡA', 'wp-content/plugins/elementor/core/admin/ui/components/button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/ui/components/button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tEڰh#g', 'JH@`,.rnP&yMZ^', '', 0, '?'),
('۪	.ո\\', 'wp-includes/js/tinymce/skins/wordpress/wp-content.css', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/wp-content.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>aَ:!b', 'r{@C</-8{&10$Gn', '', 0, '?'),
('۳WkpD-+\rm', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z 6>', '@⣂LEQ(ieq[N|&Ð', '', 0, '?'),
('۷\n/', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Nƭ`dv', 'oWap)=q#{d6x(DE', '', 0, '?'),
('۷WQ}Q2\r'':', 'wp-content/plugins/code-snippets/php/cloud/list-table-shared-ops.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/list-table-shared-ops.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QQgZ\nA-N', '҈{g6^8xtdUVR', '', 0, '?'),
('ۿTa\r!"r', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '԰cMtA6Y', 'ڪ|[K/VL?jJ>\\', '', 0, '?'),
('r؁=Ԓ', 'wp-includes/images/rss.png', '/home/binawebp/omsrislb.my/wp-includes/images/rss.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[(.*NZ', 'j(-9_E-#we$]o01u', '', 0, '?'),
('oEg]a\Z', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOrNullOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOrNullOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u4Z''', 'nd?b-Śׯ!^<joX]B', '', 0, '?'),
('މ#9', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-base.php', 0, 'S׷7x?P.', 'S׷7x?P.', 'kY,<*g;U!rYղW%', '', 0, '?'),
('\npGnu:', 'wp-includes/js/colorpicker.js', '/home/binawebp/omsrislb.my/wp-includes/js/colorpicker.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V g-', 'Vw%%:3CQ#+g	e}', '', 0, '?'),
('t_jx)Ⱦ', 'wp-content/plugins/elementskit-lite/compatibility/data-migration/settings-db.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/data-migration/settings-db.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cx1+\0 r', 'xO.L\n+D4Rm(k=-=T', '', 0, '?'),
('7]\Z@,/T', 'wp-content/plugins/elementor/includes/heartbeat.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/heartbeat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C$UFun', 'Ѵi:W~%n''ACEp4zгPb', '', 0, '?'),
('`su\0tc', 'wp-includes/html-api/class-wp-html-unsupported-exception.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-unsupported-exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9Pi(:xvw', '^ӯQ4!r["}֛', '', 0, '?'),
('`G1\nL=W!', 'wp-content/plugins/wp-optimize/vendor/bin/plessc', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/plessc', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܙzum.?', 'elH45(?''*ET02<#>	', '', 0, '?'),
('U8S/g', 'wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/saved-templates-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/saved-templates-menu-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W*MIћ_h', '0\nG\Z~fYRcޘUЪ"ܿ', '', 0, '?'),
('ʡiy', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pw8/c', '--vfRǇ]Mk[sx/ڪ˒', '', 0, '?'),
('\0{u%T1?', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-body.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-body.js', 0, ' dBc@^>', ' dBc@^>', 'R\n,232aFL4gyǨfz', '', 0, '?'),
('׺y8', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-section-document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-section-document.php', 0, 'Uqħ,=ܵڪL', 'Uqħ,=ܵڪL', '0s9w;|u={&J|nu', '', 0, '?'),
('F\ruDb7', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aMG<?v''D', 'Yw1\Z%Rarզv\Za', '', 0, '?'),
('ȼ؟''\r`', 'wp-includes/feed-rdf.php', '/home/binawebp/omsrislb.my/wp-includes/feed-rdf.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xG7%\0b', 'p=m=GlhnhV]-+1a', '', 0, '?'),
('V#V>%', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-convert.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-convert.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ue>k⢜', '󛏀sڣXlLC\r3\re,O', '', 0, '?'),
('*ib.,#5ӈ.', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-counterz.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-counterz.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''UfIs', 'OcZs#)F+"', '', 0, '?'),
('-H\Z"$', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CommentPreserver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CommentPreserver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I6u"RgeЪ', 'ڎ58#Afnl', '', 0, '?'),
('2G?_\\-B', 'wp-includes/canonical.php', '/home/binawebp/omsrislb.my/wp-includes/canonical.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ug)ĎK', 'tmqj<y)aĸ!Cv', '', 0, '?'),
('P4U;쭃', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gobstones.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gobstones.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vφ--X\r', '&*vh\r6B\0m''', '', 0, '?'),
('\\{x\r㚤)i', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/FilesystemCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/FilesystemCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')¶?''23', '=)0aRh)\0+!', '', 0, '?'),
('gOp1o#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-assembly_x86.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-assembly_x86.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gJ\0ag`h]T5', ']%_ob+rh\Z)I։"%', '', 0, '?'),
('g\nqM\\^', 'wp-content/plugins/code-snippets/dist/editor-themes/paraiso-light.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/paraiso-light.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZO=]gpw', '?$mKXCId߸3*p}}U{ʘ', '', 0, '?'),
('x\raPF^', 'wp-content/plugins/code-snippets/dist/prism.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/prism.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'haj9&<U1', 'kߔ2߈/$V}{=\ny;,', '', 0, '?'),
('ܑKݓ%eP^U', 'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g}hk9yb(W', '\ZDQ^\\9;7vF', '', 0, '?'),
('ܑQ(&Xi?(', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ftl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ftl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2-\r', ']\\ۊ(.ˍ	[aey', '', 0, '?'),
('ܟh/2%U', 'wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.930bfd9119ee62d5ccd6.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.930bfd9119ee62d5ccd6.bundle.js', 0, '0f4<)҅i', '0f4<)҅i', 'M%E=w*/G/jt0E8(', '', 0, '?'),
('ܠva3[}SJ', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel.9145d6891784d5818672.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel.9145d6891784d5818672.bundle.min.js', 0, 'S\\{q1շ\ro', 'S\\{q1շ\ro', 'EU2=0)vj+ڧ%M#ViY', '', 0, '?'),
('ܦx>gB*Y*', 'wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\:B%P/I%^', '@@]QKD; sO{a``ֵ', '', 0, '?'),
('ܭׄ*v', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/ultimate-review-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/ultimate-review-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kIVEUv', 'Ac,	Pb՞ +! Ɉ', '', 0, '?'),
('ܯoZ0KZ', 'wp-content/plugins/elementskit-lite/libs/banner/banner.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/banner/banner.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cˁ=[EԆ', '@TIB~MTrfyv|BA\n	', '', 0, '?'),
('ܺ!AB^-	', 'wp-content/plugins/elementor/assets/js/element-manager-admin.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/element-manager-admin.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%nK8Ds=X', 'R6qNjgLpA{/eKIW\0', '', 0, '?'),
('.U	Y=', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h`VAf', '<\\G;1#kLà(փ', '', 0, '?'),
('TоR''{', 'wp-content/plugins/wordfence/lib/wfPersistenceController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfPersistenceController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`6w̫([_', 'nf>+0/Y訒WNVľ', '', 0, '?'),
('3̫"25zx', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/2.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/2.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>*G)¥~Ab>', '˔\ne"ji\\ܥ{9&!].~C~', '', 0, '?'),
('ɀwṴ', 'wp-content/plugins/elementor-pro/modules/loop-builder/widgets/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/widgets/base.php', 0, ')]HuƶҰ', ')]HuƶҰ', 'gq菎d4DHOo-n$s''', '', 0, '?'),
('q^MKe/P', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dot.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dot.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4-l}3', '`d,/,P:OKe', '', 0, '?'),
('5dhK=', 'wp-content/plugins/wordfence/js/admin.liveTraffic.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/admin.liveTraffic.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G#fox*ȍ:̩', 'S[z$	Rd!kVMJ.#@8', '', 0, '?'),
('ջZml4ˮU', 'wp-includes/images/smilies/simple-smile.png', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/simple-smile.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K{fwh', '?Yag\\<y0\0183Hg', '', 0, '?'),
('f=rQ', 'wp-content/plugins/elementor/assets/js/app-packages.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-packages.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OXA_(U', 'Z0HX?Nԛ8]o8{ڗk', '', 0, '?'),
('0\Z/1~', 'wp-includes/blocks/query-pagination/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~v,kg,\r', '2	OjX/loz*5{TD', '', 0, '?'),
('\r\0FJBe', 'wp-login.php', '/home/binawebp/omsrislb.my/wp-login.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a30lSD', 'P}*}7P猱q<lU.d3', '', 0, '?'),
('ɾ/1t1#', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/PrintNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/PrintNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EE$` 4', 'o]#t=Wvpd,65f1iSX', '', 0, '?'),
('׵(KB', 'wp-includes/js/codemirror/fakejshint.js', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/fakejshint.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5v,ROlx]J'')K', '-6$$;}ptO4]2ТR5֡', '', 0, '?'),
('/+mr', 'wp-content/plugins/elementor/core/breakpoints/breakpoint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/breakpoints/breakpoint.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '栜4+*\Z_u;{', 'I/s8ֽ _y\rյ', '', 0, '?'),
('5 <؏]Ԛ>u', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I}b~ LMQ', 'WVXHWrrt(<b)', '', 0, '?'),
('Elv7|eЬP', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DEh:gD', '\n\0n_\0*,zOsqG2ۓ', '', 0, '?'),
('HHĖsn.*0k', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p=@2ㄨr', 'n''+Щ6*Vk#|Zl0', '', 0, '?'),
('J0jYgh', 'wp-includes/js/tinymce/plugins/lists/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/lists/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '28:sw9J', ')b#4e*9(=QEe0|1\n', '', 0, '?'),
('LohX33', 'wp-content/plugins/elementor-pro/core/integrations/actions/action-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/action-base.php', 0, '`x9~Hc~=!', '`x9~Hc~=!', '2qr!]W|C=9W_4G/O', '', 0, '?'),
('Q_''B_t?~l', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-admin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-admin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J{FsuA(-', '=fuG8^\rѯnVi\r#', '', 0, '?'),
('[65+	n9', 'wp-admin/images/sort.gif', '/home/binawebp/omsrislb.my/wp-admin/images/sort.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '* 3', 'vP-~xO"	;', '', 0, '?'),
('`L\\3-i_3S\r', 'wp-includes/blocks/code/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mou$0b;}', 'L4n1IKi=@y62Oz=y6F', '', 0, '?'),
('c+%L4j+g9,s', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/regular.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/regular.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bnق1%K', 'f2݁H.LFU}<-s', '', 0, '?'),
('et**D\ZO', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-capabilities.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-capabilities.php', 0, 'l®7tѤ	', 'l®7tѤ	', '%\ro9C=E} dWG*', '', 0, '?'),
('fyħ*!', 'wp-admin/js/nav-menu.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/nav-menu.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3~}\Znm@c', '⑼{O\0B܀dwyIepf4ZY', '', 0, '?'),
('j\nO5yW֊', 'wp-content/plugins/elementskit-lite/core/config-list.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/config-list.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']>k', 'D\0ぜu\0*-II.ˈy	O*P', '', 0, '?'),
('ofAם(', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nJ!^\rY^&[c', 'Ώ$k[oBLZ@haWTe', '', 0, '?'),
('}9Dȟ<', 'wp-includes/assets/script-modules-packages.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-modules-packages.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gj\n1g4', 'olWo4|"85=#nRw	|q', '', 0, '?'),
('݄pLRc=(OD', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{ϓ$*vv', 'BO!fʞR;,Oi,', '', 0, '?'),
('݌6ͪ~65dmo', 'wp-content/plugins/code-snippets/js/utils/shortcodes.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/shortcodes.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`a`!Ӂ\nJq', '8	tj95m(zAg1(UeA', '', 0, '?'),
('ݖ''"|3_t|', 'wp-includes/class-wp-term.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-term.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0tvei/:', 'VGk<|<PS	5I_', '', 0, '?'),
('ݢ.al\rėxULi', 'wp-content/plugins/elementor/modules/home/transformations/filter-condition-introduction-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-condition-introduction-meta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u>F_鸩', ''']=ա<ysQ;>', '', 0, '?'),
('ݲg>:[tQV', 'wp-includes/blocks/query-title/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9-mCl-h', 'i)!nle#aniqla\nOX', '', 0, '?'),
('ݵiK#B]', 'wp-includes/blocks/term-description/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\no\Z*Xqe', '9ŤU$\\~{]t-m쐾', '', 0, '?'),
('ŕFT`>~', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'We)J2zRץc', 'Ҽyel4Atn^[iAmb', '', 0, '?'),
('8:&v[_)', 'wp-content/plugins/elementor/core/settings/page/model.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/page/model.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tOx/Bj', 'QJOmt1^,E>&o^', '', 0, '?'),
('ЖY$b+i', 'wp-content/plugins/elementor/modules/history/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+gVR-', 'V|@S󖃴X%c`0AN1\Z5^', '', 0, '?'),
('4', 'wp-includes/blocks/media-text/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4atZ)C', ' ''60;p\r(tA.|-p&', '', 0, '?'),
('\0b21?:', 'wp-includes/js/dist/core-commands.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-commands.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ղԋ\r', 'n(s\Z\nx\\gb/n<z#6', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('!zHT۰', 'wp-includes/js/dist/router.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/router.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U[	m/', 'B8K,z`+\0m5:~G*', '', 0, '?'),
('.\0;hP', 'wp-content/plugins/elementskit-lite/core/build-modules.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/build-modules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`ðʆM?', '{5ħ#c7c~=%t(K', '', 0, '?'),
('oR\n\0ȓṔ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_elixir.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_elixir.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rl3zR/[#', 'J/$6{֌=Qj+[2!2\\', '', 0, '?'),
('''|?>', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LaDJ?Z', '=F==<_%=M?u/', '', 0, '?'),
('k"EpD', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jG2KmjPc', '%#W8;*6oǱęe"U-V', '', 0, '?'),
('犆L3||sjDˎ', 'wp-content/plugins/elementor-pro/core/app/assets/js/ui/connect-button.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/ui/connect-button.js', 0, '	UηM|ٱ', '	UηM|ٱ', '{a{ִ޼''3$@ܑ>`a)', '', 0, '?'),
('!DԛQ>R', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/RemPro.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/RemPro.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+o#?e', 'EXҬ#{|\rӆE%@$HJ', '', 0, '?'),
('2;,t=D^]', 'wp-content/plugins/elementor/core/isolation/plugin-status-adapter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/plugin-status-adapter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C?I\ru]OWaN', 'x}QZv{V %a	Ղ', '', 0, '?'),
('	FE)', 'wp-includes/blocks/comments.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '</6x!k', ':S*B\0닇`U/	s\0DSM0-#{', '', 0, '?'),
('R:s+x', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/CreateDefinitionHelper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/CreateDefinitionHelper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-+(<m', 'SNaWMiG<\n0', '', 0, '?'),
('HC)C', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yK\nu@x', 'Aݶ݁;_|sȤ4_)zaKQEe!', '', 0, '?'),
('	@O=	)\\ي{', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Page.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Page.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'أXA60', '+q)Xġi%)CR0k', '', 0, '?'),
('*Kh05(	lK', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7O6s}Y%', 'C`\\x/zK0{ĿP#s$U', '', 0, '?'),
('QB鰒".R', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IncludeTokenParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IncludeTokenParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q꺩F^9{BNDC', '&h̑Y;5t2Pyy', '', 0, '?'),
('pխ^@#Ԓ', 'wp-content/plugins/wordfence/views/scanner/scan-progress.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-progress.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b1{	@m90', 'KM$)+SCQF1qZTv`r', '', 0, '?'),
('"pNW"u,E', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-crimson_editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-crimson_editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'abuWUĨ', 'NV<D\\@W]uF_bDV%;', '', 0, '?'),
('#BȂ{f9I', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/verilog.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/verilog.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	j4+MQ', 'uPp<v=Ժ/P\n`q', '', 0, '?'),
('/*NWP', 'wp-content/plugins/elementor/assets/css/frontend-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@hTvu[', 'ߟ0icYHz', '', 0, '?'),
('3^PMYHD', 'wp-includes/js/tinymce/skins/wordpress/images/video.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/video.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '¶B=\rz3j', 'iI/=MMX:MApv\r', '', 0, '?'),
('5foޮ', 'wp-admin/includes/class-wp-privacy-policy-content.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-policy-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')on_Yy̼B߼', '&䳪z3܍pxzͿ', '', 0, '?'),
('>ǇswF', 'wp-content/plugins/code-snippets/dist/editor-themes/gruvbox-dark.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/gruvbox-dark.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A,ݎ3LVUr', 'L*LV	q,zaak~:I4Ӆ', '', 0, '?'),
('BU+(WZ', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-typography.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-typography.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X\r[^=:˃Ȁ', 'be_!v\Zj}Vz	%J7', '', 0, '?'),
('I[5F?=', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[WkgA\0᳨5', 'kl!=R"Nou\Zi:Z', '', 0, '?'),
('N\\|`*,)@4', 'wp-includes/images/xit-2x.gif', '/home/binawebp/omsrislb.my/wp-includes/images/xit-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӂu:@4\rz<5', 'S\r}@~Q:Sc*d+Z_{R', '', 0, '?'),
('Xr/D}eB0K', 'wp-includes/css/dist/patterns/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oi+Zq::', ':3}-\r)\rKtzIyfpr3', '', 0, '?'),
('b|?~,G3', 'wp-content/plugins/elementor/assets/js/packages/query/query.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':ǭNŞt', '90b񕄗V//MhFqo', '', 0, '?'),
('q1dᆾI', 'wp-content/plugins/wp-optimize/plugin.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/plugin.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LFM', '^:QZ*M|w[tJ	KHqd', '', 0, '?'),
('vsǾ₡|7', 'wp-includes/SimplePie/src/Cache.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F#%ؽAzTOG#', 'QOŎڝ7JZ0L2Ԏ%$', '', 0, '?'),
('wڋK7z,', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php_laravel_blade.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php_laravel_blade.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mQ9~p3O8$', 'F~ӑTq]wF.Af\0', '', 0, '?'),
('ޒ?IΩi%gy', 'wp-content/plugins/wordfence/lib/menu_dashboard_options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_dashboard_options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L7,4/_+DU{', 'o>I\0zhFTތ@{F@pl', '', 0, '?'),
('ޚꧭ߅"gс<Nr', 'wp-includes/blocks/text-columns/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w`}N\nX', 't!l`|*^0	l$C;', '', 0, '?'),
('ޠ(I!f', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csharp.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csharp.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wWbOӵTw', 'p"Kp)AfU>Rk''M:\ZT6', '', 0, '?'),
('ޠqDb,', 'wp-includes/blocks/paragraph/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's9\n}	q¾', 'Ŕl~%"Q ^Db\\', '', 0, '?'),
('1mTkh', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MF50	1nV[', '5M+m:o-\\6չOC\\Nso1oJ.', '', 0, '?'),
('C扑1̷N', 'wp-content/plugins/elementor/assets/js/app-packages.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-packages.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r{UɅw;', 'F|mr\rUE~gjR/Oo4A', '', 0, '?'),
('	k\r', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/div-block/div-block.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/div-block/div-block.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WA,ACۯ', '*f''Ί]|dތ.', '', 0, '?'),
(')yEWÆ', 'wp-content/plugins/elementskit-lite/libs/stories/stories.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/stories/stories.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ECZ/', 'ojN&Xޑgʔjn5X:7', '', 0, '?'),
('+QVznD\Z0', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Environment.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Environment.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{TxB-\0, ', 'psO3LMf($', '', 0, '?'),
('CZ[}"\rj4', 'wp-includes/js/dist/vendor/regenerator-runtime.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/regenerator-runtime.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"$}&Sfx', '龑v4XKG:*9Z /w\r$', '', 0, '?'),
('\nk}\r''FԪ', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AK\0s', 'yҠUU@m r 5r', '', 0, '?'),
('\rN-/Ƥ2.', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_25_e1f0f5_1x400.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_25_e1f0f5_1x400.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K~y1gƨ-ǭ', 'pT4ڠtN \09^vH', '', 0, '?'),
('"c)j"', 'wp-includes/js/wplink.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wplink.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Jj4#', 'juQ،KpT%\\љ(D1~*a	', '', 0, '?'),
('|\0F]<&', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/automatic-upgrader-skin-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/automatic-upgrader-skin-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɼUŬ)@', ';BYB`z''i	hIv}jG', '', 0, '?'),
(' C|䩮|":', 'wp-content/plugins/elementor/assets/css/conditionals/lightbox.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/lightbox.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>\\yF4my', '(6dE\nRtrF/	f4C', '', 0, '?'),
('&n7,H{GA2', 'wp-includes/sodium_compat/src/Core/AES/Expanded.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES/Expanded.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&EWxG6?', 'ui~H8MQ5W6', '', 0, '?'),
('2UL}]/fv', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q;M°%''U', 'g\0gFN`R(C.86f)]', '', 0, '?'),
(';Ol6ԙN[', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-meta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-meta.php', 0, '/aKA''|5t\0', '/aKA''|5t\0', 'iΨ%>B~N֎jl/ٹ', '', 0, '?'),
('=@\\JpQm\\6', 'wp-admin/includes/class-wp-upgrader-skin.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-upgrader-skin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Q+>;_4q', 'F\rE&x(k&͕mkix{&.q<', '', 0, '?'),
('=ODVn{', 'wp-content/cache/wpo-cache/omsrislb.my/about/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/about/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('D"P$\n{(', 'wp-content/plugins/code-snippets/dist/editor-themes/moxer.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/moxer.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ttcp@൧', ')AR.0KD\rW/}h$J(I', '', 0, '?'),
('L#aW ', 'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WNOoSR', ';׽@FZ$@Kxo!Lǵa', '', 0, '?'),
('L%FХUKKUyG', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-chosen.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-chosen.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R^k"@~M-', 'ȅ^sK>/(ik\n.od ', '', 0, '?'),
('LRi(E3X8&rI', 'wp-content/plugins/elementskit-lite/libs/framework/views/layout-settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/layout-settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yod,<yjd/', 'RnɕxY5Q>rKw ', '', 0, '?'),
('LmQGԃcvȍ6', 'wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '殎o:mQ''', ';QˑYUu|bXF', '', 0, '?'),
('NAnsbg', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/disable.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/disable.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mд\Z3L\0Ajv', 'bאּˮk\Zp', '', 0, '?'),
('U]m^:K', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-server-information.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-server-information.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=YY.׍', 'Wym@T6JPEJm''PF', '', 0, '?'),
('`h37RC?R ', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0N[,x`2S\n', 'fEc6G%i~Il', '', 0, '?'),
('bz/T7aHy', 'wp-includes/js/mediaelement/mejs-controls.svg', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mejs-controls.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^yq+S%y', 'hA3L:''1ꁠ\\', '', 0, '?'),
('q%ű m+', 'wp-admin/css/colors/light/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']h[-pTw3', 'ήe;^%/%^5ſO"', '', 0, '?'),
('zNior#(', 'wp-content/plugins/elementor/core/settings/editor-preferences/model.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/editor-preferences/model.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ô\0#x)%6i', 'Ryw˺M`\rȖSʣ', '', 0, '?'),
('ߌ(2', 'wp-includes/js/quicktags.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/quicktags.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɗLK/W', 'AV1ʾFe4,ų5e\Z', '', 0, '?'),
('ߔO(1\r).', 'wp-content/plugins/elementor/modules/home/classes/transformations-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/classes/transformations-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gQ\r&>R', '/ĶB$0''ƛs[RΝij', '', 0, '?'),
('ߔHu&', 'wp-includes/js/plupload/plupload.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/plupload.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݠ$pZR>''|', '"8[J%.˚cV\r\rE)''', '', 0, '?'),
('ߗQu!ٶx[', 'wp-includes/js/wpdialog.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wpdialog.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%EW@', '&C%(B\Zt]h˾3', '', 0, '?'),
('ߝ$GV\r\\', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.murI1G', 'Lr7D@yɂ]NK(tiG9Tm=', '', 0, '?'),
('ߧ}eTu&', 'wp-content/plugins/elementor-pro/modules/forms/fields/number.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/number.php', 0, '[p"9O=', '[p"9O=', 'oǀ$4d|\0}@7\Z)ea''y:', '', 0, '?'),
('߰Sh[۳', 'wp-includes/class-wp-http-streams.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-streams.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>,Q1(^=', '¡\\Í\Z降H\ZoͦFNȡ', '', 0, '?'),
('߲)[Y3?', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V\\"顋z[', 'Ee5&"Ǜ\n)3&5K3XPq', '', 0, '?'),
('ߴS8AТ', 'wp-includes/js/jquery/ui/autocomplete.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/autocomplete.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm!l6!#*7ʘ', ':FOٵHΙ[GkVܫ|q7#', '', 0, '?'),
('߶=''ۂcgn', 'wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`At]@.tga"', '|\\{U&]WHdLawB ', '', 0, '?'),
('߹V="#n	', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_-T\02L-', 'ȴgA]z-ۣ᷸[', '', 0, '?'),
('߻MD|*cWJ', 'wp-content/plugins/elementor-pro/assets/js/form.1161490412c4fa9ebfc6.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form.1161490412c4fa9ebfc6.bundle.js', 0, '.,WYI"', '.,WYI"', 'j{w4$Ge>inO٨', '', 0, '?'),
('fyڸyYnC', 'wp-includes/style-engine/class-wp-style-engine-css-rules-store.php', '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5"uqxm4', '[;"!d`mg0ć', '', 0, '?'),
('ĵ>#Bb', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ۓGc,=c^', 'Gct(5\n,9%)e', '', 0, '?'),
('Ȧ0 $7O>', 'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o*24X\0]E', '\n.v.P^hxε+cOYY', '', 0, '?'),
('Yvz֗*9a', 'wp-includes/js/jquery/ui/tooltip.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tooltip.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']#1D.{', '6vV>o>,k;)r4e', '', 0, '?'),
('e\n*v', 'wp-includes/blocks/comments/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '00ԳPCȆE{?', 'yFXm_y)/<&carU!\rGw\n', '', 0, '?'),
('~$ojcE', 'wp-includes/blocks/accordion-heading/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z(&Dwh@mɊ', 'ovXJizU$#nǊp^0;', '', 0, '?'),
('-w=S', 'wp-includes/css/dist/edit-widgets/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6{J}s', '$/48Z+b\ZMGH&_[l	', '', 0, '?'),
('+mk#.f@', 'wp-includes/blocks/query-total.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.j3(!\\g', '#dXq\\\rlm{B\0F', '', 0, '?'),
('4FNE*', 'wp-content/plugins/code-snippets/js/services/manage/priority.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/priority.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''T\0mT/4(', 'R\r mDqk)I1h*2', '', 0, '?'),
('(g+0~Fq', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions.js', 0, '֘?t.>+ԕ)', '֘?t.>+ԕ)', 'E/nf4F]ZOuZ KaAZB6:=', '', 0, '?'),
(':麃Hy', 'wp-includes/js/dist/vendor/wp-polyfill-inert.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-inert.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l٠52*ʞ', 's\ruu''mF^<xp\0(.qo', '', 0, '?'),
('\ZtUR\r"C', 'wp-includes/blocks/avatar/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';ʘ_?n', '5Ђiv;lJMIp', '', 0, '?'),
('mZ}5ȅ''', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pQSXDLջc', 'PZ!l?dJ+Iךw\nMgZhDe9', '', 0, '?'),
('#g6{Zie*', 'wp-content/plugins/code-snippets/js/edit.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/edit.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?/B~OHL', 'ykRQHO܋ae;!', '', 0, '?'),
('%f\\+,\0\\Y', 'wp-admin/includes/class-wp-filesystem-base.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xdh{4;$P', 'K(RyUpl{{A5Z', '', 0, '?'),
('*''Kj̰!c', 'wp-content/plugins/wordfence/waf/pomo/plural-forms.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/plural-forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P!7GǊq`.', '.\n)[.cf\r\rFZk', '', 0, '?'),
(',s\04<oz', 'wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-&fB', 'gd\n,,u,]z:(I&H', '', 0, '?'),
('B	jÜ', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I6r\\3Э;', 'ۉlq,0w՚EYKVˑUo2', '', 0, '?'),
('H錄8fVn', 'wp-content/plugins/elementor/data/base/processor/after.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/processor/after.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nA<Qc', 'ux1aPFOIG]5p^A''T', '', 0, '?'),
('O*Ҟ9;', 'wp-includes/blocks/embed/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AgL/Оg\n', 't#`B!I~{^!y|oâF', '', 0, '?'),
('U\Z	oU,δ', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/exceptions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/exceptions.php', 0, '[\\Gh9陜i', '[\\Gh9陜i', '.>Z7DkG*녧hǶTG', '', 0, '?'),
('XLtCc-', 'wp-includes/blocks/query/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B8CЌPA5', 'p	G"9<VɏNŌ\\', '', 0, '?'),
('Z^rD', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products-deprecated.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products-deprecated.php', 0, 'dAp=@!\r', 'dAp=@!\r', 'u_N,q.56$Io@[т~.', '', 0, '?'),
('\\1݃%VE|<N', 'wp-content/plugins/wordfence/modules/login-security/img/loading.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/loading.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K:m𙗣P', 'j*edoX~7&N9|L', '', 0, '?'),
('\\BM>*f', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@k~YV3U', '@\r)wR W\rJf"SDkۈ0', '', 0, '?'),
('`oΰ@ߔj', 'wp-content/plugins/wordfence/lib/menu_tools_auditlog.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_auditlog.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eHUƙ$|<0', 'F/>Xǌ7R0R`Voތ', '', 0, '?'),
('k/ZVb[jdNK', 'wp-content/plugins/elementor/data/base/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Szh	р', 'eWR;xEGA7*.W]\\', '', 0, '?'),
('k0\\9h', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsByTagName.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsByTagName.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X9G+@6\\', 'mJ={L<	p\\\rOނQ.֚', '', 0, '?'),
('i4ZlЃ @', 'wp-includes/css/dist/block-editor/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K,Wuyk>A', '={2w(ȂxD@uZ?{', '', 0, '?'),
('XXx!PrK1', 'wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager-commands.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager-commands.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɲsD]V *', 'XKw~zSx3yT8B\r', '', 0, '?'),
('#،A9', 'wp-content/plugins/code-snippets/css/settings.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/settings.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"f4o/-<', 'D:+ԥ(x?*v@xji(0M{z}', '', 0, '?'),
('&s-D)y7', 'wp-content/plugins/elementor/modules/ai/site-planner-connect/view.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/site-planner-connect/view.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/}xzs|^^|', '_^,:%|[k0{v&|.', '', 0, '?'),
('rMܴ-\nS', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'eRr#U犏', 'sGdlIB-?`7|rR3V', '', 0, '?'),
('telR7', 'wp-includes/class-wp-exception.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`<-egf3!', '4eVni4-ؠD|Qt}z', '', 0, '?'),
(':mq؊1\n', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w%\r?', '\0.䂪QiIfՎI`MJ', '', 0, '?'),
('ȕкDj', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ֹD\Z6NIx@', 'DT"x%Bx\ZeoP՚GܥX1', '', 0, '?'),
('ӉxZG֯X', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.99000844c609182f2303.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.99000844c609182f2303.bundle.min.js', 0, '{xޞlrZc', '{xޞlrZc', '2\Z!pp#CŃaLQC\r:Ƞ)F', '', 0, '?'),
('''2~ ', 'wp-content/plugins/elementor-pro/modules/woocommerce/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/module.php', 0, '_{Aca~u;', '_{Aca~u;', 'wjrt2(n-7\nOۑ u&', '', 0, '?'),
('H3~', 'wp-content/plugins/elementor/core/editor/loader/v1/templates/editor-body-v1-view.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v1/templates/editor-body-v1-view.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9S`(F^', '\0<I>AJu_a` 46ъ', '', 0, '?'),
('^x.wa$*', 'wp-content/plugins/elementor/data/v2/base/exceptions/data-exception.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/data-exception.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߃X{iV7@2K', 'pa%bso\\vB̄;?ōwٺڏ', '', 0, '?'),
('}ѭl[ۂtRs', 'wp-content/plugins/elementor/modules/element-manager/admin-menu-app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/admin-menu-app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ּt1MR', '~y7oB&UV;^!W', '', 0, '?'),
('%xz:"yKj0', 'wp-content/plugins/elementor/core/upgrade/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ek2]_ք-f', 'αZL^?L϶NΎQ', '', 0, '?'),
('FN6};ƮD', 'wp-content/plugins/elementor/modules/dynamic-tags/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/dynamic-tags/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',wChň|''kEn', '8,;?Im$m\\_,i~7', '', 0, '?'),
('^bRSI!?', 'wp-includes/class-wp-image-editor-imagick.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-image-editor-imagick.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fniPXR', 's\0 <n\rF?s>;u<cEr?', '', 0, '?'),
('sk6/н', 'wp-content/plugins/wordfence/lib/wfSupportController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfSupportController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J29DK', '}F͔:.b͚@W׸"On', '', 0, '?'),
('"\Zca<*', 'wp-content/plugins/elementor/includes/controls/heading.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/heading.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̓+@>', 'FBZ^|P''Z2y}	', '', 0, '?'),
('<r&', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sh.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sh.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ύfm', 'jzc1e}÷lt*W', '', 0, '?'),
('@M]"iNJ', 'wp-includes/class-wp-http-requests-hooks.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-requests-hooks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#X-tн', '2:(@''V){\0b;f_w', '', 0, '?'),
('TNS!J', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ľσ^cP', '΍47z񷯪h<bF`', '', 0, '?'),
('T~p)K=', 'wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.\rȯÉZÊs9j', 'PU9#2#@7ŔgD$"3', '', 0, '?'),
('TT9ܰ\nj~', 'wp-includes/blocks/query.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gigj ', 'oqKQ{{	[?pe$B<', '', 0, '?'),
('Z(>(1bޫZ', 'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lo7r79wAUE', 'EP[xv1i0h;^J', '', 0, '?'),
('\\m]I{B]', 'wp-content/plugins/wordfence/images/icons/check-premium.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check-premium.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߇`ީ:\rN', '&y$fDz9ͧ|VqV', '', 0, '?'),
('\\$IH', 'wp-includes/js/jquery/jquery.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'n~*rO|', 'ix\nc .h''.syo', '', 0, '?'),
('e:֬p6', 'wp-includes/js/dist/vendor/wp-polyfill.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z>B֤ߗGQ', '(3\ZâxlǨQM_s', '', 0, '?'),
('q@/ꦑٞ-M', 'wp-admin/network/site-users.php', '/home/binawebp/omsrislb.my/wp-admin/network/site-users.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P= (', '23	fL;u{N34m', '', 0, '?'),
('2$==CYK', 'wp-content/plugins/elementor-pro/data/base/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/data/base/controller.php', 0, '^Mgt|1H*3', '^Mgt|1H*3', '\0^0͘crW֦+d.xl/', '', 0, '?'),
('mc', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e6FLGF', 'M9LD}bi<Y\\IT:<%6U$!V', '', 0, '?'),
('ᕵ7\\F|[El', 'wp-includes/sodium_compat/src/Core/Curve25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wp)m%7V`GЌ', '~j*Y-R땱gH(m;qqaW\rSb', '', 0, '?'),
('a0P@a\\x-', 'wp-includes/blocks/social-link/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&VuYf\rXCuz', '<^;ܕ"M,gYJEYv!S"', '', 0, '?'),
('>\n5Z', 'wp-includes/customize/class-wp-customize-image-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-image-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jf	˥^К', '\nu8\rYY:\nVk.aGGoM', '', 0, '?'),
('pK9Y=|', 'wp-content/plugins/elementor/includes/controls/alert.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/alert.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0qo.x3', 'mvm_ehX;', '', 0, '?'),
('L1.-yn', 'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F˳W', 'O19VxUEC iAcܞ\ZOB', '', 0, '?'),
('\0-sY@', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_Љʓe>\r', 'xѥkCʨy3IݧYv\ZZ@@$', '', 0, '?'),
('vQ26EnVH', 'wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':9Nɹ$Pz\\,', 'ovupQp^.+\nuO.i,l', '', 0, '?'),
(';DthEG>H', 'wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ΓjNy8', 'UAMV\nPWkxu		/=', '', 0, '?'),
('dr΋j''YR', 'wp-content/plugins/elementor-pro/modules/pricing/widgets/price-table.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/pricing/widgets/price-table.php', 0, '"ܼ+rio', '"ܼ+rio', 'KwSV?U"j%;augw``', '', 0, '?'),
('}ڿ7i&=*', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M1snU|4MA', ')ӊA/_Skj\r%CLZP`"tw', '', 0, '?'),
('ᾓH+}ZV', 'wp-content/cache/wpo-cache/omsrislb.my/contact/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/contact/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('ßK۴quu', 'wp-content/plugins/elementor/modules/atomic-widgets/image/placeholder-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/image/placeholder-image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2bL\nLM:', 'BĈ8#aj XS~oX($V', '', 0, '?'),
('`^fSDGI.''w', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/comments.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/comments.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pʕ[dV@', '`Kh#\0-$A#w\Z|=*>N9P', '', 0, '?'),
('ȟx^$\0xn', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-1.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-1.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*V,ϖc', 'h<nkAҡ:ߜaåwF', '', 0, '?'),
('m|yb', 'wp-includes/class-wp-recovery-mode-email-service.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-email-service.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BƩg%}wr', '#\n`ApYǻGagD', '', 0, '?'),
('j,*\n', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-array-sorter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-array-sorter.php', 0, '+2X;_!_x', '+2X;_!_x', 'TrSeo6~]SDL8JfD', '', 0, '?'),
('i4|?', 'wp-includes/blocks/details/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm*cavSGbɦ', '΁})?un4;[lwڜ=', '', 0, '?'),
('ݯ4,yZU', 'wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uNfm,x=', '"0FqItCn?DKĵwsS`>', '', 0, '?'),
('"C*.', 'wp-content/plugins/wordfence/vendor/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E"xK{8dS', 'C''r9@Kކtw#@k', '', 0, '?'),
('2FP;bo', 'wp-content/plugins/wp-optimize/includes/class-wpo-uninstall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-uninstall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Xuk', '\0hͿ#wnv\\［', '', 0, '?'),
('\\9ã>Iz4c', 'wp-includes/js/tinymce/plugins/hr/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/hr/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k+%5l3!-', '2`RiL#e؄46gpo~', '', 0, '?'),
('L`R`ו*', 'wp-content/plugins/elementor/includes/widgets/image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p|1䆆', 'k~\nJsJѤa^):7C1SlP', '', 0, '?'),
('[NXw}uZn', 'wp-content/plugins/elementor-pro/modules/payments/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/module.php', 0, '^!p$1ISsU', '^!p$1ISsU', ':DO{܂eZCd', '', 0, '?'),
('BKAa<l2', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XߓŒ"X36DQ', '!l..GI\n7oeѿ'';I\n\n', '', 0, '?'),
('EK>Bm/1i', 'wp-includes/Requests/src/Exception/Transport.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Transport.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hax', '7C\rX\Z<w=,8rww{cm[M0D', '', 0, '?'),
('\ZL[U''V', 'wp-content/plugins/wordfence/js/wfselect2.min.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfselect2.min.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ġ ǧ^t,g', ' uV nhCPH]8*)G`.r', '', 0, '?'),
('$|F<eԱ]', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-preloader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-preloader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7"n,(.y', 'CEИO!ގ!+\riٽ9x', '', 0, '?'),
('''/O\n^ U" ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm֖nw[R', '6iMDPk''l\0bkXxiz:L''zP9i', '', 0, '?'),
('3Imo[F', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{J!u?}s', 'Aũ`97}b>MHJHh|Fj', '', 0, '?'),
('<17>wN=', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZZ1=r', 'DX9F奩J|%נs鶖`4', '', 0, '?'),
('>#L \nX''x', 'wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0Dq@THx\n', 'eIB4Vu0EHy-Я%', '', 0, '?'),
('L>ٟ#{6p}Y', 'wp-admin/options-writing.php', '/home/binawebp/omsrislb.my/wp-admin/options-writing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}>;LYMQZ!', '6\0|q+t<*Y[uY~2N\\t', '', 0, '?'),
('U6υsd~x', 'wp-includes/sodium_compat/src/Core32/XChaCha20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/XChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y%RSTY', '`-J\0P#M"&o', '', 0, '?'),
('VVF=/Q(q''3', 'wp-content/plugins/elementor/includes/controls/code.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/code.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':NHC%Wֈ', ';erp,nNoؔ^~I', '', 0, '?'),
('V:A*SNAU', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coffee.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coffee.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a\ZPcY', 'Ŗ<+ _e籥Z5>HRs', '', 0, '?'),
('XzL%E+', 'wp-content/plugins/code-snippets/php/admin-menus/class-import-menu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-import-menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W]1sG|', '(%BrUV#uEu\0궶򐷛Gx', '', 0, '?'),
('^}R	V7{WI\rH', 'wp-includes/blocks/search.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/search.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J,SiRxV', ';`Flg!niFm72e]q', '', 0, '?'),
('sS%jT', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-cards.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-cards.php', 0, 'Mȉ`EtGRI', 'Mȉ`EtGRI', 'A\0\rL3"×#(?uTm', '', 0, '?'),
('y0H#;e\n"+', 'wp-includes/js/dist/server-side-render.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/server-side-render.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{U}kk}{8/', '!I1U7]Wu6E2z+J]]s', '', 0, '?'),
('y-C+Gڴ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c9search.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c9search.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YYNHFBڇ:t', 'ѕA''lmN$;qni\\', '', 0, '?'),
('{\\n&U4{=', 'wp-content/plugins/wp-optimize/templates/settings/settings.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '뱎$a9(]qG', '/[{?NÞYCh!U', '', 0, '?'),
('B|D', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W&hE5Ox', '1\r*h\\BoB}_XD7', '', 0, '?'),
('☑nP.\Z,', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions.js', 0, 'i!D\n.R8', 'i!D\n.R8', 'K4JIᶖnYKM܍ܣD.!dP', '', 0, '?'),
('/\n\\"S', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpstan.neon', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpstan.neon', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '痉eް+', 'rf yGB\\QPD}<,k޹', '', 0, '?'),
('⨄\Z>Ǹ(', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/7.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/7.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ٗٔ4''ڳ7/T2', 'OX;ٌ9$s	(~ZJ', '', 0, '?'),
('Za9Uzն', 'wp-includes/class-wp-date-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-date-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VxNlf~3K', 'a2{MrWɭ&v', '', 0, '?'),
(':\njKn\ne{', 'wp-content/plugins/code-snippets/js/services/settings/index.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/settings/index.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AZou', 'tJ}c歸f&+KVt2', '', 0, '?'),
('&+=[?b!', 'wp-content/plugins/elementor/assets/css/widget-social-icons.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`}Po;', '`ݑn	@\nbc8?', '', 0, '?'),
('$K\Z', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FunctionExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FunctionExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rɺ#z2', '椗83y@CmIi+K\\:AS7', '', 0, '?'),
('-PF?:', 'wp-includes/blocks/comments/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5T	Ť̉}U', 'v̀WH?\ZDgx"HͤkZj', '', 0, '?'),
('!jG4e#o', 'wp-content/plugins/elementor-pro/modules/query-control/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/module.php', 0, '!kh<]Eb/', '!kh<]Eb/', '\\`I?UUiWv2UhŜ?瓗B7;', '', 0, '?'),
('I,_[QȮ\0', 'wp-content/plugins/elementor/includes/editor-assets-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-assets-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dNm33c=2e', '*\nIK[2\\ 	Wܒ`\Z', '', 0, '?'),
('t|\ry\0o', 'wp-content/plugins/elementor/modules/system-info/reporters/user.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/user.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SQkE2(', '񔴩KE6h콖d6\nS)3obn', '', 0, '?'),
('ĸ:,p1Hr', 'wp-admin/js/dashboard.js', '/home/binawebp/omsrislb.my/wp-admin/js/dashboard.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0u\0FR,()', 'b4<K%ۋq^\0F8<*R', '', 0, '?'),
(',U_p$', 'wp-content/plugins/elementor/core/editor/data/globals/controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K9ït', 'f?`$%$=g-w7$r', '', 0, '?'),
('\n{qU\ZK', 'wp-content/plugins/wordfence/css/license/care.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/care.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h*,<Suv', 'a-"ZL?$Znٖ-{-z`v', '', 0, '?'),
('\0וoxi3%\r+]kg', 'wp-admin/images/post-formats.png', '/home/binawebp/omsrislb.my/wp-admin/images/post-formats.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K\0%3', '9ƺ&]nEua]iFƳ', '', 0, '?'),
('LoL=', 'wp-content/plugins/code-snippets/dist/editor-themes/material-palenight.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material-palenight.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u4x9Qr', '!nqU`\ZI]\\X4', '', 0, '?'),
('ISLȲq(', 'wp-content/plugins/elementor/core/upgrade/custom-tasks.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/custom-tasks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '⚸8V!59', '-RZ>jGB9pl7kX&', '', 0, '?'),
('x\\5nW\n', 'wp-includes/blocks/embed/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/P\\A8X', '0EHCg\\,1m#5}', '', 0, '?'),
('Q$&^Jv\n', 'wp-content/plugins/elementor/assets/js/container.0754914e4611dc659a50.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container.0754914e4611dc659a50.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '҇sJ|@a>', 'sw\n%9rs\ZbeF', '', 0, '?'),
('0;-,AEy', 'wp-includes/theme-compat/sidebar.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/sidebar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\t', '1=UgPvX3a@b%o\\''', '', 0, '?'),
('7ՋM\Z/ɹwors', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bXQ#D', '2asÖPZ	P8%蛠H', '', 0, '?'),
('B"^I\nhƜ', 'wp-includes/js/dist/dom.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p(?', 'b\ZObSh\\-D7''X,3ogv7', '', 0, '?'),
('Y"~!YsMm', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vhdl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vhdl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lC9Ќ+-', 'i+\nυy`≩ĝA/ZYZr', '', 0, '?'),
('YКqK.3hҦ', 'wp-includes/blocks/footnotes/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '# q7@vޑ', 'i	`"TB]-Ywf],q', '', 0, '?'),
('aOj''ŻD*ցV4', 'wp-cron.php', '/home/binawebp/omsrislb.my/wp-cron.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+_ilƢ.9D', 'okw"<%a°~&{F*("', '', 0, '?'),
('bal4拲N', 'wp-content/plugins/elementor/includes/controls/url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/url.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!3ΗHD16', 'Kl5U\r+I%7cb2''u,', '', 0, '?'),
('m5^u9>', 'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '30ph', '܈yl(OW\Zjp+ɜ', '', 0, '?'),
('sW7H', 'wp-content/plugins/elementor/core/utils/plugins-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/plugins-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':h6HQ''.OjU', ',m|HjxlpKs(eą gG7', '', 0, '?'),
('#'' ~/zF', 'wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jҫ%e\0ϻ', '-ߟ&(:4h??Or`sHh', '', 0, '?'),
('\0(}!{ɒ', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-installer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-installer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B=Oub', 'H4*y\0vd_0C<VRcP7\0y', '', 0, '?'),
('e\\kcXf', 'wp-includes/customize/class-wp-customize-upload-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-upload-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ؓB8?)ivr`-', '~t~X% K/3-n6\0RB֨G', '', 0, '?'),
('Rs{p~gЁؑ', 'wp-includes/css/dist/reusable-blocks/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pEG.7Qm#', '14)\rEujV܏kv}z', '', 0, '?'),
('\0£s''t', 'wp-content/plugins/elementor-pro/modules/notes/notifications/user-replied-notification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/user-replied-notification.php', 0, 'h*ݍ݇粐', 'h*ݍ݇粐', '~":H_fC2\\d&ÄnM1k#', '', 0, '?'),
('r+iL\0{=N', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zk_ug2', 'u.T	G\\!S٤Ľd', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('q82v&#M', 'wp-includes/js/tinymce/plugins/wpview/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpview/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j5qS\rXi', 'Ej\Z\ZI3JGjVݒ6<S9P', '', 0, '?'),
('H%,', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|%;wQ8@', 'wi>6Ƭ4.NC\Z4IO', '', 0, '?'),
('<kUJv%1', 'wp-includes/fonts/dashicons.ttf', '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.ttf', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7|Z', 'DD+vehs>ZfovW~,=', '', 0, '?'),
('>/NγN', 'wp-content/plugins/elementor-pro/assets/js/archive-posts.2d3a4fa58002c7735240.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/archive-posts.2d3a4fa58002c7735240.bundle.js', 0, 'ԕ=CW\0x', 'ԕ=CW\0x', 'bf]ҹf/Ѯ&11', '', 0, '?'),
('ho1uMB3', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/InvocationException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/InvocationException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7-nŞj>', '*,eC*NTxm2$"& 8&BD', '', 0, '?'),
('AhdI', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-praat.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-praat.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AohhN,', '@K6)d(k&?ríV	', '', 0, '?'),
('`c@3vz', 'wp-includes/blocks/legacy-widget.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/legacy-widget.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"eu1''yQlS', 'oD^7f)N8j:l16RzLb', '', 0, '?'),
('TwTtKx', 'wp-content/plugins/wordfence/js/wfi18n.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfi18n.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i&XDEp/N', 'GU	*kP,:?+}xHb5#', '', 0, '?'),
('zeߛY', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dFI', 'GzVQԹʊ.,3-ٕ[', '', 0, '?'),
('#iJH?@', 'wp-includes/class-wp-http-curl.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-curl.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9(pvl(''', '\r٨^,2uc|ES\rJIEXR', '', 0, '?'),
('wV!', 'wp-admin/includes/class-wp-ms-themes-list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ms-themes-list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o8ϰnEX', 'oj̙fޚlU`)D(8Jb?', '', 0, '?'),
('\ZK^\n', 'wp-includes/blocks/image/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[FYNdfqf\r', 'ڣaJfldMJ}ŀJdP', '', 0, '?'),
('!ϋQn/a;', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/_TE@', '5rAg=xpup03tԹW\n', '', 0, '?'),
(',*iVO1a\n3', 'wp-includes/blocks/post-featured-image/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_=Vi|Bf', 'j;0cHx	&ie3hHQR+iI', '', 0, '?'),
('=a](', 'wp-content/plugins/elementskit-lite/modules/widget-builder/api/common.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/api/common.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RZՆ݅', 'M1\rݐŽCoUx>cV2fi_', '', 0, '?'),
('EMp', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-full-content.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-full-content.php', 0, 'y{UjVl&(U_', 'y{UjVl&(U_', 'n\rF	j''h7\ZِA7J.~5', '', 0, '?'),
('G0('',"3', 'wp-content/plugins/elementor-pro/assets/js/screenshot.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/screenshot.js', 0, 'E[xS&FY6', 'E[xS&FY6', '$6fZ\ZmԄ6\nc@ KA%', '', 0, '?'),
('Vvo<\r_f', 'wp-content/plugins/elementor/assets/js/progress.3200f67fe8fb78924bea.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/progress.3200f67fe8fb78924bea.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A\nmKx-q \\', '^.M/WFc9', '', 0, '?'),
('WUP=W1T', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/logo-ekit.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/logo-ekit.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QRǿL\r', '\Z-:''^E8QCXaj:Yܙ', '', 0, '?'),
('\\/蝄Wn-\n 9', 'wp-includes/blocks/image/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']ΐkGƽG*', '-2bI#.Vc%3fƺ*', '', 0, '?'),
('jug-	w', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}߉އ76bAp', 'ˋ\r^I+23c0~`A1', '', 0, '?'),
('x<@5''؄sв60', 'wp-content/plugins/code-snippets/js/components/common/CopyToClipboardButton.tsx', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/common/CopyToClipboardButton.tsx', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~U`lqJ<O', '%+&G~>$2w}HbV', '', 0, '?'),
('z^}¤hh3\rw', 'wp-content/plugins/wordfence/images/options.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/options.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VѴA', 'D:bw#^4BKIP?	znV_', '', 0, '?'),
('zK[5rTfk', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImagickBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImagickBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ǝ''-ԯfF', '<Au3%dȦ*r7K', '', 0, '?'),
('}ʭBМr', 'wp-content/plugins/elementor/assets/svg-paths/arc.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/arc.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4"`Kl]Vr\\&4', '\n;xF#\\o3(~ٙV', '', 0, '?'),
('8VQFd', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tcl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tcl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ugl`5Xgys', 'R|ǘg<%g', '', 0, '?'),
('䆮G*~5HI', 'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fmvCI=wb־;', 'Lcc900p$ӥ', '', 0, '?'),
('(ϗs', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-markdown.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-markdown.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';(GW<Ty', 'S\Z-n+]oOtn?"A*[40', '', 0, '?'),
('53zln9X', 'wp-content/plugins/elementor-pro/core/app/assets/js/index.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/index.js', 0, '=Zt4m<)', '=Zt4m<)', '''FԮgZ)gxzq[Z\rl>Zom', '', 0, '?'),
('#lhJTl[X|', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/outertext.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/outertext.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c?0j!4\0k4', 'op?ZiNelԍ(|$:', '', 0, '?'),
('CɵߜyUjQѲ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('zSO\nw', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/StringOption.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/StringOption.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']1_5/.3	f6z', 'ScO9f8&S[|t', '', 0, '?'),
('zpKC{\\>', 'wp-admin/js/dashboard.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/dashboard.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ɏg]|{[T׆ ', ';Ґp^K6c%h87Z+u', '', 0, '?'),
('1]M|KFZ', 'wp-content/plugins/wordfence/lib/wfBulkCountries.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBulkCountries.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';]MT鮌=', 'B$	(Z-SX?Z} 2ǝk(25', '', 0, '?'),
('0وZ~@', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallback.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallback.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0\\83FwՔÉ+', '}Js%\Z\nnHwg|	c', '', 0, '?'),
('\00qĊNy)', 'wp-includes/plugin.php', '/home/binawebp/omsrislb.my/wp-includes/plugin.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W7|riǃZ', 'p#+GP2-ʌX', '', 0, '?'),
('>0!FZ', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/preview-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/preview-manager.php', 0, '}z:[', '}z:[', '! V:dDKLZJz,', '', 0, '?'),
('"cAM', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k''^.Ø', '|[pȑ46~,<dhF', '', 0, '?'),
('	傁''/', 'wp-content/plugins/elementor/assets/js/atomic-widgets-editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/atomic-widgets-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kM!`kv>W', '\0;3ѓ{(#&_#CT', '', 0, '?'),
('\n-Pu', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c{<G', '(	QLWqL;KbUCɎ56;', '', 0, '?'),
('#Ϣ]Bˣ#GI;4', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/chart.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/chart.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1o[!F}', ']wQȄZzFVA/\n83\rC2&d', '', 0, '?'),
('''`F̔~Ė', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C؍0+C', '`>&i(ŹCf&>Y"', '', 0, '?'),
('''*w', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-type.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-type.js', 0, '\Zp,|$3?o', '\Zp,|$3?o', 'pfE76;F{Tc:f(', '', 0, '?'),
('(tHaW`', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/main.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/main.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@MVu-}G', 'գr\\LC"OǤ\0\n.Ҏ#煝Vo', '', 0, '?'),
(')鷫g̨R', 'wp-includes/blocks/loginout/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E\\|!e˔', '-ۊ2QfZF`n&', '', 0, '?'),
('5&$5Q5N', 'wp-includes/js/dist/edit-widgets.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-widgets.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yf.!*', 't[G\\Ч|''$@Ǡ10eer', '', 0, '?'),
('<P?˱qUJ6', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-thumbnail.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-thumbnail.js', 0, '}BjX0', '}BjX0', 'QpWӛ*X,$,v', '', 0, '?'),
('<PӬ\r', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-file.php', 0, 'l?>AS"Y߅Kk', 'l?>AS"Y߅Kk', 'lZP$^R?bWMB\n[', '', 0, '?'),
('B"5+5aiQT', 'wp-content/plugins/elementor/modules/home/api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(`X	y', 'X@Ls@i܇	''I,bZ0<~', '', 0, '?'),
('CǴkq{.L', 'wp-includes/js/dist/block-serialization-default-parser.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-serialization-default-parser.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T\Zž<''''7%Avw', 'hԥ\r\r҇gdw|ܔ', '', 0, '?'),
('E?''yޫ\\yl', 'wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']KƦe;1', '9$~J	WVQe''<.wgl}z3', '', 0, '?'),
('H4.\\:#', 'wp-admin/css/l10n.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/l10n.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jk">"Ҫ', ')jTD\0M33_d0#>\n', '', 0, '?'),
('I)߂:$"9s', 'wp-includes/blocks/term-description/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\no\Z*Xqe', '9ŤU$\\~{]t-m쐾', '', 0, '?'),
('Ia!c', 'wp-includes/Requests/src/Response/Headers.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Response/Headers.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PLlwγ', '0am.*b3\0Ahy̧B', '', 0, '?'),
('Mb0	%P', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']R/?qgG', '§&̥s7-8D\ZuA', '', 0, '?'),
('NeCR,\rF e', 'wp-content/plugins/elementor/modules/wp-cli/command.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/command.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z&fb+ܚE', '`΄?W47َ:)pgTny=w=5h', '', 0, '?'),
('Rq vz\rPU', 'wp-content/plugins/wordfence/languages/wordfence.mo', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/languages/wordfence.mo', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ya:`LO', 'lÍ\\dC=ԗ/w(=GNFѡ{(Cc*', '', 0, '?'),
('R5?- S^H', 'wp-admin/js/editor-expand.js', '/home/binawebp/omsrislb.my/wp-admin/js/editor-expand.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zY{:/*K', 'BQB5ƽdΚL<', '', 0, '?'),
('\\&>''cTH', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CaptureNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CaptureNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cpv3X.w]', 'a><9+F''ij1 Tin:oO', '', 0, '?'),
('^M0~Tmʾp', 'wp-content/plugins/elementor/modules/cloud-library/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/cloud-library/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z\\!jwH̝', '^0yv/Q.9Ι.', '', 0, '?'),
('a!/Zhz', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-21.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-21.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1RS;`=/ԧ%', 'IJp/5[IgK\rr8+Ohx', '', 0, '?'),
('eŐnA', 'wp-content/plugins/wordfence/lib/wfView.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfView.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[ܺ-ˆN\n\\nO', 'x2Qmk٫@IFRhHu~R8"zK4', '', 0, '?'),
('gߤn˔˙q', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Lexer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Lexer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CM	f̗`yd', 'u''SgM[3N".PS"', '', 0, '?'),
('j B/\\@Yct(', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MF50	1nV[', '5M+m:o-\\6չOC\\Nso1oJ.', '', 0, '?'),
('kmoٖ Ni', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ur!N\\(', '`jw)/rigkiA-:xvZP', '', 0, '?'),
('p}_#!', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/times.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/times.svg', 0, '?\r)-3', '?\r)-3', 'IӏPFŧɮ[T.]`B\r4:-', '', 0, '?'),
('seQr^TK', 'wp-includes/blocks/post-title/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8XpW\rw2', '{):m{^S?j\n8xJB\n~)Q4}c', '', 0, '?'),
('{Ҁ\nh''g)0s\\', 'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F8`?y\ZXW{', 'gac}JFlZ`StMϵc6F', '', 0, '?'),
('cew&o', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/seek.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/seek.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&3O;Ʀ', 'pۇBX`wAĿbN>', '', 0, '?'),
('#nΐ	', 'wp-includes/css/dist/edit-site/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't)Oqf', '[T?%"f00P%;', '', 0, '?'),
('51Q?_', 'wp-includes/https-migration.php', '/home/binawebp/omsrislb.my/wp-includes/https-migration.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bd^qn̠+', 'P~98Y*2*jiŭ', '', 0, '?'),
('DmZgE', 'wp-content/plugins/elementor-pro/modules/library/classes/shortcode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/classes/shortcode.php', 0, '<*Q]dj', '<*Q]dj', 'ˌ[q(\nIq=uq{kLv', '', 0, '?'),
('C d?ox', 'wp-content/plugins/elementor/assets/css/conditionals/lightbox.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/lightbox.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '41Eoqd', 'yp_4$"Ӈ?a繨}', '', 0, '?'),
(',([M)', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.lock', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.lock', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EF\0O', 'dɨ4B~VTpkCƅ%', '', 0, '?'),
('e5hgQD3637	', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lucene.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lucene.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-\ng;=	c', 'Vhj~},Rlkd3±0', '', 0, '?'),
('嬪BDUL r?0', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-delete.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-delete.js', 0, 'UA_', 'UA_', '=MUG)gT	 ,zhtN[Vc>', '', 0, '?'),
('e21aDE', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.interdependencies.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.interdependencies.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P>Yұkr^pg', 'Oΐ\\OԲ)蹶/{w"j>\r', '', 0, '?'),
('Kع^yK', 'wp-content/plugins/elementor/modules/atomic-widgets/base/atomic-control-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/base/atomic-control-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',2a!Q', 'Hh94iPb$׭1e=幮(', '', 0, '?'),
('峳$ @z6\0`/', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ջ}BH71', '"beTb$׉\n~ln', '', 0, '?'),
('&f>t120', 'wp-content/plugins/elementor-pro/modules/loop-filter/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/module.php', 0, 'Y|iefA;(2X', 'Y|iefA;(2X', '0kwvK^\Z8zG\Z(PNq)', '', 0, '?'),
('+\Zy(.Ok', 'wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp-images.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp-images.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8iv`jN', 'FBTgźZ&nX\ny', '', 0, '?'),
('Wۙ|', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/WarningLoggerTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/WarningLoggerTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2>(r50', '[XHGb֧Σn0^O3Xo', '', 0, '?'),
('.JfBv!k', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5^DtŎ(B?]L', '}!GZ=[{ي#G~mF$', '', 0, '?'),
('\rb\\ɍ\Z', 'wp-admin/edit-form-advanced.php', '/home/binawebp/omsrislb.my/wp-admin/edit-form-advanced.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^#DP', 'NKj@o)/Ju4a\Z0oaʨ', '', 0, '?'),
('a͓44ԒL', 'wp-content/plugins/elementor/core/editor/loader/v2/js/editor-loader-v2.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/js/editor-loader-v2.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$Pâ(]gx"', '\0дB*MVGcy{\r@<8/', '', 0, '?'),
('\Z\ZF8', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-ru_RU.po', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-ru_RU.po', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c*Fpe9FhN', '\0XMfW#"!B%[M(', '', 0, '?'),
('vџH5%', 'wp-includes/blocks/site-logo/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RhEܮ5\\v', 'p/\rMFNc5=ѵ3c18', '', 0, '?'),
(' `\Zrw', 'wp-content/plugins/elementor-pro/modules/gallery/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/gallery/module.php', 0, '00Vl', '00Vl', 'E"Rg #)Y*٣]ݬSb', '', 0, '?'),
('%I.J\0LX`', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ftl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ftl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '50ͺEoO', 'yCD|/^s}8dQ;j', '', 0, '?'),
('(^d7P~y1a', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/search-results.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/search-results.php', 0, 'M^^%$͝#', 'M^^%$͝#', 'l8ó_ґB\\B\nnbPނ3', '', 0, '?'),
('+.eF', 'wp-admin/css/dashboard.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/dashboard.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>j(>', 'h67SJ;VfUt~jYa\n׀*U', '', 0, '?'),
('+KjK3%X', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/EnvironmentVariableResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/EnvironmentVariableResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ְ#	vb.\Z', '0ռ׆\0bj>*9FH', '', 0, '?'),
('8^''L\\?\rg', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/go-pro-promotion-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/go-pro-promotion-item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q*Z	M=af', '&ktaeLD,-WH~JDaDݠ-3hH', '', 0, '?'),
('9ekkRoS', 'wp-includes/embed.php', '/home/binawebp/omsrislb.my/wp-includes/embed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>Ȏ!\Zܤ', 'tKt$L<7kg[-', '', 0, '?'),
('?_ڨhi7', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/eps-banner.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/eps-banner.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L]{_	g', 'dUL-38r\0\Z3', '', 0, '?'),
('G5@07', 'wp-includes/images/blank.gif', '/home/binawebp/omsrislb.my/wp-includes/images/blank.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʟghkKf', '>EGL EJQ|Bij', '', 0, '?'),
('J~_ofk', 'wp-includes/js/wp-embed.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/a|s\\J9', '9Dfn(ݬ>d8g}\Zg?FpS', '', 0, '?'),
('J{eA !', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7Diɵ],|!N', '[`(кp\ZM"	j$', '', 0, '?'),
('VrⅭֺg&', 'wp-content/plugins/elementor/core/files/assets/manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']޴ӅD\\/7', '9g:~Ie`\rŕ-2fB`h\0̦', '', 0, '?'),
('\\Tbq#Wu)', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-http-error-codes-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-http-error-codes-trait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XB~Aߝ''k', '>0٠ nNa ".K\Z|\n=헯h?(', '', 0, '?'),
('lB\\t*PτD=', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$I6EIk)j', 'KXu6$\ZENd&G', '', 0, '?'),
('yq޾Ǵ[[', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ada.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ada.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N$M,3r\\{1?', ';Ff9`[P75tfBeqA4', '', 0, '?'),
('4x;MED&S', 'wp-content/plugins/elementor/modules/nested-tabs/widgets/nested-tabs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-tabs/widgets/nested-tabs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ҷ$@;]fv', '\ZuY)aƺNpnm:]\r=LBXh', '', 0, '?'),
('0#̢\rK|', 'wp-includes/html-api/class-wp-html-decoder.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-decoder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o4gl]/+', 'V()7)GiM{=$;סɣi', '', 0, '?'),
('Cm;ɪ"ޱ', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/analytics.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/analytics.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't|/ST\n20', '\nq+(к@l|ǌ;wHa''', '', 0, '?'),
('%%3;z', 'wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-bright.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-bright.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'υ@5!ՄPj', 'Rop:tՏQ{Ec', '', 0, '?'),
('jP,si%4X', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-julia.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-julia.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '],''K\n]|', 'KNOrD}KVB8qu', '', 0, '?'),
('OsLc\rW,', 'wp-includes/images/media/code.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/code.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MvR$E^.', '˲dnfNRn%Wr\n', '', 0, '?'),
('様7^b"', 'wp-content/plugins/wordfence/images/back_disabled.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/back_disabled.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hgi>', '䏛N7g΋?Fb!}ݿC鳇', '', 0, '?'),
('jm8`p', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/handlebars.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/handlebars.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.@S ;ttБ', 'MMШiDw;۸x-[>', '', 0, '?'),
('樨#@,5"5', 'wp-includes/blocks/term-name.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Wy''&";', '%/"mUM^cC81', '', 0, '?'),
('X}cz', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/RequestedEntryHolder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/RequestedEntryHolder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';6rQKl', ']=tƇЎʝH6', '', 0, '?'),
('gwߍhmA', 'wp-includes/blocks/freeform/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZsSwM뮨)i6', '/ijYyZ''>,X@!%Ljqٍ', '', 0, '?'),
('ylsU><', 'wp-includes/css/customize-preview.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bSbs"', 'ߌIR\\Ĺez3QsCQ', '', 0, '?'),
('eҕhV"', 'wp-content/plugins/wordfence/views/options/block-controls.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/block-controls.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd\nYO%s', '\r''Uk34xP̀%~\Z}', '', 0, '?'),
('W"Sk:', 'wp-admin/images/align-center-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-center-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-r5*J7If', '8tf*JwT^H>1JDο', '', 0, '?'),
('PIcDƾ', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JsǙB', 'ERJbȸI"t],qP1\\fD', '', 0, '?'),
('[L2@*I', 'wp-includes/blocks/comments-title/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ]C!|AJH\0', 'f )CھKG\ZCť Lp', '', 0, '?'),
('ᠮā"&t1%', 'wp-content/plugins/code-snippets/dist/editor-themes/abbott.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/abbott.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z\n)R]wK', '-dmfP_F6KA@L\ZiP', '', 0, '?'),
('⣣MOU', 'wp-admin/js/editor.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'wB輹~qs~a?', '=:[Ųѥg\n<|68gs', '', 0, '?'),
('"LJ1C4ND', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p+X-;ߨyDj', '|\\vG>״KW@MRQQ', '', 0, '?'),
('̤֣ZfRNfXw', 'wp-content/plugins/elementor-pro/assets/js/stripe-button.2acbca466dfeb9585680.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/stripe-button.2acbca466dfeb9585680.bundle.min.js', 0, 'vM8/wcWe5', 'vM8/wcWe5', 'R;h_moE4H޳%j', '', 0, '?'),
(';Wl', 'wp-includes/js/dist/deprecated.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/deprecated.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ޣ!O\0Fr', '1t|Ҽ|UlIZwnw\nB', '', 0, '?'),
('>8\Z*\0', 'wp-includes/blocks/comment-reply-link/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8o6KRq\Z\r<D', '2L@/5;3O''U-(J8jἹ', '', 0, '?'),
('\0sxMkyC_XP-', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_VZ4\06!', '\ZeY:BnԆ87', '', 0, '?'),
('QoCP޶', 'wp-includes/blocks/navigation-submenu/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F)C;]<', 'ԫ\0PTrQ>J"T{WJC(', '', 0, '?'),
('qP(w&_G', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/phpunit.xml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/phpunit.xml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E^!LBt_ԟ_', '+庱k4\\&ʁ9Xa}', '', 0, '?'),
('XClg', 'wp-content/plugins/elementor/includes/controls/number.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/number.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	77)m̈́', 'X"o''0.eI0ǐ`kq;dGϣ2n7', '', 0, '?'),
('G	z,', 'wp-content/plugins/elementskit-lite/core/build-inline-scripts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/build-inline-scripts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F*Ku]', '|)UmrgJR9Șwte_*', '', 0, '?'),
('"ơ7vs+', 'wp-admin/includes/class-pclzip.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-pclzip.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9%Cs6r', 'H0z@./t3', '', 0, '?'),
('2\Z {DZ-', 'wp-content/plugins/wordfence/fonts/ionicons.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/ionicons.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hI15[I]J', '*\\&t䭨\\	gTw,1', '', 0, '?'),
('Djמ8]fД_', 'wp-includes/class-wp-widget.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-widget.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v4nrUM', 'No/GKBb\\5C^YEWj`K', '', 0, '?'),
('QĘ~yS', 'wp-content/plugins/code-snippets/js/types/SelectOption.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/SelectOption.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FD;Ĺ,=', '14_ypMӁN@V@', '', 0, '?'),
('\\"M/l\Zx֚', 'wp-includes/block-supports/block-style-variations.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/block-style-variations.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&౑8', 'MԑڱuѵXUU717Nu', '', 0, '?'),
('`"@<2L', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_888888_40x100.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_888888_40x100.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p.o̰鐼', '\Zt"%*Ȃ\0#/˷iH', '', 0, '?'),
('b`K''컜K', 'wp-includes/functions.wp-scripts.php', '/home/binawebp/omsrislb.my/wp-includes/functions.wp-scripts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dRIbҏ3', '''RBȫ>.-"H!', '', 0, '?'),
('j|(} i', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'St~''qR8', 'w!WDW\nSfsGoվ1', '', 0, '?'),
('mf''A^D', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/DefaultFilter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/DefaultFilter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q6­''\rb', 'iOM?{؇^Mci,\rWIz', '', 0, '?'),
('r([kt\nFR', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd8}DB7t', 'ew\r@d.НLW	C.j~+vR', '', 0, '?'),
('u٩N4%l.', 'wp-content/plugins/wordfence/js/date.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/date.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jPER_c', 'B=0dƩ"BtUc^1>q&', '', 0, '?'),
('xΔ)NX3u/@4Y', 'wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z6}-p', '~樄IKB0H|~iM/l', '', 0, '?'),
('{:rṙ\r[~*', 'wp-content/plugins/code-snippets/js/hooks/useSnippetSubmit.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useSnippetSubmit.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~x6$\0,"', '$J?láw-_XVpC\\2BM', '', 0, '?'),
('|4`!l''kDB', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k1ہv^{', '(P_c"xQUsn,aU', '', 0, '?'),
('\Zs f܊t', 'wp-content/plugins/elementor/assets/lib/animations/styles/tada.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/tada.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĄV$ykݘ', '*)Ӌ)p~=ƹ>Ż', '', 0, '?'),
('Jёe\rXd$', 'wp-includes/class-wp-customize-widgets.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-widgets.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J*\\VU;N ', '2^sn''8O\r', '', 0, '?'),
('畲*	z,l8؁', 'wp-content/plugins/elementor/includes/editor-templates/repeater.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/repeater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''+mD!fL|', 'b((^`>%#RER', '', 0, '?'),
('\ZI', 'wp-includes/blocks/social-links/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Zx\r~\ZU{', '́!㡓u_^H<', '', 0, '?'),
('xf|s#', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-bro.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-bro.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iP@J<Ȫ]2', 'M^a*\0ip<a,	rl-ң%', '', 0, '?'),
('E3=^`Z', 'wp-includes/utf8.php', '/home/binawebp/omsrislb.my/wp-includes/utf8.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6/6<>T=', ']jkal:գϻ9~QH(p/K`', '', 0, '?'),
('kN>t,', 'wp-includes/blocks/file/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tw\Z+5ct', 'P̗z30x=l\r0%fegxB^', '', 0, '?'),
('6Si\rلnT', 'wp-includes/blocks/comments/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q)Tt!^_', '>\0Eix`I+p+rTf3BHa', '', 0, '?'),
('Kgo#0', 'wp-activate.php', '/home/binawebp/omsrislb.my/wp-activate.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ŇcCJ!CnV˓', ']?3xJcPѠdULJSE%', '', 0, '?'),
('ŉ	i/Э', 'wp-includes/formatting.php', '/home/binawebp/omsrislb.my/wp-includes/formatting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!JnIDƳk', 's4O8LEV!yN`>/f=4', '', 0, '?'),
('Hl{!D#!', 'wp-admin/js/color-picker.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/color-picker.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`l W+%䆊kc', '}̶guw`hfFoz,drr,,u', '', 0, '?'),
('[dK߳', 'wp-content/plugins/elementor/includes/template-library/sources/remote.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/remote.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$b\r\\n8/ ', 'gaMXv)]\rRKqsEș', '', 0, '?'),
('ATZsLꞟV', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '={`<m_@eP', 'u,QLWe˄i18@ee0Ps\rDZB', '', 0, '?'),
('1/l', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WHSm', ';C8Lcɞc}E<0;', '', 0, '?'),
('L.dDv', 'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',&1{\04H,', '+=ɱ[2ȩ~<och', '', 0, '?'),
('FZYC83E', 'wp-admin/css/colors/blue/colors.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')]bgHsMC', '\rexri\ZGln ÅjQ!Dw,', '', 0, '?'),
('=\\^eRNF', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/AbstractDetector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/AbstractDetector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jj+''6k', 'PgW_"~a\rJ>S', '', 0, '?'),
('bV]z)@', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-buttons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_#STt', 'P|tJ]7FZвdD[$|DVv', '', 0, '?'),
('÷g$Ms', 'wp-content/plugins/wordfence/views/waf/option-rate-limit.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/option-rate-limit.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E,bٿʊNE\\', '|J\Z^(׌xDsX8?R', '', 0, '?'),
('ZMpx\\ևJ', 'wp-content/plugins/elementor/includes/widgets/counter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/counter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5u$r}Jz^', 'k2$\Z'',8*!;&_-BV"', '', 0, '?'),
('\Z8Xm%', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z;\ZRLiɦՊ', '8,QsY"v<8{\ndmhS', '', 0, '?'),
(',/Qz/7', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mрq5H', '`7:6OMNTK5;Rcx\0r', '', 0, '?'),
('ז?4N-', 'wp-includes/Requests/src/Exception/Http/Status417.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status417.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nL,Ux(', '@vAZ7XB-%ouh5p', '', 0, '?'),
('"j+RC	g', 'wp-includes/Requests/src/Exception/InvalidArgument.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/InvalidArgument.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R%9H&F', 'LbvGZj''<K#JѓS', '', 0, '?'),
('%y>}Ho(6', 'wp-includes/js/jquery/ui/core.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/core.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Z+ Gfp', 'oel{D2SE7	8-\Z8a', '', 0, '?'),
('0B	X.)Q"', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/module.php', 0, '?w|)''SSIq', '?w|)''SSIq', '.?f{o$mUz[VXnݨZ^', '', 0, '?'),
('OGYl!&{', 'wp-content/plugins/code-snippets/js/components/SnippetForm/index.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/index.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z}iѶ͌', ';Bx!̚o"zbH}_M0{F[', '', 0, '?'),
('P9}Է~MA', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.strings.js', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('SHLenPq7č', 'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f`j|y', 'iOGiF|48Vj\n#V-L', '', 0, '?'),
('SI#)|', 'wp-includes/blocks/quote/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r5_~|cn	', 'IE6;W&><\0c`%\npjzkTu', '', 0, '?'),
('W<) bH', 'wp-content/plugins/elementor-pro/base/base-carousel-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/base-carousel-trait.php', 0, '3b]\r2', '3b]\r2', 'ɇF1!Ue̎5.\Zn', '', 0, '?'),
('_\rxӜ&Zm', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-pastel_on_dark.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-pastel_on_dark.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y9~''`\n\r', '=gJgfL͗Y	e~h\0lL*', '', 0, '?'),
('`DN''hd', 'wp-content/plugins/elementor-pro/modules/flip-box/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/flip-box/module.php', 0, '$eG!W.', '$eG!W.', '5Q\\ӷj8+tW[', '', 0, '?'),
('aΓQ=Zߺj', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B	6B', 'q''G	[+`bAwԱK', '', 0, '?'),
('b+aXX', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<S\n0߸?C}O', '*\Z]a1L&U,gApt@T', '', 0, '?'),
('fi`=@To', 'wp-admin/images/spinner.gif', '/home/binawebp/omsrislb.my/wp-admin/images/spinner.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L\nD\noًj˲', 'zƄ\Z"n\Zs(U/~7F^', '', 0, '?'),
('v%ɦ0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff2', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z 6>', '@⣂LEQ(ieq[N|&Ð', '', 0, '?'),
('wj067@T', 'wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"2s7\\i#E', 'atW	3N\Z`xhI`', '', 0, '?'),
('~@fR?$[u', 'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'obgyЮ', 'ּ!)$z]btR˕h', '', 0, '?'),
('Jy0m`/', 'wp-includes/class-IXR.php', '/home/binawebp/omsrislb.my/wp-includes/class-IXR.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '2H87qB<c', 'W:ByiϘt)ڄlOJ¼', '', 0, '?'),
('胑O!4M', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZD\nX', '-.&kW	z.*EPkx/(M%5^', '', 0, '?'),
('vwAY}', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v{eVR߇w', '!AJiNh/Ȟ{̃vEb#|a', '', 0, '?'),
('q8O;A', 'wp-includes/blocks/shortcode/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>`Y<', 'ŵ3J}g9x 1ʅFސf', '', 0, '?'),
('P(^NuI', 'wp-content/themes/twentytwentythree/screenshot.png', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/screenshot.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/s#y u?', 'ȳw7_]hI>ʳO', '', 0, '?'),
('\0]pޑ	\rG', 'wp-admin/css/customize-nav-menus.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[/coeƏ]', '[d)tm_ \nrؙpˮ{ʒ', '', 0, '?'),
('sX3f$', 'wp-includes/blocks/file.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#:ĕ|	AF', 'Anl;FDH\Z?4\\F%V', '', 0, '?'),
('^а.mԮe~', 'wp-content/plugins/elementor/assets/css/admin.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʁȀ\r\ZVX', 'OopЬԋ*vC:/?ե', '', 0, '?'),
('謤j,=>', 'wp-includes/blocks/site-logo/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\0ؼc(Y''~:', 'BGeJA8*[MQUxm', '', 0, '?'),
('诒=v֝ƷZ]', 'wp-content/plugins/wp-optimize/js/loadCSS-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadCSS-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0FVo,RU', '_Ռ=..b-P\\=u-Ht\nG', '', 0, '?'),
('賑LqSݗI#', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k]sXPVǇE[', 'ry''iaׄ◔e\rY<uaE2	n', '', 0, '?'),
('lw?y3uA', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/FlushNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/FlushNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tej#F\\%3', '^lWa/27?Rba', '', 0, '?'),
('贄3c)\0e\Z', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/NonInvokable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/NonInvokable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'miLwze', 'kLu^4Yj}X[ޛX+ھ', '', 0, '?'),
('趜X\rٲZ', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\uV', '$*["\rM:[ُ.	AgD', '', 0, '?'),
('辎0+Ny:<h', 'wp-content/plugins/elementor/assets/shapes/drops.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/drops.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|Yz6;y', 'T~vP3&tW-	TNqA', '', 0, '?'),
('{5,]', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fV$%{S', '08(d7$ѓ*	&s''\Z', '', 0, '?'),
('W:]', 'wp-includes/js/dist/primitives.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/primitives.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9К\Za] 9', 'l&:q;OJ4\\i&(5dhCz)', '', 0, '?'),
('5VX	0:', 'wp-content/plugins/code-snippets/js/types/SnippetsExport.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/SnippetsExport.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'r]gMl j[', 'l>os[l*jKt7¡._', '', 0, '?'),
(')QFD8@,', 'wp-content/plugins/elementor/modules/element-cache/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-cache/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0ľ<PV<2', 'Q1CZcG{W@֟E', '', 0, '?'),
('<|Ɔ3#`}', 'wp-includes/blocks/separator/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mfP,f''׼tOgQ', '8vY͜ {kzf7{+', '', 0, '?'),
('QoH*(', 'wp-content/plugins/wordfence/images/sort_asc.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',I+ƾ=', 'dCTe&,)ѴFG\ZdON', '', 0, '?'),
('UMU$', 'wp-includes/blocks/latest-posts/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f}m/z', '?y⌧$UlUxXY', '', 0, '?'),
('A$>T.', 'wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ynOXEΰh', 'S\ZF\\fJfn[@N@!W', '', 0, '?'),
('<s>0', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '} y\Zb4', 'ۘ;XHǘ"6uhhېnJ?>', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
(';wu', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Reference.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Reference.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '472f\n', 'է$,N0iGF)#U/v', '', 0, '?'),
('+3pU', 'wp-content/plugins/wordfence/lib/wfOnboardingController.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfOnboardingController.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&+<ՎO', 'ZҒ@(S%=rA˻`', '', 0, '?'),
('k3!uq', 'wp-content/plugins/elementskit-lite/widgets/social-share/social-share.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social-share/social-share.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}VfdyCA', '60]֨$\r<\ZL8', '', 0, '?'),
('"݆GIhN^', 'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ZfY{CͼA-P', '6cu\rQ:$3l', '', 0, '?'),
(')S"%eKl', 'wp-content/plugins/wp-optimize/images/notices/subscriben.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/subscriben.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U9΀a#͔', '0̄%L2hu)q,]F¨Ys', '', 0, '?'),
('*S>\Zcg{', 'wp-content/plugins/wp-optimize/images/features/updraftcentral_logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/updraftcentral_logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^E#F;I', 'y\\|@P\0\nYݯ*]UtE', '', 0, '?'),
('+N*;g', 'wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.html', 0, '1:	9w8<', '1:	9w8<', '\r,DL9):\nЊG.c,Oa', '', 0, '?'),
('CFcb', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/ContainerBuilder.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/ContainerBuilder.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9,Emn<', '!C=\rGO|Ke!I3>%{', '', 0, '?'),
('Fj!Y{.J=,', 'wp-admin/images/stars.png', '/home/binawebp/omsrislb.my/wp-admin/images/stars.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[><k{(', '/	"Fa챔<SYg؉F@', '', 0, '?'),
('HUH<2ƾ', 'wp-content/plugins/wp-optimize/cache/class-wpo-page-cache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-page-cache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ND\0?;5\07a ', '(2KsA6b;L\0鉜}	', '', 0, '?'),
('LoȵVp+bH', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products.php', 0, '2s#1֨', '2s#1֨', '?!yw>8Z/BoO', '', 0, '?'),
('Yh23fI', 'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1764778641.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/admin.ajaxWatcher.1764778641.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Nů)', '''vᦸ =''Xk<6YSt', '', 0, '?'),
(']W/>}<8 VF', 'wp-admin/includes/theme.php', '/home/binawebp/omsrislb.my/wp-admin/includes/theme.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+c\\{>&', 'I93H7cFP0U]"', '', 0, '?'),
('^K1\0ΧD4', 'wp-content/plugins/code-snippets/js/utils/errors.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/errors.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CdIɢ', '.5.n]K@^\0vݪoم', '', 0, '?'),
('^.jT}<I', 'wp-admin/js/accordion.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/accordion.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O}E d!', 'acCt-#M!g3_&$\n', '', 0, '?'),
('gU)\rR(', 'wp-includes/js/dist/is-shallow-equal.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/is-shallow-equal.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\JYAM?+f1', 'B;p?TS\Z~''u:Bs', '', 0, '?'),
('j	b0/', 'wp-content/cache/wpo-cache/omsrislb.my/about/mobile.index.html', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/about/mobile.index.html', 0, 'BVdgk|-<', 'BVdgk|-<', 'v;<!;U~с6c', '', 0, '?'),
('l]F<c5', 'wp-content/plugins/wp-optimize/optimizations/unapproved.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/unapproved.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZOY*6', '+-u14ݗH"SS<O]', '', 0, '?'),
('|:xZ~*wl', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '< $02֚N', 'ʑK3N@v[Leڵ썱K', '', 0, '?'),
('J_u)(Q_', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rp''x/=&Ai', 'pC޲=|%g6 \0ӂҼL', '', 0, '?'),
('醟["\n-}l', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rIf3k rŃ', '	ft֕y$c?RV', '', 0, '?'),
('頻yN<9o\Z<', 'wp-admin/js/xfn.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/xfn.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<>B25\r1U*', 'O	h^dLgzIwvƄaZ1', '', 0, '?'),
('tLH:P(', 'wp-includes/css/dist/widgets/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"#Nu:er', ',$<߳99(iDQ|', '', 0, '?'),
('騷RᴦQ''G', 'wp-content/plugins/elementor-pro/modules/forms/classes/form-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/form-base.php', 0, '!҆x''L', '!҆x''L', 'Ǣa[uqy;<:SB4', '', 0, '?'),
('mMtWB', 'wp-admin/images/align-left.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-left.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\y0dZo.h', '_]<#S"B^U4_Q<!@x?J$K', '', 0, '?'),
('t1̬Du+8E0', 'wp-content/plugins/elementor-pro/modules/lottie/widgets/lottie.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/lottie/widgets/lottie.php', 0, 'f^U}`ݥ"]', 'f^U}`ݥ"]', '~zՐ9$%Rˌ(=P)&', '', 0, '?'),
('x*AR\Z', 'wp-content/plugins/elementor/assets/js/checklist.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/checklist.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z1ߞ/?/["', 'BrmE\\V=w7T	E', '', 0, '?'),
('鰑<H\n-RɆ+', 'wp-includes/SimplePie/src/Cache/Base.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S;6K?', 'dnP(j9zR/ΕwE', '', 0, '?'),
('l(!Q2s', 'wp-includes/SimplePie/src/RegistryAware.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/RegistryAware.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6t/U݃Y"', 'Pa\n.d1XLoDht]', '', 0, '?'),
('c8xϵ', 'wp-includes/blocks/preformatted/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SG{Ĉ]51', '_pc)k3YHLIWOP]9tS', '', 0, '?'),
('ĥ>{3Y"T', 'wp-content/plugins/code-snippets/dist/menu-button.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/menu-button.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϸO1', ')j|I&y?''MֲWbK*>:+', '', 0, '?'),
('tZO'' \n', 'wp-includes/js/thickbox/macFFBgHack.png', '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/macFFBgHack.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȰgW,/u', 'Rw/h&q]Z_Ngy', '', 0, '?'),
('`dq', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gitignore.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gitignore.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AHpHKֹo', 'юB\rP,ZxWَV4-', '', 0, '?'),
('x!	L8-L', 'wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-menu-item.php', 0, 'Ět[p[^', 'Ět[p[^', 'iP֗EZofԯ,;$cRu92>&ִ', '', 0, '?'),
('{ٛLHz,{', 'wp-includes/js/dist/script-modules/a11y/index.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/a11y/index.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e}!b+-UV', '\\tg.QHOJhT', '', 0, '?'),
('yz+ɿ\0v7c', 'wp-content/plugins/elementskit-lite/libs/framework/classes/ajax.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/ajax.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(FT,]s/a0g', '"]Eqn_j!Sr<d=]P', '', 0, '?'),
('g3?B', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/NodeTestCase.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/NodeTestCase.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ئ4;-`Q^', '\nV!e\ZN)X [1{PH*ڑ6*q', '', 0, '?'),
('>Nz"F?r', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-08.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-08.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`\nH۫dͤ؞', 'IMe]Wxgz;F[8f)', '', 0, '?'),
('}\ZWE''', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/goodshare.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/goodshare.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sl\r-cs', '/ڂ䄘q,8.w>ΞٛT܇q', '', 0, '?'),
('kLN\0x6@', 'wp-admin/css/list-tables.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/list-tables.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɮ<<8/)O3EP', 'd#m3y\ZkDiQ$f6', '', 0, '?'),
('\r/2[/Li', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7S=	ӷF', ')/(дG_@UmD£3ie', '', 0, '?'),
('I4Pb\Z', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/category-image.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/category-image.php', 0, 'IA¤\ZfE:', 'IA¤\ZfE:', ') /Շ4%%"XDBcʴ17', '', 0, '?'),
('ҁm^kפ\\"S', 'wp-content/plugins/elementor-pro/base/module-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/module-base.php', 0, '[j3OPpEq', '[j3OPpEq', '\n˪]i(6I@3	X[X', '', 0, '?'),
(' ΂㉰V|p', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZUU߆-U\r', '@''kts9k6*{,a', '', 0, '?'),
('"6-L', 'wp-includes/blocks/comment-template/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mv3\\A"', '}\n[KBM]EVM\rЃA', '', 0, '?'),
('%TrÎ3i>ِ\r', 'wp-includes/blocks/post-comments-link.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*s|%0b', 'E,f/@''4`rO{i|', '', 0, '?'),
('-.xɤR', 'wp-admin/includes/privacy-tools.php', '/home/binawebp/omsrislb.my/wp-admin/includes/privacy-tools.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	^	_G', '*Z05\04uϏ(;', '', 0, '?'),
('-HbrO\Z:5ɹ', 'wp-content/plugins/elementor/vendor/composer/ClassLoader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/ClassLoader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+fq(4Ȯ', 'k(\r(Njj''̣6./''', '', 0, '?'),
('0Jfx#X{', 'wp-includes/sodium_compat/namespaced/File.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/File.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']mw/\\y5', 'ɐtd7H}=.tCw$`c''', '', 0, '?'),
('42)A.;4', 'wp-includes/js/customize-preview.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x4`^V$j', '(\Z8凨&Abɛ1Nw', '', 0, '?'),
(': SLܦ!', 'wp-content/plugins/elementor/assets/css/common-rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dwz+~Q', 'PNI$n3b?Jnfxv\n\n', '', 0, '?'),
(':mXTs$\r`b7', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/suport-thumb.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/suport-thumb.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ax?ZjNY', ']bk3x,CN}', '', 0, '?'),
('HS঻/W9qx{', 'wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8S0/8E"', 'N-KO<ƌX榟Lsg~Z', '', 0, '?'),
('If_A3vu0m"', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/ooohboi-poopart-icon.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/ooohboi-poopart-icon.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0/h', 'ʪf0ui?+b`}EKL%fu', '', 0, '?'),
('QA	=H7-', 'wp-includes/js/jquery/ui/droppable.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/droppable.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%dP#n(', 'Zlp^tU=<Bݳ9T', '', 0, '?'),
('d\nv;O1:,Tn', 'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-multiple.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'о6', 'r\nz>gi\ruu<F', '', 0, '?'),
('r@DZ䯩', 'wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!K	5yS*', 'TyO%u;U}g1)Z', '', 0, '?'),
('u	JEGCjWo', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pig.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pig.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '? %qne؈', 'LF7@ax(:\\Whl[J', '', 0, '?'),
('ꍥ2jEbg؈Wx', 'wp-includes/css/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6LM6A0 z', '@w/4#BLH0L"g27GT%', '', 0, '?'),
('꘳5<wDo҇', 'wp-content/plugins/wp-optimize/templates/database/optimize-table.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/optimize-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ִspn(~', '#@ޞ!>͂ߗ3=S^&8', '', 0, '?'),
('>YbL(\n>;\\', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɕ.T*#&WHP	*', '&J*~ 	jr%Z.v̠1z', '', 0, '?'),
('ꮔ<,Z', 'wp-includes/blocks/comments-pagination/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/NRilЃɜz', 'AA\n/#jg$rc=GL', '', 0, '?'),
('Ǉ4˓T`k', 'wp-includes/js/wp-pointer.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-pointer.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AV{Mrn?\n', 'c:8Xܹl8odGhSD%\nM', '', 0, '?'),
('3M_\nvj^R', 'wp-includes/js/dist/script-modules/block-library/search/view.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/search/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '𠋸d=hQ6iDB', '\\49bLٻr:m&v(ك', '', 0, '?'),
('곸@nO{e', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6Bu}', 'z])q߲]I-8\0\nνfBS', '', 0, '?'),
('bWMZew', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"h:$%W', '2Z>YXHDe%a3nBP', '', 0, '?'),
('+ytB1Ǩb', 'wp-content/plugins/wp-optimize/templates/info-message.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/info-message.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';f IHLF', ' \0JI "M$+?\\', '', 0, '?'),
('6ZfM;', 'wp-admin/css/site-health-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/site-health-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f2@iE', '&/xh{BwM6-H;cM7', '', 0, '?'),
('r,5<Bn', 'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''فJaW', 'kF(P \ng3(ux=jcE', '', 0, '?'),
('JA\r', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-layout.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-layout.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jHw?rZ', '&7v$^>u]JOߢFw', '', 0, '?'),
('\njݍea!\ZWdq', 'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ٶhrdGͶ', '_7	2w-Tb	-710εAf', '', 0, '?'),
('93pg~PO', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elixir.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elixir.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vHM\\I$I_o0', '5)\\0Vȿ!^\rQH3/0H\\_à?', '', 0, '?'),
('-n$.#g%}', 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' OّCHؖs ', 'pXuc{-K׏ژ/OnE0)JB', '', 0, '?'),
('0RJ{yˣ', 'wp-includes/general-template.php', '/home/binawebp/omsrislb.my/wp-includes/general-template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}o!+\0P', 'kjDԵ!#Y+A`3^|', '', 0, '?'),
('6''Enf+\Zkv`', 'wp-content/plugins/elementor/modules/page-templates/templates/header-footer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/page-templates/templates/header-footer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^$N0ك', 'E˓=d7\\T`[SHY', '', 0, '?'),
(':C"1*', 'wp-content/plugins/elementor/includes/editor-templates/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/templates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	7kVF', '	q\rq{NJ[{q', '', 0, '?'),
('CFNtof_ٛT', 'wp-content/plugins/wp-optimize/optimizations/usermeta.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/usermeta.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>0>lob', 'K"~d6||WP<q	p', '', 0, '?'),
('F 8+)rP', 'wp-admin/images/no.png', '/home/binawebp/omsrislb.my/wp-admin/images/no.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kd$ܟV7', '\n>~hZP\0U0;'' {)	>', '', 0, '?'),
('M\ZH?ͲZ', 'wp-includes/class-wp-rewrite.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-rewrite.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3bjQy23', 'KYo|&azx`@BAL', '', 0, '?'),
('Oӿ;=\\Jzy', 'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '??g>}', 'J|x^W`oqB<ses', '', 0, '?'),
('QF0t+', 'wp-includes/css/dist/block-library/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i3Y\n #K9b', 'r0}k>]U	de@r', '', 0, '?'),
('U&.P2Rb', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>a@#:C8R', ' i0u9wzA,ܥ', '', 0, '?'),
('X=fÕ\r|e1', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uIB&n	02', 'W$EٸM\Z]\ngb,]+~}', '', 0, '?'),
('X{3E0S', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Mx\Zq''w', 'u$ĊL)0avh{znv/@', '', 0, '?'),
('_1t=qTQ*F', 'wp-includes/blocks/gallery/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'B[TZJ0', '"y:"f1f;2vIÍs?n', '', 0, '?'),
('au"9s?H', 'wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%1sËG', 'EWٳ?4@U?0bP+h', '', 0, '?'),
('fՀF`Fn7', 'wp-content/plugins/elementor/assets/js/text-path.acb8842ac7e1cd1dfb44.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-path.acb8842ac7e1cd1dfb44.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O-МW''i', 'c3pkG%PymƇLr=}~N.b', '', 0, '?'),
('h^_nZq:!', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeOutputInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeOutputInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']w\Z<{	,#', 'yE$fP{g@%zGӻMZ@', '', 0, '?'),
('m$0HneF4', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8x[?DUs', '7rG \ZXF!b&ébCOo', '', 0, '?'),
('m+:o]au{', 'wp-content/themes/twentytwentythree/styles/grapes.json', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/grapes.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '팩 ?R,UM(', 'Do%\0_;/")[', '', 0, '?'),
('obL6i]Q', 'wp-content/plugins/elementor/assets/js/e-home-screen.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-home-screen.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bWG,\r<', 'eܔHy{.),S-		', '', 0, '?'),
('o\0p5/\Z\r', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style1.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style1.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rKJ_`):2', '''D<nto:8Z{J{),j', '', 0, '?'),
('v4r44\Zz', 'wp-content/plugins/elementor/core/utils/import-export/url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/url.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R-𗧷zn', 'EL"*FW''7~<m,<t&yy6=', '', 0, '?'),
('|঄T0,', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-polylang-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-polylang-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O*9\ZBT', '8 I\Z!ʠh)Je&LBD', '', 0, '?'),
('xD.m~<2', 'wp-content/plugins/wordfence/images/ratelimiting.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/ratelimiting.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0[MɞyP', '@Sy''N+kB3J!PbƖ', '', 0, '?'),
('끔VZ_a', 'wp-content/plugins/elementor/assets/js/ai-media-library.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-media-library.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W&;aaJ''W', '62Tt/YT5~¬%-c', '', 0, '?'),
('-I(b', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionSource.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionSource.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=~-0ߔS', '!|mOH\nY5\0876[Z#]', '', 0, '?'),
('딋>@:?', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HWe1ƻ44d', 'DiٶX;)XMf^"t', '', 0, '?'),
('uҞ%WOɼ', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-dynamic-css.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-dynamic-css.php', 0, 'o5I', 'o5I', 'ofgg<ƴ_@0Fn''.\\_', '', 0, '?'),
('LM', 'wp-includes/blocks/comments-title/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_eGAl	', 'ƳTz]	Gbg', '', 0, '?'),
('zKR5ر-ω', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-02.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-02.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&O&=6u!', '_G fm}M墨mk/{.', '', 0, '?'),
('뭷\r!z}MLKE', 'wp-includes/ms-files.php', '/home/binawebp/omsrislb.my/wp-includes/ms-files.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '΄-''gDOPr', 'RPW1rs>uXx踶ҟ+', '', 0, '?'),
('뱰6#|tĸ', 'wp-content/plugins/wordfence/modules/login-security/classes/model/script.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/script.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/+', 'Sݕˢn $Cj\ZD#', '', 0, '?'),
('SڰpGMǯl', 'wp-includes/css/media-views.css', '/home/binawebp/omsrislb.my/wp-includes/css/media-views.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#N.Ğ[', '$$kI-<|a썾,', '', 0, '?'),
('*jĀhx\0d', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-list.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-list.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd254yX5', 'ZAޤ8+?~̨T%f	|Y:?', '', 0, '?'),
('2|?]ϸ', 'wp-includes/css/dist/nux/style.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']nך6٨(', 'QaYl[m xmcWZ_', '', 0, '?'),
('[V\\/tWqm', 'wp-content/plugins/elementor/modules/wp-cli/update.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/update.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ܡs1,`(', 'gqjӽoFCXذ03Ǐv$', '', 0, '?'),
('׮Fps4', 'wp-content/plugins/wordfence/images/back_enabled.jpg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/back_enabled.jpg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']H', '9퇥)R$px#q {#LO', '', 0, '?'),
('?IX^$', 'wp-content/plugins/code-snippets/php/load.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/load.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&k|Ãld', 'Fʯ̮=aǥܐIBk0DC', '', 0, '?'),
('!SsX\\dh}N/', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7U|bA', 'DJ鿝vtx}i*#2	,4', '', 0, '?'),
('iW;`B<+', 'wp-content/themes/twentytwentythree/readme.txt', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/readme.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ZY;E.3&J', 'Md/3,h4˃Ј|', '', 0, '?'),
('vAdsK]', 'wp-admin/post.php', '/home/binawebp/omsrislb.my/wp-admin/post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q҆K()', '=MO4"VaXQ!g-TY!we', '', 0, '?'),
('3wn;Br\\', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/customizing-parsing-behavior.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/customizing-parsing-behavior.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?vEEb', ' wۃu:O,x8nP!h8\0o\ZY(_', '', 0, '?'),
('YCooR亞', 'wp-includes/capabilities.php', '/home/binawebp/omsrislb.my/wp-includes/capabilities.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J,G''B-J', 'B\Zݎ:*Uf+\0', '', 0, '?'),
('\n:T؎ZTD%.', 'wp-content/plugins/code-snippets/php/views/partials/list-table-notices.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/partials/list-table-notices.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~7A)EI', 'PWP_Qkc\ZQ˼FN7ل', '', 0, '?'),
(' p(邊ȼa', 'wp-includes/blocks/navigation/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<^Gdv8`', '@PC~dĸ1yssΔL', '', 0, '?'),
('"O̕j/', 'wp-includes/images/media/archive.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/archive.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}+働ϯ', '֞\\_m=:66N~ɥ,Mz', '', 0, '?'),
('*V!\n+H:KBQ,', 'wp-includes/Requests/src/Exception/Http/Status511.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status511.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ѻ\Z1EWk', 'E+A:Sl h	)-*RA$', '', 0, '?'),
('8ڧs}նNi', 'wp-includes/class-phpmailer.php', '/home/binawebp/omsrislb.my/wp-includes/class-phpmailer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''F!; 2󱻱4&', 'GZG5_ܚXS[WS:9p@?', '', 0, '?'),
('=QtL8', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotEnoughParametersException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotEnoughParametersException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'uC)ģ%O', 'e.wٷkTQ|0ym', '', 0, '?'),
('?h;', 'wp-includes/js/quicktags.js', '/home/binawebp/omsrislb.my/wp-includes/js/quicktags.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʵ>	%nK{<5', 'mwd^ʋ\r1^K(<nV', '', 0, '?'),
('D\rh}!\n', 'wp-includes/js/jquery/ui/effect-drop.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-drop.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j]v&ZYЈy', '#FYO&d"\nuj', '', 0, '?'),
('Hw!9Z<ts', 'wp-content/plugins/elementor-pro/modules/forms/actions/drip.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/drip.php', 0, 'L''bɢM', 'L''bɢM', '/=0ScZqjfg{h`Ć0', '', 0, '?'),
('P<hlRA', 'wp-includes/blocks/list-item/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/list-item/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	>qe	;', 'Kz2B*c3pr[Qڏ]]', '', 0, '?'),
('UƇ]tW(@,', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CurlTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CurlTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&%', 'IAy"BjnQСz7|Av', '', 0, '?'),
('wѲ7ETd', 'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7:Dy}1_QQ', 'jo\0ݕm%;9wyn;)', '', 0, '?'),
('{VcR>ԈA', 'wp-includes/blocks/code/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z\r D-\ZBq', '9dXׂlǅ昖e', '', 0, '?'),
('~[4SΌV^i', 'wp-content/plugins/elementor-pro/assets/js/loop.cfa59b67362d5bf08739.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop.cfa59b67362d5bf08739.bundle.js', 0, ';ye3', ';ye3', 'Pl+5Vq"ĺ"/qt%;/', '', 0, '?'),
('I}K:h', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/OptionNotFoundException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/OptionNotFoundException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߁k>ފ @6', 'Z)rJy\r=D7:\\d69}AJ}}', '', 0, '?'),
('c.Dr |', 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RZ?f.8	', '.c%c*G~բ>Yd:7j', '', 0, '?'),
(';Ɨ,.', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-diff.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-diff.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'URr5Ʊ/$:r', 'fcu#Or믞Rw+(̀a^', '', 0, '?'),
('츃v6;~', 'wp-includes/js/tinymce/utils/mctabs.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/mctabs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '끡"Y>xU季', '%Y}ڿ&)MaYgЍ*l', '', 0, '?'),
('!<B4\ZS}', 'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'le@1-', '+	[P\ri-b0mƥM"#@', '', 0, '?'),
('[Ӄ2W', 'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q4*ZV{\ZCdm<', 'I\\ty}Hi2%Jw<r1', '', 0, '?'),
('-x(EoI=', 'wp-includes/class-wp-customize-section.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+oo\nA', 'Abq''1+DQ4h', '', 0, '?'),
('7sfw-', 'wp-content/plugins/elementor/assets/images/placeholder-v4.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/placeholder-v4.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'o&V%u/v', '~WLBu/?W3645ѥI', '', 0, '?'),
('?CIFZɝ3', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ModuleNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ModuleNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}+0H4gJ6ŕW', '5u!ޔb=''G"4Oή', '', 0, '?'),
('B֤[81', 'wp-content/plugins/elementor/modules/promotions/widgets/pro-widget-promotion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/widgets/pro-widget-promotion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4.u)G>*', '6^oECn.m_iB?', '', 0, '?'),
('Ư0~\rjA4u', 'wp-includes/css/customize-preview-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E?nZd-', 'Gi\rliU^nrm5Ώۻ\\l', '', 0, '?'),
('LV-^+FY', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0Ж몤@Pጩ', '8r)B*∉3!z6/+VW*l7', '', 0, '?'),
('\\SՇ8;2', 'wp-includes/class-wp-tax-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-tax-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0@5U1]ƿ5t', '*\\>:t~0SgK+jl', '', 0, '?'),
('=ۓV=mi$', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XFBom$X', '>IN["7T#O\0ӭ', '', 0, '?'),
('mהF@$~r', 'wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+#"bMBLK[6', 'Sk!,BO#	Qdz{w-z', '', 0, '?'),
('t"\nkR', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.cecfa624e2d23a156519.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.cecfa624e2d23a156519.bundle.js', 0, 'SQ^Ln', 'SQ^Ln', 't\\elB8$<`f2', '', 0, '?'),
('ʮlOjoLrG', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TemplateWrapper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TemplateWrapper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/#L$4}I.', '+(,&Z m ).\0Kg(|n', '', 0, '?'),
('&e`9ԣ\n3Y]}', 'wp-includes/blocks/image/view.min.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4ǹ|?ad', '7\nejbu.bG_LOO', '', 0, '?'),
('$>ŁM@', 'wp-includes/js/dist/script-modules/block-library/accordion/view.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/accordion/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fd\0p	]', 'c5؎=Ο}p]ұN	', '', 0, '?'),
('2:.Gޤ8e', 'wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KPxeEJ{', 'Iy9*7)8	k\n', '', 0, '?'),
('56H7m˱', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*on=Ed', '+	C4048w<X函2)A!CH0', '', 0, '?'),
('N''!\rBj3', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\H!#>bW', '&xwαh)œ@5m.)9R', '', 0, '?'),
('R" 3ɩT', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/module.php', 0, ',bxvV:a', ',bxvV:a', 'J''OYvBb/\Z*byBZ~B', '', 0, '?'),
(']@\n>ĺYn', 'wp-admin/admin-post.php', '/home/binawebp/omsrislb.my/wp-admin/admin-post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';(''hH4', 'v	:$Y<3)qڏʲx', '', 0, '?'),
('_\07\\@Vd', 'wp-content/plugins/elementor/modules/floating-buttons/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':vK|:SI}', 'cE5=ܟ/(	joHȯ$', '', 0, '?'),
('l(C', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''AAF"2"Z\0_', 'H5PI?%%C*\0', '', 0, '?'),
('~q:ӄ', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/page-title.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/page-title.php', 0, '4m:	r', '4m:	r', '~:ٰd"^A2r5Y', '', 0, '?'),
('JРqF@', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-wys.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-wys.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' -m5OE', 'cp$N\0/fCZ7>/', '', 0, '?'),
('I0B,hʛp', 'wp-includes/class-wp-term-query.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-term-query.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I&V:V:s))', '2킰NtR,YsL#~OE&u', '', 0, '?'),
('홋|dsܙk<', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-social-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-social-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'PKY\04', '=ʭ''פ1ŉf:UmZ?@', '', 0, '?'),
('흲MBB#~', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConditionalExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConditionalExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b0cV', '~WJc>qȯ3ϕXߠ|qE:t', '', 0, '?'),
('賮]', 'wp-includes/customize/class-wp-customize-code-editor-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-code-editor-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jMіlM_', 'xFZKc37`Ԫ$jg]Q', '', 0, '?'),
('Z\Z5\nj}@', 'wp-includes/blocks/buttons/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ЛfXb9f"ŅVa', 'y"fQ-p4<U>V\0Gޔ', '', 0, '?'),
('Fm', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+ʸx53z', '?aaU''9,鮟nC5"6?', '', 0, '?'),
('Z\ZaYH\0 5~ ', 'wp-admin/includes/class-wp-automatic-updater.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-automatic-updater.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@6zl|93/C4<', 'j !U";e\nY)j?ũ''ǙHȴ', '', 0, '?'),
('V&vkÉ', 'wp-content/plugins/wp-optimize/optimizations/transient.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/transient.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{YVlN?}dlE', 'MPds1fWdm8j:{qH>c$f', '', 0, '?'),
('QR"@3vS', 'wp-admin/js/link.js', '/home/binawebp/omsrislb.my/wp-admin/js/link.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '϶5֞P', 'Onn˕{?Q!=Voi', '', 0, '?'),
('G ~`', 'wp-includes/customize/class-wp-customize-nav-menu-name-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-name-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7fW՚7', 'pvw ܪ9?az', '', 0, '?'),
('ˋ=D', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/GuessFromExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/GuessFromExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K\Zvey);Uj''', 'ioN0 dA޼e1A=[x9uWz|', '', 0, '?'),
('`,hEf;', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(hp9N(*', '|pO#,NMg|"B&', '', 0, '?'),
('UEKڂ*U', 'wp-includes/blocks/gallery/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0]j\rӞ:p$', 'W%)D\0JޖzO2HHC', '', 0, '?'),
('\Za]]A''h', 'wp-admin/network/settings.php', '/home/binawebp/omsrislb.my/wp-admin/network/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gJ>Bn8(<MyY', '.uEcc4*xyP\nP2mQ', '', 0, '?'),
('=cه', 'wp-admin/includes/upgrade.php', '/home/binawebp/omsrislb.my/wp-admin/includes/upgrade.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dvB?̱ho', 'MKkʀϤa^~m{\Zl<z', '', 0, '?'),
('c<gbɼB', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H~&lSSk', '$i'',j`HfV$ѹˌYʾ', '', 0, '?'),
('eCDi!', 'wp-admin/css/colors/coffee/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'HCD~I2', 'Wn''ѸZ!ÛL+=&o', '', 0, '?'),
('\\g2qah', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mφ,l7', '/[(= HݤY)B+[%ަ', '', 0, '?'),
('W[_|Y,3n', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^De|}qh', 'RUTx{f?䠝&¨4e', '', 0, '?'),
('C\0''Gy|NU', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APCu.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APCu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1LS7U/@', '02ohMf?=}.J@', '', 0, '?'),
('x@0b\0w°', 'wp-content/plugins/code-snippets/css/edit/_upgrade-dialog.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_upgrade-dialog.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zn)Q', ']=fş-:0næJ*D]O', '', 0, '?'),
('nDSs"1%F~', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-htaccess.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-htaccess.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pwH7D', 'CXgu˨(''LRDuFZBj{', '', 0, '?'),
('f%uP', 'wp-includes/js/mce-view.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/mce-view.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h}7ȫ\nB', 'r"vZejR7f/T̶=qJۊ', '', 0, '?'),
('vגּ+', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityCallNode.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityCallNode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1\0ly@lXw', 'uׯy~o{ALvt"!+I''', '', 0, '?'),
('\Z{:\Z4f', 'wp-includes/js/customize-preview-nav-menus.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-nav-menus.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[Nm lVҪ3', '5,M35n(tL5;^P/9z8', '', 0, '?'),
('+/AgvL[U', 'wp-content/plugins/elementor/assets/lib/animations/styles/pulse.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/pulse.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E( )@6φ1', 'x<+$`3wC \Z[˯\r', '', 0, '?'),
('.z&.1y', 'wp-includes/css/dist/format-library/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'K4:^"@j', 'M/ay,[At*쒱r+S', '', 0, '?'),
('616Oi', 'wp-content/mu-plugins/sso.php', '/home/binawebp/omsrislb.my/wp-content/mu-plugins/sso.php', 0, 'Xڏ=ޫ', 'Xڏ=ޫ', 'y0]"ol>sRH2W@g', '', 0, '?'),
('7Z7jϵӭ#', 'wp-content/plugins/elementor-pro/modules/loop-filter/traits/hierarchical-taxonomy-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/traits/hierarchical-taxonomy-trait.php', 0, '53y*v', '53y*v', 'NS\Z3s0,\Zr\Ztk]!''R', '', 0, '?'),
('<A!"TM?wy', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q$P''ǂiٕc', '-UAT:8|HɤH>\0k', '', 0, '?'),
('?kbx_JM', 'wp-includes/blocks/comments/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dGL^1\\8o', '|^TXϢxSj~5''[L8CD', '', 0, '?'),
('K.bx{;', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c3:U"Ov', '}&,$,[o1>oAJҝ>', '', 0, '?'),
('Mj	uã*Y', 'wp-content/plugins/elementor/modules/apps/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u3>f`', 'Soq~9kvwV{35SL6RD', '', 0, '?'),
('N2uU`', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M,sT(\n:v', '9z|-ЮU7nV"Ҧy2', '', 0, '?'),
('QnB2Zl䭑y', 'wp-content/plugins/elementor/includes/base/element-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/element-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':2''P.Ej~˧g@', 'UH}͛\nQ4_\\NtQl@/\r', '', 0, '?'),
('Q+t|.T"', 'wp-content/plugins/wp-optimize/js/loadAsync-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadAsync-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0"8Oq62', 'ܸt\0r]tfrFP⬺DF=˼', '', 0, '?'),
('Si&ɮ|2zJɽ~', 'wp-content/plugins/elementor/assets/css/modules/container-converter/editor.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/container-converter/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sP''$lY3', 'l&^VSԘm#.ˆV&', '', 0, '?'),
('ULD]F', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-notices/updraft-notices.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-notices/updraft-notices.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hiP5[䐞''', '\\7\\IQ1_B(\r#', '', 0, '?'),
(']/x@=Cs', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/FactoryParameterResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/FactoryParameterResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!JdWǆ[', '$XJ''{`.GU!h\nCe', '', 0, '?'),
('eNr!X	S', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LHK-2''\Z', 'ZnҴ<{e[$-zD:-', '', 0, '?'),
('il\0֏ss', 'wp-includes/blocks/post-author-name/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}rMXo', '~	(Z<=$ޤ#ݹw', '', 0, '?'),
('pqKg4k', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vK<t Q', 'O[^yV`=h+ﰰd\0-', '', 0, '?'),
('rtC\nc8:#2', 'wp-content/plugins/code-snippets/php/snippet-ops.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/snippet-ops.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\4#\\MW4]', '540Ѝg`RZK2^OV', '', 0, '?'),
('vXUޭ.كu', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/twenty-nineteen.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/twenty-nineteen.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Хg-T{Z^ 9 ', 's	6c<Fh+gis\n', '', 0, '?'),
('KߖY	mT', 'wp-content/plugins/elementor/modules/ai/connect/ai.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/connect/ai.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!i,{JxbH+', '|br螀''GP{', '', 0, '?'),
('J"(9/', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-elastic_tabstops_lite.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-elastic_tabstops_lite.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z->', '-Hrp2\nGjF''G\0 H', '', 0, '?'),
('Y\ZTJhT', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.less', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.less', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!Q$v&g=Yy', '̥{:VY<˟͸Ar9\0Qa', '', 0, '?'),
('4ŹO.', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Lzn2', 'q732ΨCb\0\nyY7z׌', '', 0, '?'),
('!#0u)`^3', 'wp-content/plugins/elementskit-lite/libs/pro-label/views/modal.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-label/views/modal.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y\n7S', 'ߣ:Abg.z\0_]i\Zw''', '', 0, '?'),
('<񙘪ܢ$oE', 'wp-content/plugins/elementor/modules/floating-buttons/documents/floating-buttons.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/documents/floating-buttons.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O\0V', 'y!&''/Dy"^CܶIjjn$~w?', '', 0, '?'),
('o.9HfO', 'wp-content/plugins/elementor/assets/js/0f7962315cd2e100f80e.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/0f7962315cd2e100f80e.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C\r}=k7\r', '[ΟO?\nb\\%71z''`O3', '', 0, '?'),
('H.wQސ', 'wp-content/plugins/elementor/assets/css/widget-image-carousel-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-carousel-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z$}l|xt\rrP ', 'E܄^,".(*m^A', '', 0, '?'),
('<7vY6?', 'wp-includes/blocks/separator/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mfP,f''׼tOgQ', '8vY͜ {kzf7{+', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('ã%\0bmlm', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/oh-animator.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/oh-animator.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WZqv4)q~N', 'jvEP+Na)@!#KR/=yA', '', 0, '?'),
('ί?gW9', 'wp-includes/blocks/embed/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\"m]@C', '*ē#FϚ\0jk5h5ݢ<', '', 0, '?'),
('\r''yJ-Ka\ZC', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm݆b{!\ru)', 'a?LVب&u\Zn^o/', '', 0, '?'),
('b;\0', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.asset.php', 0, 'O"\n-e࣒?', 'O"\n-e࣒?', 'ҖYUGSHg6L}ѭi`2 ', '', 0, '?'),
('=!yP', 'wp-includes/Requests/src/Exception/Http/Status414.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status414.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '㰚Del~Jp', '.Hm<+ۦ)ҝDQ<5', '', 0, '?'),
('NFVYC', 'wp-includes/blocks/shortcode.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-Xלꃹ', 'nW?cI˜ӦY}=\Z@Y4?r', '', 0, '?'),
('uy؟uV@/', 'wp-includes/class-wp-block-patterns-registry.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-patterns-registry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(e126d', 'O᫃mhQ΃qf{(焝Ie', '', 0, '?'),
('- YI*(''F\n', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/reset/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/reset/index.php', 0, '\riBc', '\riBc', '4B;ͪ''nnK$m`\rZ', '', 0, '?'),
(';oL;C.-', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/plugins.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/plugins.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#껣nS', '̙HCW%\n$o9K5F''+', '', 0, '?'),
('7k`B,', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Parser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q|Y', '$~{ﴂU>)(#x\\̦#}', '', 0, '?'),
('@}&J~¾&\0', 'wp-includes/customize/class-wp-customize-new-menu-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-new-menu-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NpaCqk', 'F0HyceLuQ&LiH\nDũK', '', 0, '?'),
('+-ѝa~1', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-03.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-03.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\"#Hm', 'Έ=ΡWQ;y[y׼', '', 0, '?'),
('3\rw^1ACX+', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/support.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/support.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i\nUUm\Z', 'J"!땑eNAFME3', '', 0, '?'),
('7ke})KWs', 'wp-includes/SimplePie/src/SimplePie.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/SimplePie.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʾ~\n~', 'gIH)Aj/q\Z`1җ\rt;gs:', '', 0, '?'),
(';Lt׬Cɣ', 'wp-content/plugins/wordfence/tmp/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/tmp/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Iz~i,L', '	HQIqzڤp9C4>H3G', '', 0, '?'),
('Y^~5~pG-', 'wp-includes/js/customize-views.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-views.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"FY{-ஒ', 'eT JrazOX	/TT%', '', 0, '?'),
('_*!#F	A/<PJ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L2"g#h%2', '7!rhuSGtI5h=?4dsᛂ', '', 0, '?'),
('d_9ѭ', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/refresh-loop.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/refresh-loop.php', 0, 'RUZ"Vst\\', 'RUZ"Vst\\', 'HgnTCSd/ӷzW=Ia,/5?d', '', 0, '?'),
('h<n}P~lm1''', 'wp-content/plugins/elementor/modules/dev-tools/deprecation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/dev-tools/deprecation.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i,eqR', '1]Iީ-s\r8Toxk', '', 0, '?'),
('jU30<gb', 'wp-includes/blocks/paragraph/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ll@;''v@U:', '۩P(}U-\0\0rAFkSA,%', '', 0, '?'),
('mKm?!!I', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!>&H/[4l\\', 'U-QnyAoĤ_즠B8׏$\r<c', '', 0, '?'),
('u_~!\0', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y=\nY992', '6\Z/py5EحOE', '', 0, '?'),
('w`y_r޹]', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '྄0-8{#;\\', 'Ɣ"B\0W~?l;!<\0hT3,', '', 0, '?'),
('z|zxv', 'wp-includes/js/jquery/ui/droppable.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/droppable.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i4*H\ZZwl', '?rܶK~Ϧc$EY֠W>'')', '', 0, '?'),
('˕r&qFi', 'wp-content/plugins/wordfence/crypto/vendor/composer/installed.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/installed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!yWU[u3FQ', 'ķ͞&FIfYG0', '', 0, '?'),
('"̽;	', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/translations-central.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/translations-central.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R[-\rz''yڦ', '뤖8UD}+XYKc	+', '', 0, '?'),
('ң+\n"H&k1\0', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's9"`u_E8\Z', '>$Iׅ5CN{AMS)WڤU:', '', 0, '?'),
('2jR7kޔ\Z', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/AssociativeArrayResolver.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/AssociativeArrayResolver.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}򳳟cUvn', '$y;?ϰs"df%\0$H|\09', '', 0, '?'),
('A<c&LcZa\Z', 'wp-content/plugins/elementor/core/logger/items/php.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/php.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cBJ''O', 'c&\ns\nxz~c[/', '', 0, '?'),
('M`j''', 'wp-content/plugins/wp-optimize/cache/class-wpo-cache-config.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-cache-config.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yوX 5b*_', '{TopQ*Ϝ8#_:E', '', 0, '?'),
('N::\rx', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/PosUnary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/PosUnary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']9<\\,=', '!Z8H"t흋aAd:a$>', '', 0, '?'),
('ﾘQ)B\n,', 'wp-content/plugins/wordfence/images/loading_large.gif', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/loading_large.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y{ObUW~Y˙', 'p8''	t:Qo]{5G1E', '', 0, '?'),
('Pa`Xu', 'wp-admin/css/color-picker-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/color-picker-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '蔼;dZܫI', 'H(C%AˈV%f%\0CQ', '', 0, '?'),
('{ \rSlſ	', 'wp-content/plugins/wordfence/views/.htaccess', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/.htaccess', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E"xK{8dS', 'C''r9@Kކtw#@k', '', 0, '?'),
('X=UpfpZ', 'wp-includes/taxonomy.php', '/home/binawebp/omsrislb.my/wp-includes/taxonomy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>!"Ԋ', '¸H4e,	zX\nnl-٭(', '', 0, '?'),
('4~^U1Ex', 'wp-includes/blocks/site-title/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'GM"t|', '` \rpJɁ6ې\Z[2k', '', 0, '?'),
('ܠCr5^', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-2.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-2.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|pJL[ٙL<', '^z)t3VhYK(''Z6', '', 0, '?'),
('ތt+\\+XaZU', 'wp-content/plugins/wordfence/lib/wfScan.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScan.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z{AZ(cZK%', 't/sP/c2w&q''M5V', '', 0, '?'),
('ࠊR\00W{\Z', 'wp-content/plugins/code-snippets/dist/editor.js', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NȞxq̸o{', 'd[2kHpk2(3~\Zۈy', '', 0, '?'),
('㯩	''ިV', 'wp-includes/images/smilies/icon_biggrin.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_biggrin.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KJr:]kI|', ':ٔMX%	<8g4', '', 0, '?'),
('6XԪ4[_=t', 'wp-content/plugins/wordfence/lib/wfScanEngine.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanEngine.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#\0j=v,', 'TyȤҘ6,[%9iOS|[]u', '', 0, '?'),
('d*)48cA', 'wp-content/plugins/elementor-pro/modules/table-of-contents/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/table-of-contents/module.php', 0, 'HPCx8', 'HPCx8', ',`VƁ\0%.$9i;nr9乏A?)', '', 0, '?'),
('cG(`E', 'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-configReadable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r\0lp_р>#', 'T,}1waY4BI]wAX۵', '', 0, '?'),
('aۖDgjޟK', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/composer.json', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/composer.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^CB-^)', '݌yq	ὭE;eun\rvh\ng\0>|', '', 0, '?'),
('HF>G', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/dashboard.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/dashboard.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iupSح~,wP>n', 'oP;e:F?_PG}2sn', '', 0, '?'),
('9rMԧ', 'wp-includes/js/customize-preview-widgets.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}E{''$S!', 'z1xئeDK]M''!G''{33', '', 0, '?'),
('\0WNeHҒ', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/select2.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/select2.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8A3$k~', ']=6<$@ɉ2bq)/HHN', '', 0, '?'),
('&gJP5@', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&]7$ͺ7', 'H(Oo$-ulfLh^', '', 0, '?'),
('(SY++N', 'wp-content/plugins/elementor/assets/images/app/site-editor/archive.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/archive.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F+v&${#ġ', '^HڿoRD5gAFQGB', '', 0, '?'),
('\nJVHv', 'wp-content/plugins/elementor/assets/css/conditionals/e-swiper.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dbޘ', 'WS(x>M&<I', '', 0, '?'),
(' ލ<:9|6', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Nu)wgơg^&', '5!셔N{Gcy]>\\;B!', '', 0, '?'),
('6)Jo*Nn+', 'wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '洩`"@)', '[(Q@̊#2\nHeEc{רxH8:', '', 0, '?'),
('$īI^3', 'wp-admin/menu-header.php', '/home/binawebp/omsrislb.my/wp-admin/menu-header.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R?875Ƀ ', '^kdUص7u7~a-;', '', 0, '?'),
('3lrP_B', 'wp-includes/css/dist/block-library/classic.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݮux2V8C', '69S$B#n.0%8lF*$"', '', 0, '?'),
('6fݞA5OĬ', 'wp-content/plugins/elementor/assets/images/no-search-results.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/no-search-results.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WF<+e', '[~;Ll a:9*#', '', 0, '?'),
(':k\n:_9)jPp', 'wp-includes/blocks/tag-cloud/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Uʧ', 'D.S\Z㺾A.6+', '', 0, '?'),
('=Zzq2(', 'wp-includes/html-api/class-wp-html-active-formatting-elements.php', '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-active-formatting-elements.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''W!', 'Iܷ]S@5)9؛O]p', '', 0, '?'),
('B4k\0zϻe', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-htaccess-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-htaccess-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!<Qc|4T9b', '+HΖLj[dvBrg*@@w', '', 0, '?'),
('I/\ZN2p', 'wp-includes/sodium_compat/src/Core32/Ed25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Ed25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*e/', '1he+:zaͣ4@', '', 0, '?'),
('I}WOec<3ۗ', 'wp-content/plugins/elementskit-lite/modules/header-footer/views/modal-editor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/views/modal-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Rm՘,U<S', 'k;q&L7\\[ʐ\\\nnݶJa:', '', 0, '?'),
('KF$2qHb<*>,', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H\\FMP	^', 'аSThD>wD\n});TQ1&', '', 0, '?'),
('K}%XCvx', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\\\ZEn', '{GS0).~#m}:2', '', 0, '?'),
('PRmF*a!', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/InlinePrint.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/InlinePrint.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^G8`&q,MڭJ', 'D18sOv)#?Dj''!f~r\n', '', 0, '?'),
('S9QeI3', 'wp-includes/blocks/details/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b2|^v', 'W)tV3>M*ہTCjOc$ˈ8߲', '', 0, '?'),
('UQޑڹ}F', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-fonts.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-fonts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S"v6U"曰', 'y`\\wIYC,%aY', '', 0, '?'),
('`\n8\\34^', 'wp-content/plugins/wp-optimize/cache/class-wp-optimize-cache-commands.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wp-optimize-cache-commands.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~Plyi7(', 'TU!:((YBl', '', 0, '?'),
('kG\0o', 'wp-includes/block-bindings/pattern-overrides.php', '/home/binawebp/omsrislb.my/wp-includes/block-bindings/pattern-overrides.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h;	3X\0', 'qy91UgH}{Ce', '', 0, '?'),
('pqz-Mo4', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceCache.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceCache.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pik\rvo', '_\Z	#K-9AD\nS]', '', 0, '?'),
('wfc5VY', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parentNode.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parentNode.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',;Ғgˇ\\ˡ(', '-BH$\ZEAdt', '', 0, '?'),
('Q=&L', 'wp-includes/js/tinymce/skins/wordpress/images/style.svg', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/style.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X|''Gu', 'ݲa#)`n%"TjO\0%(x', '', 0, '?'),
('𚕝.".fc', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U}`L$_Bś', 'ybt\\*1QL\nWXGk8', '', 0, '?'),
('''CB', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__destruct.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__destruct.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+N "qݎ', '|߆f#Wb=4u[\nK>h', '', 0, '?'),
('Wp3<\Zy"', 'wp-content/plugins/elementor-pro/modules/popup/tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/tag.php', 0, '/)]GrT', '/)]GrT', '.Y~xLsa!\\bv~#0vX', '', 0, '?'),
('9BϠ3', 'wp-content/plugins/wordfence/images/icons/check-care.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check-care.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@n?duǡos?', 'JX;W`i"[*&`K>r4	', '', 0, '?'),
('yg\r9', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q$0!G_', 'ǔUhK#űSU@', '', 0, '?'),
('Xm}{Hs<m', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/documentation.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/documentation.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!kpHi', ']лӲ\rzrb̤', '', 0, '?'),
('yunc[٧', 'wp-includes/sitemaps.php', '/home/binawebp/omsrislb.my/wp-includes/sitemaps.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`S EX^YA', '%Six3kOnz]', '', 0, '?'),
('''Q@\r', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/settings/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/settings/index.php', 0, '֝͹	LU%+', '֝͹	LU%+', 'bG/hi[m-nCc)O', '', 0, '?'),
('2EJ\0\Z]', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/web/index.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/web/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5t}p+Ϝ@z', '$#"YXdExԁWxbҲT', '', 0, '?'),
('з&L۽¨VN', 'wp-includes/css/buttons.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/buttons.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\1AKtN[u', 'SY^ĜMլ6Ġ1Mg', '', 0, '?'),
('K}R,~', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#/''Fh,#', 'o''a3T];:d6nɃH', '', 0, '?'),
('#]=e֐', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Build.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Build.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'LF˞|P=g', 'A(y;$%4l߁G6N', '', 0, '?'),
('6$[O', 'wp-admin/css/customize-widgets.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r7M~4Wb2', '+`?@L\ZϸE!HJՊ@', '', 0, '?'),
('81TȄ{<', 'wp-content/plugins/elementor/assets/shapes/curve.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G$"Ykg(._vn', '˶D=E,כ', '', 0, '?'),
('Is嶙S''', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/oceanwp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/oceanwp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}WؗZ', '+S;vuMkqNW*u', '', 0, '?'),
('rp.u3zx', 'wp-admin/includes/class-ftp.php', '/home/binawebp/omsrislb.my/wp-admin/includes/class-ftp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!''=BQ@϶|h&E', ',Ѐpw]yN)AYVL', '', 0, '?'),
('Tèc\\žxE\Z', 'wp-includes/blocks/search/view.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '𠋸d=hQ6iDB', '\\49bLٻr:m&v(ك', '', 0, '?'),
('3Pdo,t', 'wp-includes/blocks/comments-pagination-numbers.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QU{Y6\r#', 'ɂak:o3ͰQ)Χ\n>}', '', 0, '?'),
('\Zwy:[u`o?', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/condition-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/condition-base.php', 0, 'vkNX', 'vkNX', '0c<ftRAձ0u I', '', 0, '?'),
('0\n8P8ow6', 'wp-includes/SimplePie/src/Item.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Item.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$^zs', '!Eg><jϚ7uFd_', '', 0, '?'),
('"?KHD@\r', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-performance.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-performance.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D0HH3gϳ', 'Qvkbn^bۃ3`nk	s', '', 0, '?'),
('&[>j/GU', 'wp-includes/js/dist/token-list.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/token-list.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hnz	\n''B', 'r(:Â#`Y	(c!', '', 0, '?'),
('(\ZFqw3', 'wp-content/plugins/elementor/assets/js/onboarding.120a44527e5a7209a8e4.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/onboarding.120a44527e5a7209a8e4.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N^x1־`', 'WTڜue5\0@ C', '', 0, '?'),
('7s\\]}AAwe1', 'wp-admin/tools.php', '/home/binawebp/omsrislb.my/wp-admin/tools.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'IqGȧn', 'ߪրT&nDՉ', '', 0, '?'),
('Z/{LtծF$', 'wp-admin/js/svg-painter.js', '/home/binawebp/omsrislb.my/wp-admin/js/svg-painter.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cɯ	S#', 'uHDbrlt$@REYt', '', 0, '?'),
('k&]I`ŋ#Ft', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N~ǒ?<', 'mU}B6ކJʁpY;]EmM', '', 0, '?'),
('nH@!(y5p', 'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' ve7\\ʛנ=', '!hede։Swر~nI!x', '', 0, '?'),
('|ߗGE', 'wp-content/plugins/elementor/core/base/app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1Lv wG[', '0ytVY,i%"0\Z=4', '', 0, '?'),
('/i:mI\rx', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/card.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/card.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Fj-_4+|l', '`!W@X~avL&"4f"^', '', 0, '?'),
('v:DYG', 'wp-includes/js/plupload/plupload.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/plupload.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y|(He', 'SVybZjzx0L', '', 0, '?'),
('aȿ|]', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1~-i+\Z', 'T3ױ,l40ooy]', '', 0, '?'),
('ͨ޹0Ɂ䷑', 'wp-includes/blocks/video/theme-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	X6TcW#''L', 'D f7R.+;`1-p:}yu6', '', 0, '?'),
(';tYtH`''', 'wp-content/plugins/wp-optimize/index.html', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/index.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7jZ2Y|', '1a(C\n\r䆴p$P)Wfs@', '', 0, '?'),
('񟽀[uN`?ֻ', 'wp-content/plugins/elementor/includes/controls/media.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$?d(		.', '3{pJU\ratY]-v-Y', '', 0, '?'),
('񩢨|m.O\\Ő', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v`=}.GLu', '&O*LԒ<7d*O3M(7', '', 0, '?'),
('Dz;lH	OE', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsoniq.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsoniq.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q+XN]', 'i>I};V	NR&wZy+M5o\\՞', '', 0, '?'),
('eY*ZuXk', 'wp-content/plugins/wp-optimize/cache/class-wpo-cache-rules.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-cache-rules.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U?5`͵69', '1	t\0[p\Z{meU8ț<', '', 0, '?'),
('TYPpEw', 'wp-includes/widgets/class-wp-widget-archives.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-archives.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6{-', 'ٸ-u"&bܦbFL:Ez#.', '', 0, '?'),
('4$ꎪ', 'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-scheduling.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&JHNԑ', 'rh,ИQU2 VJ6}N''3iuK', '', 0, '?'),
('І$Hd+ػ', 'wp-includes/assets/script-loader-packages.min.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-packages.min.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CinN%g5]n', 'v{ghҌ#?jSlE75{]?', '', 0, '?'),
('ڳ1岤z̜', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0k_CɃ', 'Jٺg@+꺛biNw+C{', '', 0, '?'),
('WJfzi\n`', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-custom-css.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-custom-css.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/\nON&<㐂', 'R <~6?Mם{Gu<b,{', '', 0, '?'),
('絛zy>_+t', 'wp-includes/class-wp-user-meta-session-tokens.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-user-meta-session-tokens.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gݑ91A_a', '+?/A;''HjDQa', '', 0, '?'),
('	FAagф]', 'wp-content/plugins/elementor-pro/modules/forms/classes/convertkit-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/convertkit-handler.php', 0, ' (?`QBZ', ' (?`QBZ', 'AHj^&!3TPoƓL=68', '', 0, '?'),
('Hr #w/:4', 'wp-includes/js/dist/plugins.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/plugins.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R>Ĉ]yB\\', '#JjqmO5''W?c.y', '', 0, '?'),
('\Z9b3Ғ', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mdZ[?s', '߃lb~LJeSw;)4l', '', 0, '?'),
(' 	eLWdT)', 'wp-content/plugins/wp-optimize/templates/status/status-page-ajax.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/status/status-page-ajax.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Dz̾ƱG', 'Q~!frvf72vwD9cD', '', 0, '?'),
('!X|@', 'wp-content/plugins/elementskit-lite/compatibility/backward/plugin-class-backward-compatibility.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/plugin-class-backward-compatibility.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '߿Uдm\\', '1@15=i\Ze$3jK', '', 0, '?'),
('*pS', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ei)Ǐ', 'gWX6''2o@fX  Dp\Z8', '', 0, '?'),
('/+FXD`fP!', 'wp-content/plugins/elementor/modules/system-info/reporters/base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rوX磯Ԇ', 'S.d]Y-	QNJ\0i>r\r', '', 0, '?'),
('1\nx', 'wp-includes/blocks/latest-posts.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+{0t', 'QRX4}ǡ\0`ƅn߻x', '', 0, '?'),
('4Q{PB\nl', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MatchesBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MatchesBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dv\\]?eF%p͞', 'z)Y\n6mxw4(6^', '', 0, '?'),
('?E_)xڅ$', 'wp-admin/includes/deprecated.php', '/home/binawebp/omsrislb.my/wp-admin/includes/deprecated.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&T;e"', 'VSDVnmJ[Db', '', 0, '?'),
('J-؅1,<', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.css', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X'':to', 'X}1PSp\nǲNzP', '', 0, '?'),
('L>;*	Y۞m', 'wp-includes/blocks/preformatted/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'OoJ}[׻W', 'mA-`8	P ay<(', '', 0, '?'),
('_cX"', 'wp-content/plugins/elementskit-lite/widgets/social/social.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social/social.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')r|ɞp', '`g"XyI}h~5XoB', '', 0, '?'),
('cȿԂ֤a[{', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4<1ZysFq<', '2od.XH;$60طX8@X', '', 0, '?'),
('dTofҷbS', 'wp-content/plugins/wordfence/lib/menu_dashboard.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_dashboard.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'O23̥ۅ', 'ߪW=C`gMJܞ', '', 0, '?'),
('eăZms', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yTϲ', 'v^95&A@ΐϻr', '', 0, '?'),
('j//i̟\n*R', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Options.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Options.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[fxem', 'UamT^]+a*oqC''X϶eab', '', 0, '?'),
('j\nj<c@BX', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']}q\0', '9zf#\ZmׯRK	x%yi ', '', 0, '?'),
('lDe\0^\0', 'wp-content/plugins/elementor/modules/announcements/classes/trigger-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/classes/trigger-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӛz\ZGCt', ';	,%43pt;1Md7)', '', 0, '?'),
('m*+A!!<', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&Ml2͉AlKS', '+}\ZrB^ͺg', '', 0, '?'),
('n-_uL9ۘ', 'wp-content/plugins/elementor/assets/js/text-editor.c084ef86600b6f11690d.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-editor.c084ef86600b6f11690d.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jq/J*f:gIY', 'Lk4k''>UbMYg', '', 0, '?'),
('poX0%', 'wp-includes/css/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+BF]', '#.{\Z/K 9\rm2қz6F[C}', '', 0, '?'),
('u;Ȍ0qw=', 'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1A׶$^>', 'p}:\\O1Q6XyTY', '', 0, '?'),
('FWrV', 'wp-content/ai1wm-backups/index.php', '/home/binawebp/omsrislb.my/wp-content/ai1wm-backups/index.php', 0, 'A-pޜ\r͈V', 'A-pޜ\r͈V', '=+O²2E[VOD', '', 0, '?'),
('?=䃍b^', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~$xM6filK@', 'J]''\Zu(XݴR"', '', 0, '?'),
('$c{97^ІJg', 'wp-includes/js/dist/server-side-render.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/server-side-render.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<ŭ̠մ', 'c\\p`n" ŚoA1F%:S', '', 0, '?'),
('\Zl8/~', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sӔ"Ku#', '|*~rǪ byDRãAx', '', 0, '?'),
('ŕoi|}', 'wp-includes/block-supports/custom-classname.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/custom-classname.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=FGrk9', '{ͪ7*wz\rp3a3ꅧ7@', '', 0, '?'),
('0Gw', 'wp-content/plugins/wp-optimize/templates/performance/404-detector.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/performance/404-detector.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~tem\0U', '7SzЕ\Z0%tX\rZJq,MwJ', '', 0, '?'),
('M٦M/`', 'wp-includes/js/swfupload/handlers.js', '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/handlers.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('򱠭BRzY', 'wp-includes/js/jquery/jquery.table-hotkeys.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.table-hotkeys.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ogo~iI	', '<=;:t_,wăI,,', '', 0, '?'),
('򴊡5ǝ\r:Yb', 'wp-content/plugins/elementor/assets/js/floating-bars.7efeeb8b098e55999ff1.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-bars.7efeeb8b098e55999ff1.bundle.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j*Kџz<*', 'R*J6˽Б756\r2F\n', '', 0, '?'),
('?{o_''n', 'wp-admin/images/resize-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/resize-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{3VVFVf%K', '懴y2qZo~([`\0`Ci\ZL''', '', 0, '?'),
('ޡwGub', 'wp-content/plugins/elementor/assets/shapes/drops-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/drops-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Sl_yք', 'QWgݱq7˰5".Fº', '', 0, '?'),
('_f $O<o', 'wp-admin/js/common.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/common.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't@S0', ',W1Ah;j,y7JZq),', '', 0, '?'),
('Љ75&^', 'wp-content/plugins/elementor-pro/modules/compatibility-tag/compatibility-tag-component.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/compatibility-tag/compatibility-tag-component.php', 0, ';vVjDkg', ';vVjDkg', '8DmPakD5r''FXxj1', '', 0, '?'),
('%\0zfNpS', 'wp-includes/js/tinymce/plugins/wpemoji/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpemoji/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SEx=d~eM', '"w%%{=L(hK\rƢHP', '', 0, '?'),
('w+"+$^', 'wp-content/plugins/wordfence/lib/wfLog.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfLog.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mQN', 'u-XU#(JT\r/G', '', 0, '?'),
('"6y82/ZF;', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ejs.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ejs.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l1a1M', 'QMBͦ	aڿ4FS§bM4@$"', '', 0, '?'),
('au7JD"Bu', 'wp-content/plugins/elementor/assets/images/library-connect/left-2.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/left-2.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yxc~ک[', 'c``E''GP$_@-\n', '', 0, '?'),
('6U*)u1@)\0P', 'wp-includes/blocks/navigation-link/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n	nоXB', 'ܵ3\nȲf$\n_\r:z`X', '', 0, '?'),
('R8K\rN', 'wp-content/plugins/wp-optimize/images/notices/updraft_logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/updraft_logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݲetޡ½6', '(Xv\06vU+gj{"3', '', 0, '?'),
('_Mݰ[5ï*', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounce.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounce.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y''\\(o', 'gv Pģ+:\nBe_flI22!', '', 0, '?'),
('`CU', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rZ`<y޷_\\$', 'I&l~lht8Z&^', '', 0, '?'),
('aeכR89', 'wp-content/plugins/code-snippets/dist/editor-themes/bespin.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/bespin.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/Q', '\n!|foٹ=9ݘ}yvX>1`', '', 0, '?'),
(',]%E', 'wp-includes/js/dist/views.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/views.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z4l	vc5', 'x;\nV<NUsu	JW|%_', '', 0, '?'),
('"N:^BF', 'wp-content/plugins/elementskit-lite/modules/controls/ajax-select2-api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/ajax-select2-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`\rKl\0[OG', 'knZ\ZչDTVŃ`_+iL', '', 0, '?'),
('#\\/vXR', 'wp-admin/js/theme.js', '/home/binawebp/omsrislb.my/wp-admin/js/theme.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W1JϷ', 'oo\nFNjl\\1"ۯe\ZLXŚ', '', 0, '?'),
('$Ova8%', 'wp-includes/blocks/text-columns/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '++R\r', '$Y|eqЍu\0dfDbtF^	T', '', 0, '?'),
('*upy[\Z', 'wp-includes/class-wp-token-map.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-token-map.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7L|nA', 'T3.<L\n/XN᪓2i=]V', '', 0, '?'),
('BHEX&', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/scripts.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/scripts.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mH{]AAׅ9E', 'E!uշ{V0f^8{', '', 0, '?'),
('P|H`y\0', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/maze.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/maze.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M;GAE59\\', '1X9eSއeIeW2-bl0Z', '', 0, '?'),
('Rڋ^B}:D.Up', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-render-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-render-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>n ', 's:d|s1cԉUMD', '', 0, '?'),
('WnF&`', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/featured.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/featured.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?fmZf	:%#', 'NٲO	%J1gʕ~aZR(', '', 0, '?'),
('_<Dhg', 'wp-includes/block-patterns/query-offset-posts.php', '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-offset-posts.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'NtW42:', 'բ}=%f|ޞVؔ#/=ȼk얜*', '', 0, '?'),
('lFc뒕L', 'wp-admin/js/iris.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/iris.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '22?ޡ{', 'dUD2G#lk^[\Z', '', 0, '?'),
('q)yj`I', 'wp-content/plugins/elementor/core/logger/items/file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!\n+@Jھ}', 't6]՘;yЋ@"RC5\r', '', 0, '?'),
('zo)qym', 'wp-content/plugins/elementor/assets/css/widget-text-editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ') @\0*0vu', '*w&jhƎeZ_Fgl+]|', '', 0, '?'),
(',o!zj"', 'wp-admin/css/edit.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/edit.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yώ}', 'zpE`(B+''#&]\Z73D`', '', 0, '?'),
('s?AZɲ&', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/DigestVault.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/DigestVault.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '& }j!0JPK', 'oQ!i	\0S>[*>\0>%C8g', '', 0, '?'),
('ؠ]fP', 'wp-content/plugins/wordfence/lib/wfLockedOut.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfLockedOut.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'X307p', '%yCw2]E*@\re;}X.v', '', 0, '?'),
('^@9', 'wp-includes/blocks/read-more/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']fp/', 'N\n:''9@cb5''A=''', '', 0, '?'),
('󛜚kKn+', 'wp-includes/blocks/post-comments-count/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"t)zq', 'G=UB0''hǯ>Og&fdآή>-', '', 0, '?'),
('pEŏ:t', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-json.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-json.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z	ѱ3=''$(', 'L0-Q)c-5>MƂD', '', 0, '?'),
('Ns', 'wp-includes/customize/class-wp-customize-custom-css-setting.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-custom-css-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Cjb`,55tK', '6`M!:7b,̧X4BP', '', 0, '?'),
('ʪRN"t', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '䚺oƚ!', ':S=\Zj{ݦ(-?', '', 0, '?'),
('?Ψc<Vb`', 'wp-content/plugins/elementor/includes/controls/wysiwyg.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/wysiwyg.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ЕPܖj&_', '.Љ%^|][Ѧy7(*4W', '', 0, '?'),
('d"%v,', 'wp-content/plugins/elementor-pro/core/admin/admin.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/admin/admin.php', 0, '-oxS4', '-oxS4', 'Cv\0D]-CͧlxX*Lb', '', 0, '?'),
('\0L6', 'wp-includes/blocks/latest-posts/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@[L,9I', 'zm,y羯;~NFvX:%]~', '', 0, '?'),
('n0%f6', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-name.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-name.php', 0, 'gL5#T/l', 'gL5#T/l', '/̑7bG{)s0g}`''5Xe4', '', 0, '?'),
('֝DIv\nIIH', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/mkdocs.yml', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/mkdocs.yml', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ryj/xÎ', 'С7:2fZ\Z\ZX', '', 0, '?'),
('zѾ_I?a\\', 'wp-content/cache/wpo-cache/omsrislb.my/services/index.php', '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/services/index.php', 0, 'ُ\0	B~', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
(':tcpC+(', 'wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-post-query.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-post-query.php', 0, '(B6M:]{P', '(B6M:]{P', '`K+Wf;B34@5|扷F''', '', 0, '?'),
('➞^՘R', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ohg[', '߁.-h4`9S _\r)I(W', '', 0, '?'),
('̠APx<', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-updraftcentral-wp-upgrader.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-updraftcentral-wp-upgrader.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e2%Ǚ^ -5', 'Al=\Zd3ʠk8@Ц', '', 0, '?'),
('Vk9۴sֿ', 'wp-admin/css/customize-controls-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ʋuDf*SÖ)ZN', 'vaPWJ;y\nW΂', '', 0, '?'),
('irh&{s', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/solid.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/solid.js', 0, 'aǧ6+G;Nr', 'aǧ6+G;Nr', '0jrYC*|h=]D', '', 0, '?'),
(';^𩸴8c', 'wp-includes/css/buttons.css', '/home/binawebp/omsrislb.my/wp-includes/css/buttons.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y؞mjm', '@:v5p"_/%', '', 0, '?'),
('S],4Fr8v', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f-\\;X=', '\Z78Ue)1/<j''&Ց+(', '', 0, '?'),
('<y׵=2', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-html.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-html.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5j4L1V@37', 'Qh$0⾦,qN7䪩B ', '', 0, '?'),
('v$b%-q]', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-restore.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-restore.min.js', 0, 'N5V<`x(', 'N5V<`x(', '(<wդ,%D)MRRh', '', 0, '?'),
('(Կɶ۾趮', 'wp-includes/js/dist/edit-widgets.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&nĤ{^sR9K', '%oH9YF=U;.odk', '', 0, '?'),
('J''#rN0a\r', 'wp-includes/images/crystal/audio.png', '/home/binawebp/omsrislb.my/wp-includes/images/crystal/audio.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nV:ωG-#k', '~B\Z-׼of|Wx\\|M)ˢ', '', 0, '?'),
('R!%h*̻}dv', 'wp-content/plugins/elementor/assets/js/packages/env/env.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N.lv)/', 'v\0FNa?6f&d&Ͼ`	7:', '', 0, '?'),
('YRYi/l@HX', 'wp-includes/js/media-grid.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-grid.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8諈s"lv', '\nQ##_^D¥0C2dip|', '', 0, '?'),
('ZQ!*', 'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`y\0#xsGJt', 'Arx?j#CFOG-S$', '', 0, '?'),
(']И\n(?W&\\', 'wp-includes/blocks/audio/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pxں5)C4\ZM', '^}b>?K8<R܊${06', '', 0, '?'),
('^vr!~gn2', 'wp-content/plugins/code-snippets/dist/editor-themes/idea.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/idea.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+k<\\"', 'eD\Ztڨ#r;d1Ze<', '', 0, '?'),
('rA\\5', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j Mvt&J', 'U\\[>4\0''Mgig+	6nQ', '', 0, '?'),
('w>d?d', 'wp-includes/blocks/post-featured-image/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f98/+&A', 'fXLTզްf9K\r?|TE', '', 0, '?'),
('π{q"(g$9', 'wp-includes/Requests/src/Exception/Http/Status504.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status504.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!gGN&asoIw', '@Ȝ\0!Fq?d,ǬMom', '', 0, '?'),
('7:b\r,ja', 'wp-includes/js/dist/blocks.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/blocks.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mkCb''T', '4^Ho^I˺jU}1QE#', '', 0, '?'),
('0\0^ܻ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chaos.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chaos.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-J$3w6k', 'c\07ciٗ?$\0FH@+>Lz<g', '', 0, '?'),
('RR5<q;݆', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/metform-logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/metform-logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '= E9Vw\Z9Kɻ', 'Y{<o%7`?ɗH''^]@xa\0/%>', '', 0, '?'),
('	geΨ2', 'wp-content/themes/twentytwentythree/parts/header.html', '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/header.html', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R.e˯[KOP', 'tͲb/un;*9"Mt', '', 0, '?'),
('b+dՆ.閔', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-testinc.less', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-testinc.less', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'khX]NU', 'JQ+{T%]:H3J\0', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('QL-\ri>JI@A', 'wp-content/plugins/elementor/assets/shapes/opacity-tilt.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/opacity-tilt.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'bXyC품yP5', '&Srp\Z\0|mKXsË^$', '', 0, '?'),
('f	W5\raR\nK', 'wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gqP]$]	 -1', 'ႫوDWS)m`<<}', '', 0, '?'),
('zZfip^2׎', 'wp-includes/js/mediaelement/mediaelement.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w\Zx5+.c', 'DRy\n:tƴ7C@W', '', 0, '?'),
('kbxϮ[ġ', 'wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{/]>n', '?OOByWsF$|;p*g', '', 0, '?'),
('j8ď\Z', 'wp-includes/js/wp-backbone.js', '/home/binawebp/omsrislb.my/wp-includes/js/wp-backbone.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c"H#$C)7', '6:OβRc5`\0=ܮ\\', '', 0, '?'),
('¾h֙ѽjﲰ', 'wp-includes/blocks/comment-content.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't`nPv;Ub', ';j{x䕔>OziZPt', '', 0, '?'),
('ϳ]fa!3', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hLx\r4Ns''y', 'eArBY*\r̗XՀݡ(߸', '', 0, '?'),
('#A?7>O', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-golang.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-golang.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j+\n.	', '~=jEvM6\0Zb~3D6N?V''', '', 0, '?'),
('N4ߏoݺ3^P', 'wp-includes/block-supports/settings.php', '/home/binawebp/omsrislb.my/wp-includes/block-supports/settings.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ulY P8bH\0', 'a''MX0ݤ|\\nÉgFj', '', 0, '?'),
('W <(', 'wp-content/plugins/elementor/core/admin/menu/admin-menu-manager.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/admin-menu-manager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a01Cȅ/', ']@N$Nq\0~b>y~\r\Z!', '', 0, '?'),
('*˰9=', 'wp-includes/SimplePie/library/SimplePie/Restriction.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Restriction.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p7GܕawhnG', 'i/u\Z׎@J>m*mNjdw^', '', 0, '?'),
('CFCT/ڮ+:`', 'wp-includes/blocks/comments-pagination-numbers/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r1Ah$RY', '6=+B)/UASz', '', 0, '?'),
(']R>w.EQ', 'wp-includes/sodium_compat/src/Core/Curve25519/README.md', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/README.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Yϛvj\n', 'Sx^V>m!-qDeV', '', 0, '?'),
('(T/IevB', 'wp-includes/blocks/table/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L''Z[e5X', 'f,$7ޜQx[2B=', '', 0, '?'),
('\nl8u,C''JI', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/functions.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Q#OL4', '&49Z3x$,N"@qzv', '', 0, '?'),
('d j%VATd', 'wp-includes/assets/script-modules-packages.min.php', '/home/binawebp/omsrislb.my/wp-includes/assets/script-modules-packages.min.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=㷥sʯ@', 'fph2=_/Lhz:', '', 0, '?'),
('u/\0\\9', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SendGridHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SendGridHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ݓK盓o(gatI&', 'ӷJ3BC;bϮm0Z*M', '', 0, '?'),
('<#hOx3\rLp', 'wp-includes/SimplePie/library/SimplePie/Source.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Source.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rI쓋+Q', 'iGb)k:DMl<s	ʁނN0bQ', '', 0, '?'),
('|>T藩Zɱ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pig.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pig.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Zb 3&.', 'U}<?w\r$\nhy', '', 0, '?'),
('!֐(yJo*J', 'wp-content/plugins/wordfence/vendor/composer/autoload_static.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_static.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6	PWn"b', 'EgpԨwh.3\nfN', '', 0, '?'),
('''4=\Z4qvD', 'wp-content/plugins/code-snippets/js/services/manage/index.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/index.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WtlaQYi?', '1-r	kjY/4$fc{6P$W', '', 0, '?'),
(')#jdSeʋ', 'wp-includes/js/jquery/ui/effect-shake.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-shake.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E\0^Vt(w*|HD', '\Zh[g6\Z"NO\Z:d/', '', 0, '?'),
('*1G鍫vLߟn', 'wp-includes/sodium_compat/src/Compat.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Compat.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ͻe*ެb', '-9j&ZO}$اK', '', 0, '?'),
('+;{|Tu:', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%X+gA', 'e0s#V,1@Sʢwv\r?$', '', 0, '?'),
('-"DʹD5a/', 'wp-includes/cron.php', '/home/binawebp/omsrislb.my/wp-includes/cron.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{[/&p', 'rI݂''=?AB"[k', '', 0, '?'),
('/z8Й', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-related.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-related.php', 0, 'o#Y"M#ѐ', 'o#Y"M#ѐ', '	25i@ly39`?E*:B[=', '', 0, '?'),
('A4e{^Z', 'wp-includes/js/wpdialog.js', '/home/binawebp/omsrislb.my/wp-includes/js/wpdialog.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ȋ5U c', '}LS5zb$^G\0P#{Ie', '', 0, '?'),
('E6T<<', 'wp-content/plugins/wp-optimize/includes/class-wp-optimizer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimizer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4H%,?4^c', 'G5[>\r%0^mUV$.ȓ_Ʋ', '', 0, '?'),
('O[O>*', 'wp-content/plugins/elementor/assets/css/widget-spacer.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-spacer.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '38mY"4Þ_', '!^3HMm[[z^FXUnYl', '', 0, '?'),
('P^f:7jxW', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A\nhdM', 'ԕu2P\rO"IL\r6', '', 0, '?'),
('g`Ʋ4', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Za-Rx!4Ѹ{J', '*CUuϘRMآ`>dA*', '', 0, '?'),
('uN.A__', 'wp-includes/js/media-editor.js', '/home/binawebp/omsrislb.my/wp-includes/js/media-editor.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@4Vaˣ', '9R\rƲo[NKš*h', '', 0, '?'),
('p̐>N`', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-swift.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-swift.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'QX()~Xn', 'b#	e0b|āPBG`QoE\r', '', 0, '?'),
('~eXMD7', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-eiffel.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-eiffel.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Y)᷻`v:', ')74>vSѼM}D楶', '', 0, '?'),
('´C`\\d', 'wp-content/plugins/elementor-pro/modules/notes/user/personal-data.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/personal-data.php', 0, '7!9PWs*ȋ', '7!9PWs*ȋ', 'F5RȜOS+Q|r', '', 0, '?'),
(')Q\n?Oar', 'wp-includes/blocks/comment-reply-link.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cIk~k4V', '܏?"H<''Huah&N\n', '', 0, '?'),
('kV7	S*ȫ', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/ConverterNotFoundException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/ConverterNotFoundException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pBgI', 'Qy,fň¡]&bS|m', '', 0, '?'),
('>+ܞL[m', 'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'a5qȑ_4@', '(afoxDpaQ6mtk,V^', '', 0, '?'),
('(%#9yn', 'wp-admin/css/forms.css', '/home/binawebp/omsrislb.my/wp-admin/css/forms.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̔@4D`$Ҽ', 'Etqi\r8Зj>"h7[\0by', '', 0, '?'),
('obBrj3#\r', 'wp-content/plugins/wordfence/waf/pomo/entry.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/entry.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';²iGQAw', '79]#/rbCte\\cߏP', '', 0, '?'),
('HL<̑5', 'wp-includes/blocks/query/view.js', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'DjܒcYT', '\rɦJXC+ߐGb˄	<ދ05', '', 0, '?'),
('D6S/cQ?', 'wp-includes/customize/class-wp-customize-background-position-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-background-position-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}4O', '":\nD<RD+|-Z]K?', '', 0, '?'),
('ͭH83T>	@', 'wp-content/plugins/elementor-pro/modules/loop-builder/assets/images/loop-item.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/assets/images/loop-item.svg', 0, 'u9Їݍ93zA', 'u9Їݍ93zA', 'kfQENxv\rt7s]R', '', 0, '?'),
('lJvQ˴', 'wp-includes/blocks/post-comments-count/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g)Lxbc', 'H+^5wRfj	b4YnD', '', 0, '?'),
('Ґ6O''Ф##.', 'wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I4W95', 'L5u.dZ:[c|SD	42`', '', 0, '?'),
('y\0"Q', 'wp-admin/user/menu.php', '/home/binawebp/omsrislb.my/wp-admin/user/menu.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' 7}', 'UNh7_JsF7OU\\', '', 0, '?'),
('4&N%\ZFu', 'wp-content/plugins/elementor-pro/core/connect/apps/activate.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/connect/apps/activate.php', 0, '	P7\re5+3', '	P7\re5+3', 'N|ĵB\0!VX2JĈ^', '', 0, '?'),
('e 0Uzk', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'f!uvE$', 'Bȇ;\r6r}jl7ko', '', 0, '?'),
('^zO5<', 'wp-includes/blocks/details/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b2|^v', 'W)tV3>M*ہTCjOc$ˈ8߲', '', 0, '?'),
('\Z\Zi2I', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MulBinary.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MulBinary.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ϊLCL', 'YWX}\0޲+D\ZN*MHnU', '', 0, '?'),
('"2r!Wa+I', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-promotion-menu-item.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-promotion-menu-item.php', 0, 'ˣ	m,Mm"', 'ˣ	m,Mm"', '[BȢ	?7U(А{rulEګn', '', 0, '?'),
('BARp/yz', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-datepicker.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-datepicker.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_ku˝α', '{3ltufRlJ8', '', 0, '?'),
('	fǢ1Uۀ', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '׷An9br', '6y#:I\r%Ȟ^lI', '', 0, '?'),
('	5ew', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-oh-animator.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-oh-animator.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0f''/h]', 'lprFX%zl\nAio', '', 0, '?'),
('~rC', 'wp-admin/link-parse-opml.php', '/home/binawebp/omsrislb.my/wp-admin/link-parse-opml.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'y_H=4GR', '.eqʁ;B(mnmwa', '', 0, '?'),
('F:"裤|{', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '̏E&\Z+I3', 'E6\\@^:FD', '', 0, '?'),
('.խh=n2', 'wp-content/plugins/elementor/assets/css/widget-nested-tabs.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-tabs.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'W-nZT LD', 'ٴLaDSbʄKU]؇bCa`', '', 0, '?'),
('4XxR׃', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-protobuf.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-protobuf.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vr D_?', ';\\vd969G\rٝ۔\0%`', '', 0, '?'),
('TNOb', 'wp-content/plugins/elementor/assets/css/editor.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l/ùxfdn9', ',|{o;I?"CoBZG95', '', 0, '?'),
('V9KgoX7', 'wp-admin/images/align-left-2x.png', '/home/binawebp/omsrislb.my/wp-admin/images/align-left-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i8O^c', '$kb>k&:	ڂa7Zcdm%', '', 0, '?'),
('W#:V^H3X', 'wp-includes/blocks/nextpage/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6Rc0t F0', 'XkW4xYĘH7ya', '', 0, '?'),
('^;y@LDUZ', 'wp-content/plugins/elementor/modules/floating-buttons/base/widget-contact-button-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/base/widget-contact-button-base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vH圖zʀG', 'wZ$j XHbK]DIB/', '', 0, '?'),
('`ԩ8a76', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotCallableException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotCallableException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BE	A8\rj', ' 58L1Ӕ^~/ [.0', '', 0, '?'),
('ljT3ԼE_tk', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/elements.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/elements.php', 0, '0.j-', '0.j-', '9g''0rЙ<}`fH͕(', '', 0, '?'),
('tUņ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.base64.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.base64.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd7FY1 +>=\r', '9<qd\nx_ٽ(IUO+', '', 0, '?'),
('yYIbQf\0', 'wp-content/plugins/elementor/modules/page-templates/templates/canvas.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/page-templates/templates/canvas.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'I$aR-^|', '<9[w\n5:c)s-P~w*b', '', 0, '?'),
('$d<	;', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/browsers.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/browsers.svg', 0, '=ԁfg6Д', '=ԁfg6Д', ')!\nkpf%pkz5\r~OHuI\Z', '', 0, '?'),
('ƕcvg\n', 'wp-content/plugins/elementor-pro/assets/js/video-playlist.74fca1f2470fa6474595.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/video-playlist.74fca1f2470fa6474595.bundle.min.js', 0, 'KUr(', 'KUr(', 'J#^)1&.j=0!MBQ݈', '', 0, '?'),
('wФٙ*$9', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/R ܜUu@ٓ', '1c7\Z6ϰ]ʮnGa3c4&Z7', '', 0, '?'),
('pw1J8O', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[/d`', 'lV0\\ &!.8C', '', 0, '?'),
('HS!; ', 'wp-admin/js/user-profile.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/user-profile.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vf=9R', '|v9ެE(rC1C+b1^', '', 0, '?'),
('?E]Au-	;]', 'wp-content/plugins/code-snippets/css/welcome.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/welcome.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b"W9D,', ';"P=3.''R!#c?E', '', 0, '?'),
('$ª-ר', 'wp-content/plugins/elementor-pro/assets/js/archive-posts.80f1139e64eb8bd1a74a.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/archive-posts.80f1139e64eb8bd1a74a.bundle.min.js', 0, 'Uz.T%S垣;', 'Uz.T%S垣;', 'Y}OHc؜vnm5-,', '', 0, '?'),
('@}~4Gv<m', 'wp-includes/sodium_compat/src/Core32/X25519.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/X25519.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gbf>=', 'ߺ`''盱Жx#i#', '', 0, '?'),
('+qpW', 'wp-includes/update.php', '/home/binawebp/omsrislb.my/wp-includes/update.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '4jCcr̔', '`0zҐ,\ZhuZC', '', 0, '?'),
('͉OP՜7-', 'wp-content/plugins/elementor-pro/modules/notes/notifications/views/email.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/views/email.php', 0, '6$HXU!R.', '6$HXU!R.', 'Dz,JPsLcݻI`VJ', '', 0, '?'),
('Ǐr聉@}', 'wp-content/plugins/code-snippets/js/types/wp/Page.ts', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/Page.ts', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm:6Qá$΄l', 'dV|Ж:\0"9r_]\n', '', 0, '?'),
('`&X<aQVh\\', 'wp-admin/user/profile.php', '/home/binawebp/omsrislb.my/wp-admin/user/profile.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'x8!xSj', 'Jfv^Dwۦ\nsBu/L', '', 0, '?'),
('@iTl', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-box-shadow.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-box-shadow.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~37*$/B*u', 'CRt{u''(1?ge8@;', '', 0, '?'),
('PKs', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/user-data-thumb.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/user-data-thumb.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`|:ߥ', 'zų$)Er2kF3vOmbU#', '', 0, '?'),
('#M&S+', 'wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KT|\0.>MI', 'K_YNf~N8nH*', '', 0, '?'),
('yY)hNÁ', 'wp-includes/js/dist/customize-widgets.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/customize-widgets.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RϪRfZ \0', ' L4L#Gr+#g2', '', 0, '?'),
('\\씎\Z\rΌ', 'wp-content/plugins/wp-optimize/js/blockUI-4-1-1.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/blockUI-4-1-1.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i1hfǣ-', '\058[	99VBpFI?@', '', 0, '?'),
('}bաN', 'wp-includes/js/dist/core-commands.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-commands.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':''Hm3c$sU', '`ic,,\\ɜgS', '', 0, '?'),
(']vy', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-rename.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-rename.js', 0, '#mlΩ}?', '#mlΩ}?', '`Za!~*R/Ht?$2ϊ\n', '', 0, '?'),
('gxAȢ}g', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']ኮȣ&', 'K#@JU}F,![', '', 0, '?'),
('pRxB', 'wp-content/plugins/elementor/includes/widgets/inner-section.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/inner-section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ugr:=c4j1H8', 'e.\0vq@2-0,a4ϫĮPIȪ', '', 0, '?'),
('j\n^smͷ', 'wp-includes/blocks/comment-edit-link/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"I_;"', 'Ms~vwy}Jܬ96Q$ۺo', '', 0, '?'),
(' @;*|', 'wp-includes/Text/Diff/Engine/string.php', '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/string.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ùfrZ', '.0دl>/H-/p4{De[%%NX', '', 0, '?'),
(' {|	v|d', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v{eVR߇w', '!AJiNh/Ȟ{̃vEb#|a', '', 0, '?'),
('$U~۩/B:', 'wp-content/plugins/elementor/modules/home/transformations/filter-top-section-by-license.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-top-section-by-license.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5x!L40_MRB', 'VM\0 Ͷ .4gr]9\02R', '', 0, '?'),
('0\Z%!2$,r', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/core.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/core.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\:c%gH', '~&L尹\Z\\Eb0-!r_ɬ0u', '', 0, '?'),
('^GZSL9', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}Q?7JZ', '94;[l*ȫ<3taJٍՖ^c''f', '', 0, '?'),
('cp~0{fe', 'wp-includes/images/media/document.svg', '/home/binawebp/omsrislb.my/wp-includes/images/media/document.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'KCӫMC	o', '}vLXULmiQQpH	ߜ', '', 0, '?'),
('cz~\r}X]', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_before.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_before.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J`d@t*V{', ';[uaM"qӝC5\rO#7H+', '', 0, '?'),
('ol*.W', 'wp-content/plugins/elementor-pro/modules/loop-builder/traits/alternate-templates-trait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/traits/alternate-templates-trait.php', 0, 'HM@4"', 'HM@4"', '˯Ԫv=LӄR{`LDn', '', 0, '?'),
('t>]	Ue', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/[ĳ[xw', '6WЋ?''H\n>\rb`I,j\Z"H=&g@', '', 0, '?'),
('Zg>,k', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.html.twig', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.html.twig', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.Gϖǁ	X% ', 'Ktz~n/n)ŗW\\y${', '', 0, '?'),
('ňU_X.?', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/InvalidApiKeyException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/InvalidApiKeyException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ɦ}ݸj6', '\ny}Tݿ>Bڥ90(7', '', 0, '?'),
(']pR/$1', 'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+$B`wƕ', 'a6Οv]z5\rpc', '', 0, '?'),
('0)D;|u`', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DefinedTest.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DefinedTest.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	?\ZNG^4E', 'P_LzVniChʎ#m@6', '', 0, '?'),
('4GQ乴j', 'wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-global.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-global.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xۻ4X[	I:', 'I4E"s?嗪\\5(KB', '', 0, '?'),
('+M%䣤', 'wp-includes/Requests/src/Exception/Http/Status405.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status405.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1#cN', 'y3<<۴yHߏS9QaFٯ', '', 0, '?'),
('/jD', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/responses/lock-error-response.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/responses/lock-error-response.php', 0, '.DA \Zլe7', '.DA \Zլe7', '[ÀnA,φ$?\\If]dswGW', '', 0, '?'),
('~F=En{QI', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@wU9.''x', '2]qYu|2mN4r-EϚ6', '', 0, '?'),
('\r=ІEHͧk', 'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Setup.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Setup.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e\nTMۺ', '\nb	ԘeҺe)\\v.{s&)', '', 0, '?'),
('K/eꈥ|@ede', 'wp-content/plugins/elementor/core/isolation/elementor-counter-adapter-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/elementor-counter-adapter-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i*`Z', 'Rx@sYv@c4U', '', 0, '?'),
('eURϴ', 'wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '3hZ-p{|', 'sʸl\n~f!teO[', '', 0, '?'),
('Zw:\02Ii6`y', 'wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar-handler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '²KC<', ']^mPκ	q"u|ΜcJ.', '', 0, '?'),
('_wƌ', 'wp-includes/widgets/class-wp-widget-media-video.php', '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-video.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ĉ.PcGkL.', 'J@OYyOxۋ9v/5]', '', 0, '?'),
('٬RfJ*;tj', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/link-transformer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/link-transformer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"a^?^ȰeDHN', 'ҞlUq&A0<]ǋ.EX', '', 0, '?'),
('c\\Bj,Bo', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scad.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scad.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ىֻ>vД~-', 'iO,3H#p8XW\rCX)ʯF', '', 0, '?'),
('i5sҖ', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeTraverser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeTraverser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fEoYVIz.', '\\b+:1~s㒥*.}', '', 0, '?'),
('b߉wm', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e%؆kK', '5}o#]%49l_&T', '', 0, '?'),
('%Q{F}32', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/contact-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/contact-url.php', 0, '{Җ {Ё!w/', '{Җ {Ё!w/', '{exeF7}C+ks]艾:\Z@;3F', '', 0, '?'),
(' ̃)sh', 'wp-content/plugins/elementor-pro/assets/js/page-transitions.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions.min.js', 0, 'p&1عm', 'p&1عm', '/={шC ]k0{ĕS{z', '', 0, '?'),
('\ZչT5?\\', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-url.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-url.php', 0, 'Б''+{9`Iq3', 'Б''+{9`Iq3', '/]A~e0X@"\n(0{kp', '', 0, '?'),
('-|VH%', 'wp-admin/site-health.php', '/home/binawebp/omsrislb.my/wp-admin/site-health.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}I''(i>s', 'wFo7 eG"	EI-*>7cJF', '', 0, '?'),
('ǢBմ(\\0J', 'wp-includes/class-wp-text-diff-renderer-inline.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-text-diff-renderer-inline.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#ƏY ^"}', 'qVVQ`X+Ί:>ZV/v6', '', 0, '?'),
(' e07,93', 'wp-includes/SimplePie/library/SimplePie/Copyright.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Copyright.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'tX &7\0,', '>Ov_nHѾ~.&5KH5gZ', '', 0, '?'),
(';%N!9\nL&N', 'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9f"&	8', 'Ja ^e5)zQ؂#l24<', '', 0, '?'),
('>I7m>꣍', 'wp-includes/blocks/embed/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rz8F|Oے#^', '''	=c; >fs>x(O''^', '', 0, '?'),
('D=SC', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`¶6$pYZh', 'x\rYLg{}\0g4g޲VҍuP', '', 0, '?'),
('Sa-L+\r''b', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gherkin.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gherkin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'U&d")v-\Z', '`Qkv|S3DB\0', '', 0, '?'),
('Vl(\ZG4$pa', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?nkØ4', 'GZ~%.-{e|׿WM_C7''<', '', 0, '?'),
('[]8k>', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ck@4s{', 'sb4$}Ri+3-c+DkZL', '', 0, '?'),
('`K04#p', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<SL3ѧ6|2', '!z\rT+$lJ+Eh*O5O', '', 0, '?'),
('ke<F4', 'wp-admin/js/revisions.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/revisions.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ƛ~cet)P', '5ҰX\n4t\r/ܮGpMZ', '', 0, '?'),
('mx#(', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/s̅ձ', 'nyh4=jR''!̳c:', '', 0, '?'),
('nU	8\n83Լ<', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'j#Ԓ䲶5(', 'Xa]PZ?jxܫ`UT6', '', 0, '?'),
('nɴ*99x^', 'wp-content/plugins/elementor-pro/modules/forms/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/module.php', 0, 'ts+֕_#T!', 'ts+֕_#T!', 'j_; tu`|0U"j2F[7', '', 0, '?'),
('D=K49', 'wp-includes/js/codemirror/codemirror.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/codemirror.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '23j1(D', 'Ό,au@sY%K-on\r', '', 0, '?'),
('D\Z	%', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scss.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scss.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '܀ڏxa', '> +Ioxk$f,^ "', '', 0, '?'),
('CMp<E', 'wp-includes/class-wp-oembed.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-oembed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' `}gW\r>KFI', '|O%5FSY25"tl6O!', '', 0, '?'),
('}דO1９', 'wp-content/plugins/elementor-pro/core/notifications/notification.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/notifications/notification.php', 0, 'iB-N(1', 'iB-N(1', '"\rA9\\-iG.>h', '', 0, '?'),
('G*>y''', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/logo.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/logo.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n"!LQx˶A', 'rHQ&LgvSS)6,', '', 0, '?'),
('0PJRe)XE', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInputException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInputException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'jA,Am̊', 'C.!⾂@\\C.VVxR{M%', '', 0, '?'),
('~5-MD', 'wp-content/plugins/code-snippets/vendor/composer/installed.json', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installed.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M\nW|!WP#', 'rAF`zW߾<e?\ra1z[', '', 0, '?'),
('6K1(}/AX', 'wp-admin/network/user-new.php', '/home/binawebp/omsrislb.my/wp-admin/network/user-new.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n.4uTfȘ', '󒉐2GՂ$}e9,Fpɱ', '', 0, '?'),
('3RCV', 'wp-includes/blocks/calendar/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E!\nk݄uscь', '}^i\rة-= J#\n', '', 0, '?'),
('jSp&0', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'A"֥9R', '>tV&$M1w|Ny>`', '', 0, '?'),
('ĩ}x(T', 'wp-includes/js/dist/block-library.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-library.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	Z#Hи;O׌4', 'evpD.٠ci~A8\Z', '', 0, '?'),
('	^w0;"D', 'wp-content/plugins/elementor-pro/modules/forms/actions/activecampaign.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/activecampaign.php', 0, 'p"tZxJ5n:u', 'p"tZxJ5n:u', 'vaPNZ!<%lkl', '', 0, '?'),
('?f,;Z', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/bro.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/bro.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kU7p', 'YQykc\0\0V	|F', '', 0, '?'),
('^Q6lJ!	ͦ', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\oN.', '>4i3|v1N6wD)Mjr', '', 0, '?'),
(' ń1r}mJGWR', 'wp-content/plugins/wordfence/views/scanner/options-group-performance.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-performance.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P=PҤ ', '-9\0tD\\69s]\\e\0Rr', '', 0, '?'),
('8ˌS=', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_222222_256x240.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_222222_256x240.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '涐*@cyGu%', '\r%"Xc}|}Ġ\nňh^g,!', '', 0, '?'),
(':t;kiPVtsm', 'wp-includes/blocks/image/view.min.asset.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.min.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '#$LH+HX~8|ŷ', 'с%T_X;Rk(99mܙ8:S', '', 0, '?'),
('@w6fJfZBؾ''', 'wp-content/plugins/elementor/modules/library/documents/library-document.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/library-document.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BAEQ)8"%5##n', '͔jV\\_ `\0WeבSźiZ', '', 0, '?'),
('@A?,@', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers-tab.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers-tab.svg', 0, 'x/=ۯi\0$', 'x/=ۯi\0$', '+hm#a|P\n.bp*y', '', 0, '?'),
('CF1	\\OW', 'wp-includes/SimplePie/src/HTTP/Parser.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Parser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'AW_h^d!(F^', 't ǿA&ZkE3G#''/<Im', '', 0, '?'),
('P\ZxKzkYlY', 'wp-content/plugins/elementor/core/isolation/elementor-adapter-interface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/elementor-adapter-interface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm`#\\P', 'QY/sAoDa^SӍ', '', 0, '?'),
('U)UTP#G', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/redshift.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/redshift.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'w''D', '?Iu볜֌''Bc]*m-', '', 0, '?'),
('V	덵Wky	', 'wp-includes/blocks/navigation-link.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',Ѩr&I:=', '$J諡cREZ쏱ZԬG', '', 0, '?'),
('GhzL$Rg', 'wp-content/plugins/elementskit-lite/modules/header-footer/cpt-hooks.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/cpt-hooks.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(r_J', 'Z|KQzvaE\\{O', '', 0, '?'),
('ɱ%a{Zj	%', 'wp-includes/class-wp-editor.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rVoms5', 'Ey9"m煮j{ת', '', 0, '?'),
(',`ttb7', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MP<^fG C', 'V$oBޞjf0֫QxuT=a`K', '', 0, '?'),
('8K ?O]ʹY', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ZlY^[F\r2xʻ', '6=Sq-5 )EL}AViA]', '', 0, '?'),
(':v\0֌s', 'wp-includes/blocks/post-comments-form/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J1`\\\0ۘ\n2', 'ԜFB\n~v]JGټSl>`g6D', '', 0, '?'),
('Qk+)|iÞ', 'wp-includes/Requests/src/Exception/Http/Status429.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status429.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`Rm\ZpM={;|:', '\\]b/ӵ$[ڃ<DǨ-p', '', 0, '?'),
('nPyG.', 'wp-content/plugins/elementor/assets/js/nested-accordion.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.pwp$*', '3zdL^8ϓ#?=猧', '', 0, '?'),
('ޕ\rA}e"''', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/ObjectCreationCompiler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/ObjectCreationCompiler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ó]@T9rvP', 'ՉP	9Y_,Wp?.@A', '', 0, '?'),
('et>', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tcl.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tcl.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'XZ^ܜYkvq/', '>YQ&`]`A>7ɼx9', '', 0, '?'),
('苼3', 'wp-includes/blocks/shortcode/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-%V@0У', 'tၠ;\nׄpPn/8!9UoI\\k-', '', 0, '?'),
('pl4[e', 'wp-admin/js/inline-edit-tax.min.js', '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-tax.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'u,2/b3S', 'Fc{+o>\n4PT,S', '', 0, '?'),
('=K+ xځ', 'wp-content/plugins/wp-optimize/templates/settings/settings-export-import.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-export-import.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"6Q$', 'T$L@4£K=OC8̛l)X', '', 0, '?'),
('`ǾkUoO', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-interactor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-interactor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`>xFMo', 'yIF;.#ZS3[u', '', 0, '?'),
('lQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photogiraffe.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photogiraffe.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H=qo8\n\rQ', 'RX_T	-=P!pL"f) !@jA!.', '', 0, '?'),
('6=|O=Zm', 'wp-content/plugins/elementor-pro/assets/js/animated-headline.d814d12739fd7c744896.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/animated-headline.d814d12739fd7c744896.bundle.js', 0, 'ۡ)&\nu', 'ۡ)&\nu', 'h_F]ڙJS׳', '', 0, '?'),
('l]g	SDn', 'wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']O\\\0', 'U''F䒕DP8nYfk', '', 0, '?'),
('M]ھh=', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z	"J֊Cȁ', 'ǂPx>y;;`o^\\', '', 0, '?'),
('Ѝ3>#.', 'wp-includes/rest-api/class-wp-rest-request.php', '/home/binawebp/omsrislb.my/wp-includes/rest-api/class-wp-rest-request.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9FL7R](%lrh', 'BsS8aD$f|jSҡzҜ', '', 0, '?'),
('K|H#[x', 'wp-includes/blocks/tag-cloud/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vJC?b,', '_ln".ק6+3TgV	`p', '', 0, '?'),
('܄sW>ߨww', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareTrait.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareTrait.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8cB[zk0۞', '_KA*pA#ʄq^\r\\', '', 0, '?'),
('R=*dn', 'wp-admin/includes/media.php', '/home/binawebp/omsrislb.my/wp-admin/includes/media.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MIc[p?ټy', '4N?\n3AeOӸ͖&ˑ', '', 0, '?'),
('\r׍K{!', 'wp-includes/css/dist/block-library/elements.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sHH㑡 ', '/hLLʭShHJԺ4  "?A@', '', 0, '?'),
('	LI<', 'wp-includes/Requests/src/Exception/Http/Status416.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status416.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J@E[X2Q''', 'C:ϧgw3eI͹s\\w9H8X/', '', 0, '?'),
('8=[ձ', 'wp-content/plugins/wordfence/modules/login-security/views/page/manage.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/manage.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H\\n''}.KsG', 'W/\\})*bzioرѷ', '', 0, '?'),
('A)͹D4', 'wp-includes/pomo/plural-forms.php', '/home/binawebp/omsrislb.my/wp-includes/pomo/plural-forms.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[/g\0ZX', 'g/-`jl_Xk*YqGґX', '', 0, '?'),
('"(b?\Zgsq', 'wp-includes/css/dist/reusable-blocks/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MWZL', 'bWD.$L}.,ak', '', 0, '?'),
('(ly6	:@d', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rhtml.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rhtml.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '%ε%pZTD', '/"J_մ`A rHPo8Ą=z', '', 0, '?'),
(')C3Lf󬓜zP', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdesignkit-logo.png', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdesignkit-logo.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+{'';EkJLz', 'ft]=s2fy6l3 W', '', 0, '?'),
('-^g̺@\0/', 'wp-content/index.php', '/home/binawebp/omsrislb.my/wp-content/index.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'gD,V=\\bP', 'k~	UH\ZxPĀ<;X', '', 0, '?'),
('.նZg{=', 'wp-admin/css/customize-controls.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8tLϰI', 'A"oKbD_`:lALіHn', '', 0, '?'),
('0̑;Y4oţ', 'wp-content/plugins/wp-optimize/images/features/database-optimization-vehicle-64x64.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/database-optimization-vehicle-64x64.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"&;pOz,', '~XZ=l-j1$-N', '', 0, '?'),
('4/ف~<+', 'wp-includes/blocks/post-excerpt/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '!a}óԽ', '7A=Mb$:DsNJ``z$ս', '', 0, '?'),
(':Y>=', 'wp-includes/blocks/media-text/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z(\Zb1Ͻ`0', '\rp;(uC6W7Ub', '', 0, '?'),
('Q23jky', 'wp-content/plugins/elementor/assets/css/templates/widget-tabs.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-tabs.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''_B', 'wCCE&\r 7GUR', '', 0, '?'),
('W21', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri-min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri-min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'aLDO32', '2kB~q@P!cLSٝ ', '', 0, '?'),
('YcT&cY', 'wp-content/plugins/code-snippets/dist/editor-themes/ambiance-mobile.css', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ambiance-mobile.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8ӳ0C^)84[sx''', 'ĜR+xM9>D4smΊ=', '', 0, '?'),
('Z|ر-', 'wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerExceptionInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerExceptionInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':F]YeE', 'فhupͮIBvg72Aŝ', '', 0, '?'),
('k0k⟆VX', 'wp-includes/blocks/file/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'sMdz׌H', 'f"VN倴{Bs?Ŀ)a;sj:', '', 0, '?'),
('l*ꋮC%4', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' N|uX&', 'jZܽ/ˎkv L\nԤ܂R+T', '', 0, '?'),
('n:zW_BSR', 'wp-includes/js/jquery/ui/resizable.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/resizable.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'P8Xlh";sc;', 'hEwK@(XT3wrXdl$zL', '', 0, '?'),
('sji[+', 'wp-content/plugins/elementor/includes/controls/text.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/text.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6rخjM', 'JwN7?otY|4X0!P(ku\n', '', 0, '?'),
('u6{', 'wp-content/plugins/wordfence/css/license/response-variables.1764778641.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/response-variables.1764778641.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ُ\0	B~', 'Bșo$''AdLxRU', '', 0, '?'),
('vh$\\#\0{Ԉ', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/tutorial-banner.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/tutorial-banner.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&y|bhU;', 'D_\0<WǆZ/eqF Yq@vm߄', '', 0, '?'),
('w	+j', 'wp-content/plugins/wordfence/views/common/status-circular.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-circular.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ').=g', 'q4^"-9\nd1qO,', '', 0, '?'),
('}8	/cѵc', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-navigation.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-navigation.php', 0, 'FxX:u~W{f', 'FxX:u~W{f', '^2KP3׌Dy~G', '', 0, '?'),
('$*-ً', 'wp-includes/blocks/quote/theme.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q\rλw#', ']y.ߛg-}M9Ӂ''첖s)', '', 0, '?'),
('\0x5@anAV', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/host.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/host.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Xk:\r={0', 'yy溶"?= oGqk\rAB', '', 0, '?'),
('7ڔ!2x%XN3', 'wp-content/plugins/wordfence/views/options/option-token.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-token.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xEJR`5\ZC\n', '_NRϦgNr{oXӮ', '', 0, '?');
INSERT INTO `wpiq_wffilemods` VALUES
('~a%!P', 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '{6#UQ:|>#', '([\n̻oRAo3^', '', 0, '?'),
('e\Zၕt', 'wp-includes/Requests/src/Port.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Port.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't2ANr8)', 'O]gcxI3x숥Z\Z?<''Ha', '', 0, '?'),
('L?@.~O', 'wp-admin/css/colors/midnight/colors-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'T# 152|\Z', '&\Z#,g%.^0rCnZ', '', 0, '?'),
('hۋϞ', 'wp-content/plugins/elementor/assets/js/floating-bars.c1e9838906b386709cd4.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-bars.c1e9838906b386709cd4.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\r]9\r ', '(Ŷ1!sY\0es\\R;:{mt', '', 0, '?'),
('a+A''/$', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/LessCssSource.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/LessCssSource.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'hݙZؚr', '.`B^=5*GqKQ@St', '', 0, '?'),
('BŝGWfdT', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-lua.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-lua.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'lVh', '+Avc0P)"H', '', 0, '?'),
('T\ne.(', 'wp-includes/class-wp-image-editor.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-image-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pvg^̂v1D4', '+\nmAl=D/M%AHɀ@', '', 0, '?'),
('ؘ-m4)}	', 'wp-includes/js/dist/reusable-blocks.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/reusable-blocks.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '[4/.y', 'ZI''i._+A"wէ''6X]e4', '', 0, '?'),
('\0M', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-short-description.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-short-description.php', 0, 'S\ZCa^nt}KH', 'S\ZCa^nt}KH', 'ssDߪ+<Uӥ8A]3`x', '', 0, '?'),
('Îbt+QL^Du', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.asset.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.asset.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ':JZ= y!', 'AQlc~(=LD(bN', '', 0, '?'),
('̤Ͽ#\Z]N', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'D/H(ӓL\\\n', ',~6΍Rsd#yձnw%', '', 0, '?'),
('rޅ-\r+;gb', 'wp-content/plugins/code-snippets/php/settings/class-setting-field.php', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/class-setting-field.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^k|I)\ni', 'Q>(PqMB43+9R"8^nN', '', 0, '?'),
('ڳ5A', 'wp-includes/SimplePie/src/IRI.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/IRI.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'WK0ܞE}', 'P?Ļ\0PY^TʟK3x\r|{3', '', 0, '?'),
('KvKM;', 'wp-includes/blocks/comment-content/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'nFMj\Z', 'f!v}>CNM\0I7""8IT', '', 0, '?'),
('Zp%''n\ZWj', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' o@3e]@"', 'FE(ۛ6Dd7ABG̠U*', '', 0, '?'),
('}PÛP\\\Z', 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+q{[*$+', '!K\\jYOG\r', '', 0, '?'),
('R,A\ZGJ''-', 'wp-includes/default-filters.php', '/home/binawebp/omsrislb.my/wp-includes/default-filters.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'q!LE', '\\o]Jΐ3SBp)M&%"K', '', 0, '?'),
('g(355k(', 'wp-includes/blocks/heading/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1z	1[m', '3On97m\\Ox', '', 0, '?'),
('nIc?0nvH', 'wp-content/plugins/elementor/includes/elements/section.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/section.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C:D .23', 'nH]!\\\n6c;\\]^A', '', 0, '?'),
('K1_X\rFe', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/attached.php', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/attached.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 't(O9<F~k', 'mِi`Ik8=', '', 0, '?'),
('\n\\ɶ.5', 'wp-includes/images/xit.gif', '/home/binawebp/omsrislb.my/wp-includes/images/xit.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?`pR,_p', 'A\0|=fJS<|', '', 0, '?'),
('ЬpIYR', 'wp-includes/sodium_compat/src/Core32/BLAKE2b.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/BLAKE2b.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FKy"J', '~T)_ԇYH+ɏ''	;', '', 0, '?'),
('\nNL<ffJi+$iC', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'l2̢=|\n^', '\ree:Ψ<iߒ#4؃)"V', '', 0, '?'),
(':ls{<^K?', 'wp-includes/js/dist/vendor/react-jsx-runtime.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-jsx-runtime.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-G0>C', '%owZ֪zօ', '', 0, '?'),
(' cO4ĨǖM', 'wp-includes/blocks/post-terms/style.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z^kNұ\Z)', '?㷷(s''˭#l<RTe', '', 0, '?'),
('(ЊQB&Q?', 'wp-includes/blocks/categories.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/categories.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 's5,&', 'B&C8rg^U|ٓ7AU>', '', 0, '?'),
('*>F0p\ZeM{ɟ<', 'wp-includes/css/dist/block-editor/content.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '$TY>S.x r', '!NHH/aw}', '', 0, '?'),
('/vJYi', 'wp-content/plugins/elementor/assets/css/widget-divider.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-divider.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'cUoLnҟ:T', '-J}~~TD>dN\nαsu*{', '', 0, '?'),
('D]|߼$', 'wp-includes/js/mediaelement/wp-mediaelement.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'd \r.K;I;', 'V@=jֆ<DHqs', '', 0, '?'),
('I Q77', 'wp-content/plugins/elementor-pro/assets/js/share-buttons.81497e7fccd4fa77b6b9.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/share-buttons.81497e7fccd4fa77b6b9.bundle.min.js', 0, '`~M@)', '`~M@)', 'J.Z.%\Z3fe\nnd|Vn(', '', 0, '?'),
('PhrV', 'wp-admin/css/revisions-rtl.css', '/home/binawebp/omsrislb.my/wp-admin/css/revisions-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*ǝJw W1\0', ' B-1dMkB.hdGђv%@S', '', 0, '?'),
('YsMѨwk', 'wp-admin/images/about-release-badge.svg', '/home/binawebp/omsrislb.my/wp-admin/images/about-release-badge.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'RC~cmغ$', ']6gTEXFo(|B!ף9>', '', 0, '?'),
('`>[5@1˝', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-05.png', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-05.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '"j0%r4wtϻ', 'Jv(-ξIWK&\r96]D)Yh', '', 0, '?'),
('l;p	#P%', 'wp-content/plugins/elementor/assets/shapes/book-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/book-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'YҞv?jgv+9', 'YMw{z5Lyh,\Z7E*[c', '', 0, '?'),
('qj+FX/', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-datepicker.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-datepicker.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M\0;$CFFZ{', 'C2-:\Z-{Φ=', '', 0, '?'),
('zt[', 'wp-includes/blocks/heading/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FUU<<_FK', 'pEkKO$ʗ(}{*1\Z', '', 0, '?'),
('|De~}Qqz', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '(hp9N(*', '|pO#,NMg|"B&', '', 0, '?'),
('=\\:Tr^^Lg', 'wp-content/plugins/elementor-pro/modules/theme-builder/api.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/api.php', 0, 'yektق', 'yektق', 'A0kɴV\0Et:', '', 0, '?'),
('\r̥5.Us', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-options.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-options.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '.g!Meׯ', 'x0aZ}cG"[F', '', 0, '?'),
(' =f&ЬrT', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds_midnight.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds_midnight.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'G^:׿4KH', 'CAXͨzMw\nS}cr', '', 0, '?'),
('''VB~w', 'wp-includes/blocks/query-pagination/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' z\Z.', '\nh(nq(WnCkO46', '', 0, '?'),
('%Y2Yk', 'wp-includes/SimplePie/library/SimplePie/Cache/DB.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/DB.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\ni핁pQ\Zr', '7)gD1;JjCIA206t.', '', 0, '?'),
('lk%d0~ZX', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sparql.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sparql.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6> Sl0ݣ+n֠@', 'R	T-\n\rw\rc''dK0', '', 0, '?'),
('dXס@|X', 'wp-content/plugins/elementor/core/editor/promotion.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/promotion.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '`3', 'VxK#g2-\no6ܠ 38D', '', 0, '?'),
('SK547S', 'wp-includes/css/dist/block-library/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'zū.y[M', 'ݦzJC\Z,(I-JօS}#', '', 0, '?'),
('\Z\0p@D', 'wp-content/plugins/elementor/core/common/modules/finder/categories/tools.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/tools.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'udPh', '"''-]:r$)oĮ	+d~', '', 0, '?'),
('+f6Qy9', 'wp-includes/js/jquery/ui/selectmenu.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectmenu.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '){f0', '1YȁkKʃHّdPT', '', 0, '?'),
('!=ƧK3', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'BC]3lDR', 'c<`R-RuRT\\o+`Sx', '', 0, '?'),
('ρXn\r?', 'wp-includes/sodium_compat/src/Core/XSalsa20.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/XSalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pƮuo7;~z', ' %ly''#[_{E]8%', '', 0, '?'),
('!MKbspA|', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gitignore.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gitignore.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'N;rM*/=', 'QaЊZ:ucE`̗', '', 0, '?'),
('?i.Q[E', 'wp-includes/blocks/post-navigation-link.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6C\\&$He', '/VmQ6''%k;7', '', 0, '?'),
('''p5v', 'wp-content/plugins/code-snippets/css/menu-button.scss', '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/menu-button.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?8l_d?', 'ZS;ZÇ`G&ixۤ?4', '', 0, '?'),
('lb+HZ_F', 'wp-content/plugins/elementor/modules/announcements/classes/announcement.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/classes/announcement.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '?Lͤ^TS	', ';bY3eZs0&!9lf6', '', 0, '?'),
('])	{?R}', 'wp-includes/feed-rss.php', '/home/binawebp/omsrislb.my/wp-includes/feed-rss.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'iJ?YC>^f', 'flPf52tY3xDׄ', '', 0, '?'),
(' m.0[ϫ', 'wp-content/plugins/elementor/includes/editor-templates/responsive-bar.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/responsive-bar.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'L5P딻g', '2EL;QڴmCLtL"', '', 0, '?'),
('0<PsמH22', 'wp-includes/js/jquery/jquery.table-hotkeys.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.table-hotkeys.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7?F5sS57,(', 'J<?YSuŪU&\nNy`TkL', '', 0, '?'),
('9(FRj2n6]', 'wp-admin/css/colors/light/colors.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gxm2j', '`!𾩾wr\nN}Ln', '', 0, '?'),
('@eo*I''Q\0S6', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/CSS.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/CSS.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ng>$?N5~', 'EYyI\nJrL.X+yH?', '', 0, '?'),
('J!2\0', 'wp-admin/css/about.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/about.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ӫԪR++', '_ia3eM4~	z,3Uo<I\ZSx', '', 0, '?'),
('T-e<zF', 'wp-content/plugins/elementor/core/common/modules/connect/apps/base-user-app.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/base-user-app.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0?y%;.', 'Е]EiO{4L(n[N	N~', '', 0, '?'),
('[3xzXC', 'wp-content/plugins/elementor/assets/js/ai-admin.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-admin.min.js.LICENSE.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\Z>rB', ',Eg	G-jTjMF/4Z)BS', '', 0, '?'),
('^N4ӝ,baD', 'wp-includes/css/dist/widgets/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9d2A$	N', 'AE!Lξ\rCs/%bg":[a', '', 0, '?'),
('^O|'':QǙE', 'wp-content/plugins/wordfence/views/common/status-critical.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-critical.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R/C[]u%', 'WB&69gk_EF6I', '', 0, '?'),
('g"}_7J5', 'wp-includes/js/jcrop/jquery.Jcrop.min.css', '/home/binawebp/omsrislb.my/wp-includes/js/jcrop/jquery.Jcrop.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}(/WM', 'rNRnɳ01\Z6[՛	', '', 0, '?'),
('oas:\rsK(q', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BlackfireDumper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BlackfireDumper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\rw8)M}nI', '[kS{n\0d)O3ƾOG ,', '', 0, '?'),
('o5+IJP', 'wp-admin/site-editor.php', '/home/binawebp/omsrislb.my/wp-admin/site-editor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'rz.@?,#', 'x^yPu	 PK|UFewA_', '', 0, '?'),
('v6Z''OIL"ݕM', 'wp-includes/js/dist/block-editor.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-editor.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~=f0~', 'TQ57zY8AxR^]', '', 0, '?'),
('p96èR', 'wp-admin/css/common.css', '/home/binawebp/omsrislb.my/wp-admin/css/common.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'E+&X', '7RLa8N?:r', '', 0, '?'),
('ƪq悳', 'wp-includes/js/tinymce/plugins/paste/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/paste/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^s׶{މ2', '\ZX8c+xη&Wg`m˴', '', 0, '?'),
('lxy\Z"', 'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'EU.7H>i;', ',+x> V7rLKs&G', '', 0, '?'),
('TKVQ', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*\rR', '凙Sr~v% Y(khe', '', 0, '?'),
('qL>#Q\0', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}$?i', 'qn&%G~\\^Ӑ0', '', 0, '?'),
('R؉"Te', 'wp-content/plugins/elementor/core/utils/force-locale.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/force-locale.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ȧ3eZUD_ ҟBq', '{30L]\nGl{܋G$|v', '', 0, '?'),
('<la,bX,', 'wp-admin/images/xit-2x.gif', '/home/binawebp/omsrislb.my/wp-admin/images/xit-2x.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ӂu:@4\rz<5', 'S\r}@~Q:Sc*d+Z_{R', '', 0, '?'),
('ʅy>J.', 'wp-includes/blocks/term-template/editor-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xM\0\ZacdXt', 'IMTbCS@諅y`6', '', 0, '?'),
('Py7\0n<', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/DebugExtension.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/DebugExtension.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	iŮ', '^JDz|C; {&{y3Y', '', 0, '?'),
('I˖ӚW', 'wp-content/plugins/elementor/assets/shapes/pyramids.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/pyramids.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e2Ø5ED<W', '	@^|TjvU'',2GM', '', 0, '?'),
('/[/Z', 'wp-includes/blocks/post-navigation-link/style-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\nR(zJ,q3', 'G`	0tԄ?S''$\n?*L', '', 0, '?'),
('u(̪٭ADb', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/reviews.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/reviews.php', 0, 't.Dr', 't.Dr', 'U]V3\rwgL', '', 0, '?'),
('2qe5ὑX', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_after.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_after.txt', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'z+XKfRb=R/#', '9R?=|C{l9.m', '', 0, '?'),
('PKqtAur j', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vgrzؿ[', 'H0)bcqח-Oot1B''x:', '', 0, '?'),
('cxfr', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/general.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/general.php', 0, 'k\n@Y', 'k\n@Y', '`A*8*#,`\nX$', '', 0, '?'),
('!.4Mᖏ', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'e5 }j', 'zR>B^Rv8G@`)c', '', 0, '?'),
('+q^eguF6\n', 'wp-includes/theme-compat/embed.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/embed.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ţs^qcb', 'W5Tp;-n0aO\n', '', 0, '?'),
('2w\Z4\0|', 'wp-content/plugins/elementor-pro/modules/notes/user/delete-user.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/delete-user.php', 0, 'w1uZ0H`zC', 'w1uZ0H`zC', 'P̜ͬG8?(\r`v\ryJ`>@F5', '', 0, '?'),
('E~\rPE12#', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/jquery.fonticonpicker.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/jquery.fonticonpicker.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '}fOEƭ', '/yY$]3IR˹<v+b', '', 0, '?'),
('G!#h9	&', 'wp-includes/js/tinymce/plugins/wordpress/plugin.js', '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wordpress/plugin.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*fCw!7 ', 'TK kAIj!i1duQt''ފM', '', 0, '?'),
('IB6s=E', 'wp-content/plugins/wp-optimize/js/blockUI.js', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/blockUI.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'SǾTa:', 'r]+A΂W<9d9&\rJS(', '', 0, '?'),
('Jgni\\`', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Pimple.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Pimple.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JJ>ј7mYu', '˲-Ǯ{q kWl1(~', '', 0, '?'),
('Kjh', 'wp-content/plugins/wordfence/images/loading_background.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/loading_background.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '''2p\nKX', 'Ύ%XŖF1s;Lzr璻', '', 0, '?'),
('MOϲJ', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAllAttributes.md', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAllAttributes.md', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'p-ȆBXFP6r', 'Sx/;\rg+&9bEi', '', 0, '?'),
('NpmCjMrpy', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g\Z\\T1D?#*', '7wތ@HU>_jIy	', '', 0, '?'),
('P:vQw', 'wp-includes/blocks/list/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/list/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V7Nv]\nt', '''T6?^\nv1Qm\Z', '', 0, '?'),
('RLa"r', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-simple.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-simple.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Pum],', '\nbKl`sJJ', '', 0, '?'),
('`Sk7TtvX', 'wp-includes/class-wp-list-util.php', '/home/binawebp/omsrislb.my/wp-includes/class-wp-list-util.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'c_7^a+Z(I', '{p14hWwzq ̑Zr=W', '', 0, '?'),
('dC˟ˀ2uzk', 'wp-content/plugins/elementor/elementor.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/elementor.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'dǁ8oph', '^q0{_\nÕy0<si', '', 0, '?'),
('la''P_bm	!p', 'wp-includes/blocks/audio/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ')[J[7>', 'vܽZR}ZfG|-!TUswo4', '', 0, '?'),
('usT­BB', 'wp-content/plugins/wordfence/images/sort_desc_disabled.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc_disabled.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'J%{OZ"/o', '^*n^\0m+!NkɌ/ԯ^k', '', 0, '?'),
('%\0OIi', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-mono_industrial.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-mono_industrial.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '-0bX;I]', '\0<cIHvVzJ=`#ƴ>', '', 0, '?'),
('ZLOl', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CFhz', 'oő\nwnpL+;~t2P*ƃ6', '', 0, '?'),
('pc~RZ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/sweetalert.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/sweetalert.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h	B:e!', 'FJq_?ar\rPCьO9p(F', '', 0, '?'),
('''B7S', 'wp-includes/js/zxcvbn-async.js', '/home/binawebp/omsrislb.my/wp-includes/js/zxcvbn-async.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=$a[ZF)^\n~', 'uQ9ҫ{7o}`-nW', '', 0, '?'),
('o\09`Z\0', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Cwebp.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Cwebp.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '܉gP=DZ', '-_xgqt52''BJ	', '', 0, '?'),
('{	\n|p٤', 'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '6*={9Gk', '5x%\Zc!\\2k\0$ ''T~H', '', 0, '?'),
(')(<', 'wp-includes/js/json2.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/json2.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ń7jR', 'Er)ckQ[yCχ=!', '', 0, '?'),
('b#!A3XV4	', 'wp-includes/blocks/comments-pagination/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'g', 'h~''8(y9$Y{vů)|', '', 0, '?'),
('vhy2%()', 'wp-includes/blocks/code/theme.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Z	mEJ', 'w($썎B.}e-', '', 0, '?'),
('!|MWkpr', 'wp-includes/blocks/query/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'MGG:(^\r', '`M;\0¼[t\n˳	jl	', '', 0, '?'),
('a''@T瑓', 'wp-admin/images/date-button.gif', '/home/binawebp/omsrislb.my/wp-admin/images/date-button.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v!0ϝ$\n-潮LT', 'hŵδ䘼n$q!I#', '', 0, '?'),
('߃Yeu|1>', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-main-controller.php', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-main-controller.php', 0, 'E;aLyjuoX', 'E;aLyjuoX', '\nfţV1AX("i(''', '', 0, '?'),
('39٦qcޞ', 'wp-content/plugins/elementor/assets/js/import-export-admin.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/import-export-admin.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ctyw', 'T/.϶ о,rc(x!,?\Zdj', '', 0, '?'),
(';Bq_4W', 'wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-has-position.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-has-position.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'i<UY)', '%]5|u)UIUGfQ', '', 0, '?'),
('	Q7\Zz9`-', 'wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js', 0, ')jվ	.k', ')jվ	.k', '-O}z%5oLtI?\rbx''?GXJ', '', 0, '?'),
('\rYaԒ ', 'wp-includes/Requests/src/Exception/Http/StatusUnknown.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/StatusUnknown.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'M%}҅p(', '9p^n#UBTaxI8ثd˜C', '', 0, '?'),
('낏\r?8[9kQ''s', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '܈Vi<A$ɤ', '4l^=HaU/?', '', 0, '?'),
('''T́YǙ', 'wp-includes/customize/class-wp-customize-cropped-image-control.php', '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-cropped-image-control.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '@\n=PJjL', 'x\r:}gR)`kM%', '', 0, '?'),
(')z]!?a', 'wp-admin/images/media-button-video.gif', '/home/binawebp/omsrislb.my/wp-admin/images/media-button-video.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>uewJ', 'Ye"n+#@ƼZgVP''', '', 0, '?'),
(' mZ䒯', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag.php', 0, ':C޸G/}4', ':C޸G/}4', '=C8j-a"T^O?`', '', 0, '?'),
('%|ݽ>?v{j', 'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V=l	2X', '״0M"r,_Ǝ>)Gwg?', '', 0, '?'),
(',=<2E;?t	0', 'wp-includes/Requests/src/HookManager.php', '/home/binawebp/omsrislb.my/wp-includes/Requests/src/HookManager.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '; }ԋ3', '155?zsۍpb9d', '', 0, '?'),
(',ֹ{AE[', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/AutowireDefinitionHelper.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/AutowireDefinitionHelper.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|XWDKy5|ܜ', '"UzEJq\rY}J*6', '', 0, '?'),
('/e\no?}mbK', 'wp-includes/blocks/page-list/editor-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'xt?%Y{', 'ׁ}p:B HJW_T2^-P', '', 0, '?'),
('/Y>F0R', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/astra.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/astra.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7nfK30sY', 'y7`-?5-%/eG.vy', '', 0, '?'),
('53}a', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ExtensionInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ExtensionInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']_s''', 'Ʀ;Θ#$n \0\r'',:Ik?', '', 0, '?'),
('7^gPyKy', 'wp-content/plugins/elementor/core/experiments/wp-cli.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/wp-cli.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '>z[6>L*s', 'z2*3i''7cg*Cҽ5', '', 0, '?'),
('9>ڄQ$;U', 'wp-content/plugins/elementor/assets/images/logo-platform.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/logo-platform.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k~>sL[', 'fKi㐮vf1ƈyõ.fȍa', '', 0, '?'),
('F%C0,', 'wp-admin/css/list-tables-rtl.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/list-tables-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Hٲ#ĳၱs}c3', 'ktm~;wYR{2oK', '', 0, '?'),
('I"ptQ[Z6x', 'wp-includes/css/admin-bar.min.css', '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Vq"q', 'LU	\\^ei]rJ@"c', '', 0, '?'),
('KXـ2#z', 'wp-includes/blocks/comments-title/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_eGAl	', 'ƳTz]	Gbg', '', 0, '?'),
('LoA7ev	', 'wp-includes/blocks/loginout.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ',		=\\ "', 'rty7(n[Zq\0rb~W', '', 0, '?'),
('[PImNnѠr', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/css/central.css', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/css/central.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n:D', '[JmI[s\n&i 8pH.ߪ', '', 0, '?'),
('[/Dh\Zq', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-maze.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-maze.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ւhA5x`KѼ[\n', '/pNi͒o&OV"Z\Z', '', 0, '?'),
('cwk(43', 'wp-admin/includes/list-table.php', '/home/binawebp/omsrislb.my/wp-admin/includes/list-table.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'yݣz\0por	', 'ָ''K`:$$b}$''2', '', 0, '?'),
('dFűSv', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lua.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lua.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']CT}}w+l;j', 'K9C/!2sF"0ZȔ', '', 0, '?'),
('gVHIw!', 'wp-includes/css/customize-preview.css', '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '1ig`oӏٷ1>', '>kdU=@R\r;', '', 0, '?'),
('r<\nc8H', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '*tۿr=K(Z4;', 'oQY4cKh@)\n`% %^', '', 0, '?'),
('y.{uJߠ5[\Z.', 'wp-includes/blocks/more/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Tx:,!f`', '!;KQ ʿ''62w_3R.Ը(', '', 0, '?'),
('}A5 PԆ', 'wp-includes/blocks/gallery/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '0jbkZM', 'oM`0x,OsApG5>\ZR', '', 0, '?'),
('~zXFWV -', 'wp-content/plugins/elementor/core/common/modules/finder/template.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/template.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Gcs>\\''g', ',$Qq{p!Hݰ//E葠??', '', 0, '?'),
('Qֿ6yq88', 'wp-includes/theme-compat/footer.php', '/home/binawebp/omsrislb.my/wp-includes/theme-compat/footer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '^X{Q3', 'nt2. |?<mfYE~I', '', 0, '?'),
(' O.', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/preview.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/preview.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C͑\\', '2_-R\\#LNeM/qFa', '', 0, '?'),
('vJFw=Ƒ', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/NoAutowiring.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/NoAutowiring.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '_Lˉ<', 'r	`*ϋrE+`!', '', 0, '?'),
('0`K_{', 'wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js.LICENSE.txt', 0, 'cgxsh:', 'cgxsh:', '^|s/,T`up[D', '', 0, '?'),
('=$', 'wp-content/plugins/elementor-pro/modules/forms/classes/ajax-handler.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/ajax-handler.php', 0, 'y7tq;Z', 'y7tq;Z', 'Y.tLЩ>Mc<mB\rg[', '', 0, '?'),
('ʡuL3>', 'wp-includes/abilities-api.php', '/home/binawebp/omsrislb.my/wp-includes/abilities-api.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'vv ldrS<y', 'mR02ʭBj/	p~Z~*', '', 0, '?'),
('G#5ߑz', 'wp-content/plugins/elementor/modules/styleguide/module.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/styleguide/module.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'V\\_i', 'u`As+x8ۃFE\07)t-', '', 0, '?'),
(';=ͺ1', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TempNameExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TempNameExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\0S斈\np,V1', 'v^[-ӎR\0ȖX', '', 0, '?'),
('rA|ƋdO쨰', 'wp-includes/blocks/image/theme-rtl.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme-rtl.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'k~B0', 'Wߤ%mdD''.][\Zԅc<', '', 0, '?'),
('_O&1#cX', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/styles-renderer.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/styles-renderer.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'S9JCR*)%qA', '#&dKSΓ:C l`?Sj@}pQ', '', 0, '?'),
('YPeQ', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-spellcheck.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-spellcheck.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'CJf$%Z', 'i!o3C0jO', '', 0, '?'),
('C	}(d', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ouא]`+{', 'TwAkPۨF''6V~wsp', '', 0, '?'),
('w''6)', 'wp-includes/rss-functions.php', '/home/binawebp/omsrislb.my/wp-includes/rss-functions.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ' xr62'']el#', '~^Ɏf}nBhi=F\n	^,', '', 0, '?'),
('N9{;', 'wp-includes/js/mediaelement/wp-mediaelement.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\\clE+htA6', '009!t;ٖߩde"', '', 0, '?'),
('.I\nfqM9', 'wp-includes/sodium_compat/src/Core/Poly1305.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Poly1305.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '8Yفk', '75H|@"ޖϛQ{e_l', '', 0, '?'),
('~J\Z[#>֔[', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/X509.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/X509.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '&WT%&\\3', ').Jc@.Wi}HmWY}', '', 0, '?'),
('\0RCAmn', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/SerializableClosure.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/SerializableClosure.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'm\nvU\\^N', ' qbFUmTU5ӾN', '', 0, '?'),
('S"Eub', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jade.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jade.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'R|e⮽"', 'N+wfg)D(/0L3g9i', '', 0, '?'),
('\\oӽݡS)', 'wp-content/plugins/elementor/modules/wp-rest/classes/wp-post.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/wp-post.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ᅹVed"޿"N', 'MVN}r82M}~', '', 0, '?'),
('"UF~B.S', 'wp-includes/blocks/video/editor.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '<Z|#%', 's)6SM\\-P8\Z/0', '', 0, '?'),
('''Op\r"M', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-area.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-area.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'v<z,w', 'WnOL''Xm݄Y=#eN"', '', 0, '?'),
('.a	3JZR''ɏ$', 'wp-content/plugins/elementor-pro/assets/js/app.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/app.min.js', 0, '[EQPkS͔', '[EQPkS͔', ']Wgrbhx;\02Nj', '', 0, '?'),
(';`$r$=', 'wp-content/plugins/wordfence/images/icons/warning128.png', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/warning128.png', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'pGIt*Np=', '*/ȾstA}.b''\\', '', 0, '?'),
('@6-1Tau4', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vala.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vala.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'kbϬ%fn8', '+j_9<a(ztT\Z', '', 0, '?'),
('AaKo+O', 'wp-includes/blocks/post-author.php', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'F0wp,jAw', '{j9L	4kItK"2xԐ', '', 0, '?'),
('E58yWsO', 'wp-admin/css/admin-menu.min.css', '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '=zSuUb', '\r|;3ғ\Z7p߀0l', '', 0, '?'),
('Le5x?e=&', 'wp-includes/js/plupload/wp-plupload.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/plupload/wp-plupload.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '5\r\rs ', 'l-7EG\ZMU?!?', '', 0, '?'),
('QS2#]srt', 'wp-includes/sodium_compat/src/Core/BLAKE2b.php', '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/BLAKE2b.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '⃎wl\0pA', '+1,3-OETodÛ՚c?<', '', 0, '?'),
('UD*C"UOCx]', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js.LICENSE.txt', '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js.LICENSE.txt', 0, '>7y՜', '>7y՜', 'z^D}\nibpU~P', '', 0, '?'),
('`)qNw ;', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.strings.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.strings.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'b\0MJ', '@zȤ-huk2(c\r', '', 0, '?'),
('kPP1<', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'oul_4@', '6b% "ʴsJp38ӷSǙ:', '', 0, '?'),
('k(//R\rH~', 'wp-content/plugins/elementor/assets/css/common.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'JᲵ#ʀP', '9Շ%Zuu?xyaz;T', '', 0, '?'),
('l~z>ҲP1a', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SourcePolicyInterface.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SourcePolicyInterface.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|lizO', '5;l57a!i>:l&q8Ν', '', 0, '?'),
('o=Utb&Pd', 'wp-content/plugins/wp-optimize/templates/minify/settings-tab.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/settings-tab.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'FٛXNau|', 'I*\r1\n4`:Y1̹KjpTb', '', 0, '?'),
('{Qw:	*s', 'wp-includes/blocks/details/block.json', '/home/binawebp/omsrislb.my/wp-includes/blocks/details/block.json', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'ulCy', '.pr[gSCdC^\rl@', '', 0, '?'),
('1ʦ\\', 'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.a3c65615c1de5560962d.bundle.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/jszip.vendor.a3c65615c1de5560962d.bundle.js', 0, 'a	G3hp', 'a	G3hp', 'e^|:lve*ZUhng', '', 0, '?'),
('HF)\\,b', 'wp-includes/js/jquery/ui/controlgroup.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/controlgroup.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9-AJf=1W(', '9t|p=QfifwO;P7', '', 0, '?'),
('~%B\0z?o', 'wp-includes/IXR/class-IXR-message.php', '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-message.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '\n.lr.c¨', '3L1S;6uV	qBO', '', 0, '?'),
('˲rXf F', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-choose.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-choose.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '9G_kmg&', 'ϜN>\\y@)qTGׅ,1-', '', 0, '?'),
('}p8HeTJw', 'wp-includes/SimplePie/library/SimplePie/Cache/Base.php', '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Base.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ';y0&Kح^', 'OL/r~J_NL;', '', 0, '?'),
('a5[45MepC', 'wp-includes/js/jquery/ui/effect-bounce.min.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-bounce.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '	PjKRFvݲdj', 'q?NK/xrh[z`"#<l', '', 0, '?'),
('~ZSu', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessify.inc.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessify.inc.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '/.''+Lai', 'h!WeuK:\Zxx', '', 0, '?'),
('QX,"9dvk', 'wp-content/plugins/elementor/assets/shapes/waves-negative.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/waves-negative.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7JOVO:GHf', 'Uҵ^{bޡ\0|]Se7mn', '', 0, '?'),
('SCRCl', 'wp-admin/css/colors/sunrise/colors.scss', '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors.scss', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '._$5"jZwã!', 'nt!EM,_䶙\rx~W', '', 0, '?'),
('*7~*hP', 'wp-content/plugins/elementor/assets/css/widget-testimonial.min.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-testimonial.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'C'',^uDp', '|%NNȱ+߱(A>vݶ', '', 0, '?'),
('߹u7[)h', 'wp-includes/blocks/embed/editor.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '7\0t됇', 'z%^`8\\oRhp˼&', '', 0, '?'),
('ki.\\', 'wp-includes/images/smilies/icon_neutral.gif', '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_neutral.gif', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'VM3HU1!v', 'Ois8\0|z6]e@Ym49', '', 0, '?'),
('Bް[''4', 'wp-includes/blocks/post-author-biography/style-rtl.min.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style-rtl.min.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '|,PJpb', 'é~\nmxyDwcC''', '', 0, '?'),
('45q-p,', 'wp-includes/blocks/file/style.css', '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'h3[|+,8', 'kOҒ<eӉia|/B̲+', '', 0, '?'),
('h7ȆM\n', 'wp-content/plugins/elementor/assets/css/editor-preview.css', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview.css', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'Ʊ@r''6$', ';_X\r.f+9!G2ha3', '', 0, '?'),
('©6<\09ZiR', 'wp-includes/js/jquery/ui/effect-fade.js', '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fade.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'fv7(!ۭgt', '[`ks[+kLEC', '', 0, '?'),
('@~}cQ''J', 'wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php', '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '~vY꽊<Rv', 'ux_U(Ż0-Db9D5,3?:f', '', 0, '?'),
('KD''*^Ặ', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive-single-base.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive-single-base.php', 0, '9.wZ^;a!', '9.wZ^;a!', 'wng@WvF:z', '', 0, '?'),
('ܳ074׽', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FilterExpression.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FilterExpression.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'H"-e)\0', 'ː-SLwxHd6ǲqg9\n4w', '', 0, '?'),
('Ƀb\n', 'wp-content/plugins/elementor/assets/js/025905cd015671d0a830.bundle.min.js', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/025905cd015671d0a830.bundle.min.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', ']08((', 'Qm^	1/KnƳu;', '', 0, '?'),
('pߜD\0$t3', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/rating-icon.svg', '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/rating-icon.svg', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', '+]-z.', 'R=|]޳1U#eѭTaJCl', '', 0, '?'),
('ƫ/XuL-', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/size-prop-type.php', '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/size-prop-type.php', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'TibcI4', 'Zk}BT0g*ȖMd3"L,', '', 0, '?'),
(' NE۵', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_eighties.js', '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_eighties.js', 1, '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0', 'mTbOxʈn>3M', '#\ZжFXF6Hbu', '', 0, '?');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfhits`
--

CREATE TABLE `wpiq_wfhits` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint DEFAULT '0',
  `statusCode` int NOT NULL DEFAULT '200',
  `isGoogle` tinyint NOT NULL,
  `userID` int unsigned NOT NULL,
  `newVisit` tinyint unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfhits`
--

INSERT INTO `wpiq_wfhits` VALUES
(2171, 0.000000, 1767098256.445912, '\0\0\0\0\0\0\0\0\0\0#\rd', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2172, 0.000000, 1767126914.750092, '\0\0\0\0\0\0\0\0\0\0#V', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2173, 0.000000, 1767289827.547847, '\0\0\0\0\0\0\0\0\0\0\Z', 0, 503, 0, 0, 0, 'https://omsrislb.my/wp-login.php', '', 'Mozilla/5.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2174, 0.000000, 1767291801.097262, '\0\0\0\0\0\0\0\0\0\0A^Q', 0, 503, 0, 0, 0, 'https://omsrislb.my.binawebpro.com/wp-login.php', '', 'Mozilla/5.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2175, 0.000000, 1767366869.170162, '\0\0\0\0\0\0\0\0\0\0"*L', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2176, 0.000000, 1767379353.324001, '\0\0\0\0\0\0\0\0\0\0s5', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2177, 0.000000, 1767389100.520528, '\0\0\0\0\0\0\0\0\0\0"Fa', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2178, 0.000000, 1767389166.696534, '\0\0\0\0\0\0\0\0\0\0#', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2179, 1767379357.795302, 1767379357.738900, '\0\0\0\0\0\0\0\0\0\0s5', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly94bWxycGMucGhw"}'),
(2180, 1767379357.111301, 1767379357.036500, '\0\0\0\0\0\0\0\0\0\0s5', 0, 503, 0, 0, 0, 'https://omsrislb.my//wp-json/oembed/1.0/embed?url=https%3A%2F%2Fomsrislb.my%2F', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly93cC1qc29uL29lbWJlZC8xLjAvZW1iZWQ="}'),
(2181, 1767379356.632212, 1767379356.575100, '\0\0\0\0\0\0\0\0\0\0s5', 0, 503, 0, 0, 0, 'https://omsrislb.my//wp-json/wp/v2/users/', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly93cC1qc29uL3dwL3YyL3VzZXJzLw=="}'),
(2182, 1767379355.904031, 1767379355.844300, '\0\0\0\0\0\0\0\0\0\0s5', 0, 503, 0, 0, 0, 'https://omsrislb.my//?author=2', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly8="}'),
(2183, 1767379355.256197, 1767379355.182600, '\0\0\0\0\0\0\0\0\0\0s5', 0, 503, 0, 0, 0, 'https://omsrislb.my//?author=1', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly8="}'),
(2184, 1767379354.729183, 1767379354.667300, '\0\0\0\0\0\0\0\0\0\0s5', 0, 503, 0, 0, 0, 'https://omsrislb.my//wp-includes/wlwmanifest.xml', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly93cC1pbmNsdWRlcy93bHdtYW5pZmVzdC54bWw="}'),
(2185, 1767292229.286321, 1767292228.677700, '\0\0\0\0\0\0\0\0\0\0A^Q', 0, 503, 0, 0, 0, 'https://omsrislb.my.binawebpro.com/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2186, 1767292019.834434, 1767292019.238900, '\0\0\0\0\0\0\0\0\0\0A^Q', 0, 503, 0, 0, 0, 'https://omsrislb.my.binawebpro.com/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2187, 1767290026.221631, 1767290025.558100, '\0\0\0\0\0\0\0\0\0\0\Z', 0, 503, 0, 0, 0, 'https://omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2188, 0.000000, 1767532729.333880, '\0\0\0\0\0\0\0\0\0\0#.', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2189, 0.000000, 1767533930.777401, '\0\0\0\0\0\0\0\0\0\0"S*', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2190, 0.000000, 1767537498.228457, '\0\0\0\0\0\0\0\0\0\0"', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2191, 0.000000, 1767554565.973210, '\0\0\0\0\0\0\0\0\0\0"7', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2192, 0.000000, 1767591003.546423, '\0\0\0\0\0\0\0\0\0\0"y&', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2193, 0.000000, 1767633847.036362, '\0\0\0\0\0\0\0\0\0\0"0v\0', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2194, 0.000000, 1767634229.557435, '\0\0\0\0\0\0\0\0\0\0"57', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2195, 0.000000, 1767722107.782358, '\0\0\0\0\0\0\0\0\0\0"G/', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2196, 0.000000, 1767982115.377721, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', '', 'Mozilla/5.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2197, 0.000000, 1767982744.194506, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', '', 'Mozilla/5.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2198, 1767982829.542098, 1767982829.466200, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2199, 1767982662.309304, 1767982662.008600, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2200, 1767982583.316005, 1767982582.995200, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2201, 1767982510.929578, 1767982510.627300, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2202, 1767982440.629786, 1767982440.319000, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2203, 1767982376.012133, 1767982375.726800, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2204, 1767982318.391237, 1767982318.084600, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2205, 1767982262.698415, 1767982262.393000, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2206, 1767982214.239111, 1767982213.955100, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2207, 1767982168.555285, 1767982168.252000, '\0\0\0\0\0\0\0\0\0\0', 0, 503, 0, 0, 0, 'https://mail.omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2208, 0.000000, 1768116210.780410, '\0\0\0\0\0\0\0\0\0\0;', 0, 503, 0, 0, 0, 'https://omsrislb.my/wp-login.php', '', 'Mozilla/5.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2209, 0.000000, 1768300671.183049, '\0\0\0\0\0\0\0\0\0\0r>.', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2210, 0.000000, 1768304601.320979, '\0\0\0\0\0\0\0\0\0\0"', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2211, 0.000000, 1768546267.670475, '\0\0\0\0\0\0\0\0\0\0G', 0, 503, 0, 0, 0, 'https://omsrislb.my/wp-login.php', '', 'Mozilla/5.0', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2212, 0.000000, 1768572106.237733, '\0\0\0\0\0\0\0\0\0\0"', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2213, 1768546730.237974, 1768546729.603800, '\0\0\0\0\0\0\0\0\0\0G', 0, 503, 0, 0, 0, 'https://omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2214, 1768546486.262472, 1768546485.632900, '\0\0\0\0\0\0\0\0\0\0G', 0, 503, 0, 0, 0, 'https://omsrislb.my/wp-login.php', NULL, 'Mozilla/5.0', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"L3dwLWxvZ2luLnBocA=="}'),
(2215, 1768680196.342247, 1768680196.017500, '\0\0\0\0\0\0\0\0\0\046]', 0, 200, 0, 0, 0, 'https://omsrislb.my/debug.log', NULL, 'python-httpx/0.28.1', 'logged:waf', 'Readme.txt and debug.log scans', '{"learningMode":0,"failedRules":"logged|500","paramKey":"cmVxdWVzdC51cmk=","paramValue":"L2RlYnVnLmxvZw==","path":"L2RlYnVnLmxvZw==","category":"discovery-and-probing","ssl":1}'),
(2216, 1768680196.341938, 1768680196.017500, '\0\0\0\0\0\0\0\0\0\046]', 0, 200, 0, 0, 0, 'https://omsrislb.my/debug.log', NULL, 'python-httpx/0.28.1', 'logged:waf', 'Readme.txt and debug.log scans', '{"learningMode":0,"failedRules":"logged|500","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L2RlYnVnLmxvZw==","path":"L2RlYnVnLmxvZw==","category":"discovery-and-probing","ssl":1}'),
(2217, 0.000000, 1768753032.401989, '\0\0\0\0\0\0\0\0\0\0"yu''', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2218, 0.000000, 1768828848.935358, '\0\0\0\0\0\0\0\0\0\0"', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2219, 0.000000, 1768842856.017696, '\0\0\0\0\0\0\0\0\0\0"}D', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2220, 0.000000, 1769105369.979330, '\0\0\0\0\0\0\0\0\0\0#k', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2221, 0.000000, 1769188376.978893, '\0\0\0\0\0\0\0\0\0\0wB', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2222, 0.000000, 1769188377.378761, '\0\0\0\0\0\0\0\0\0\0wB', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2223, 1769188378.813338, 1769188378.770600, '\0\0\0\0\0\0\0\0\0\0wB', 0, 503, 0, 0, 0, 'https://omsrislb.my//?author=1', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly8="}'),
(2224, 1769188378.322238, 1769188378.281400, '\0\0\0\0\0\0\0\0\0\0wB', 0, 503, 0, 0, 0, 'https://omsrislb.my//wp-includes/wlwmanifest.xml', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly93cC1pbmNsdWRlcy93bHdtYW5pZmVzdC54bWw="}'),
(2225, 1769188378.083424, 1769188378.045400, '\0\0\0\0\0\0\0\0\0\0wB', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php?rsd=', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsnrepeat', 'Blocked by Wordfence Security Network', '{"learningMode":0,"failedRules":"","paramKey":"","paramValue":"","path":"Ly94bWxycGMucGhw"}'),
(2226, 0.000000, 1769321038.711220, '\0\0\0\0\0\0\0\0\0\0",G', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2227, 0.000000, 1769329332.349481, '\0\0\0\0\0\0\0\0\0\0"N.', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2228, 0.000000, 1769612651.215592, '\0\0\0\0\0\0\0\0\0\0#E', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2229, 0.000000, 1769681487.645197, '\0\0\0\0\0\0\0\0\0\0#', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2230, 0.000000, 1769684755.611160, '\0\0\0\0\0\0\0\0\0\0"l', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2231, 0.000000, 1769685020.692603, '\0\0\0\0\0\0\0\0\0\0h/', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2232, 0.000000, 1769686497.553563, '\0\0\0\0\0\0\0\0\0\0",', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2233, 0.000000, 1769787375.465566, '\0\0\0\0\0\0\0\0\0\0"', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2234, 0.000000, 1769796555.647052, '\0\0\0\0\0\0\0\0\0\0"?c', 0, 503, 0, 0, 0, 'https://omsrislb.my//xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2235, 0.000000, 1769842545.143026, '\0\0\0\0\0\0\0\0\0\0";2[', 0, 503, 0, 0, 0, 'http://omsrislb.my/xmlrpc.php', '', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36', 'blocked:wfsn', 'Blocked by Wordfence Security Network', NULL),
(2236, 1769993917.813147, 1769993917.225800, '\0\0\0\0\0\0\0\0\0\0-\\', 0, 403, 0, 0, 0, 'http://omsrislb.my/sites/all/libraries/elfinder/src/connectors/php/connector.php', NULL, 'ALittle Client', 'blocked:waf', 'Known malicious User-Agents', '{"learningMode":0,"failedRules":"307","paramKey":"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd","paramValue":"QUxpdHRsZSBDbGllbnQ=","path":"L3NpdGVzL2FsbC9saWJyYXJpZXMvZWxmaW5kZXIvc3JjL2Nvbm5lY3RvcnMvcGhwL2Nvbm5lY3Rvci5waHA=","category":"brute-force","ssl":0,"fullRequest":"R0VUIC9zaXRlcy9hbGwvbGlicmFyaWVzL2VsZmluZGVyL3NyYy9jb25uZWN0b3JzL3BocC9jb25uZWN0b3IucGhwIEhUVFAvMS4xCkFjY2VwdDogKi8qCkFjY2VwdC1FbmNvZGluZzogZ3ppcApIb3N0OiBvbXNyaXNsYi5teQpVc2VyLUFnZW50OiBBTGl0dGxlIENsaWVudApYLUZvcndhcmRlZC1Gb3I6IDQ1LjE5NC45Mi4yMSwgMTcyLjcwLjgwLjU4CkNmLVJheTogOWM3NWJkYzUyODUwYWIzZS1ZWVoKQ2RuLUxvb3A6IGNsb3VkZmxhcmU7IGxvb3BzPTEKQ2YtQ29ubmVjdGluZy1JcDogNDUuMTk0LjkyLjIxCkNmLUlwY291bnRyeTogQ0EKQ2YtVmlzaXRvcjogeyJzY2hlbWUiOiJodHRwIn0KWC1Gb3J3YXJkZWQtUHJvdG86IGh0dHAKQ29udGVudC1UeXBlOiBhcHBsaWNhdGlvbi9qc29uCgo="}'),
(2237, 1769985556.139845, 1769985556.110600, '\0\0\0\0\0\0\0\0\0\0E)', 0, 403, 0, 0, 0, 'http://omsrislb.my/shop/wp-admin/install.php?step=1&language=en_GB', NULL, 'Mozilla/5.0 (iPad; CPU OS 16_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1', 'blocked:waf', 'WordPress New Install File Probing', '{"learningMode":0,"failedRules":"506","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L3Nob3Avd3AtYWRtaW4vaW5zdGFsbC5waHA=","path":"L3Nob3Avd3AtYWRtaW4vaW5zdGFsbC5waHA=","category":"discovery-and-probing","ssl":0,"fullRequest":"R0VUIC9zaG9wL3dwLWFkbWluL2luc3RhbGwucGhwP3N0ZXA9MSZsYW5ndWFnZT1lbl9HQiBIVFRQLzEuMQpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKSG9zdDogb21zcmlzbGIubXkKVXNlci1BZ2VudDogTW96aWxsYS81LjAgKGlQYWQ7IENQVSBPUyAxNl80IGxpa2UgTWFjIE9TIFgpIEFwcGxlV2ViS2l0LzYwNS4xLjE1IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi8xNi40IE1vYmlsZS8xNUUxNDggU2FmYXJpLzYwNC4xClgtRm9yd2FyZGVkLUZvcjogNjkuMTY3LjEyLjQxLCAxNzIuNjkuNy45NwpDZi1SYXk6IDljNzRmMWEzMmI3ZDYyMTUtT1JECkNkbi1Mb29wOiBjbG91ZGZsYXJlOyBsb29wcz0xCkNmLUNvbm5lY3RpbmctSXA6IDY5LjE2Ny4xMi40MQpDZi1JcGNvdW50cnk6IFVTCkNmLVZpc2l0b3I6IHsic2NoZW1lIjoiaHR0cCJ9ClgtRm9yd2FyZGVkLVByb3RvOiBodHRwCgo="}'),
(2238, 1769985555.078556, 1769985555.050600, '\0\0\0\0\0\0\0\0\0\0E)', 0, 403, 0, 0, 0, 'http://omsrislb.my/test/wp-admin/install.php?step=1&language=en_GB', NULL, 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36', 'blocked:waf', 'WordPress New Install File Probing', '{"learningMode":0,"failedRules":"506","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L3Rlc3Qvd3AtYWRtaW4vaW5zdGFsbC5waHA=","path":"L3Rlc3Qvd3AtYWRtaW4vaW5zdGFsbC5waHA=","category":"discovery-and-probing","ssl":0,"fullRequest":"R0VUIC90ZXN0L3dwLWFkbWluL2luc3RhbGwucGhwP3N0ZXA9MSZsYW5ndWFnZT1lbl9HQiBIVFRQLzEuMQpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKSG9zdDogb21zcmlzbGIubXkKVXNlci1BZ2VudDogTW96aWxsYS81LjAgKFgxMTsgTGludXggeDg2XzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTE1LjAuMC4wIFNhZmFyaS81MzcuMzYKWC1Gb3J3YXJkZWQtRm9yOiA2OS4xNjcuMTIuNDEsIDE3Mi42OS43Ljk4CkNmLVJheTogOWM3NGYxOWM4ZGZjNjIxNS1PUkQKQ2RuLUxvb3A6IGNsb3VkZmxhcmU7IGxvb3BzPTEKQ2YtQ29ubmVjdGluZy1JcDogNjkuMTY3LjEyLjQxCkNmLUlwY291bnRyeTogVVMKQ2YtVmlzaXRvcjogeyJzY2hlbWUiOiJodHRwIn0KWC1Gb3J3YXJkZWQtUHJvdG86IGh0dHAKCg=="}'),
(2239, 1769985553.991985, 1769985553.962800, '\0\0\0\0\0\0\0\0\0\0E)', 0, 403, 0, 0, 0, 'http://omsrislb.my/blog/wp-admin/install.php?step=1&language=en_GB', NULL, 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36', 'blocked:waf', 'WordPress New Install File Probing', '{"learningMode":0,"failedRules":"506","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L2Jsb2cvd3AtYWRtaW4vaW5zdGFsbC5waHA=","path":"L2Jsb2cvd3AtYWRtaW4vaW5zdGFsbC5waHA=","category":"discovery-and-probing","ssl":0,"fullRequest":"R0VUIC9ibG9nL3dwLWFkbWluL2luc3RhbGwucGhwP3N0ZXA9MSZsYW5ndWFnZT1lbl9HQiBIVFRQLzEuMQpBY2NlcHQtRW5jb2Rpbmc6IGd6aXAKSG9zdDogb21zcmlzbGIubXkKVXNlci1BZ2VudDogTW96aWxsYS81LjAgKFgxMTsgTGludXggeDg2XzY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTE1LjAuMC4wIFNhZmFyaS81MzcuMzYKWC1Gb3J3YXJkZWQtRm9yOiA2OS4xNjcuMTIuNDEsIDE3Mi42OS43Ljk3CkNmLVJheTogOWM3NGYxOTVhODA0NjIxNS1PUkQKQ2RuLUxvb3A6IGNsb3VkZmxhcmU7IGxvb3BzPTEKQ2YtQ29ubmVjdGluZy1JcDogNjkuMTY3LjEyLjQxCkNmLUlwY291bnRyeTogVVMKQ2YtVmlzaXRvcjogeyJzY2hlbWUiOiJodHRwIn0KWC1Gb3J3YXJkZWQtUHJvdG86IGh0dHAKCg=="}'),
(2240, 1769985552.036607, 1769985551.996400, '\0\0\0\0\0\0\0\0\0\0E)', 0, 403, 0, 0, 0, 'http://omsrislb.my/old/wp-admin/install.php?step=1&language=en_GB', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36', 'blocked:waf', 'WordPress New Install File Probing', '{"learningMode":0,"failedRules":"506","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L29sZC93cC1hZG1pbi9pbnN0YWxsLnBocA==","path":"L29sZC93cC1hZG1pbi9pbnN0YWxsLnBocA==","category":"discovery-and-probing","ssl":0,"fullRequest":"R0VUIC9vbGQvd3AtYWRtaW4vaW5zdGFsbC5waHA/c3RlcD0xJmxhbmd1YWdlPWVuX0dCIEhUVFAvMS4xCkFjY2VwdC1FbmNvZGluZzogZ3ppcApIb3N0OiBvbXNyaXNsYi5teQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXaW42NDsgeDY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTE1LjAuMC4wIFNhZmFyaS81MzcuMzYKWC1Gb3J3YXJkZWQtRm9yOiA2OS4xNjcuMTIuNDEsIDE3Mi42OS43Ljk3CkNmLVJheTogOWM3NGYxODk2YzFmNjIxNS1PUkQKQ2RuLUxvb3A6IGNsb3VkZmxhcmU7IGxvb3BzPTEKQ2YtQ29ubmVjdGluZy1JcDogNjkuMTY3LjEyLjQxCkNmLUlwY291bnRyeTogVVMKQ2YtVmlzaXRvcjogeyJzY2hlbWUiOiJodHRwIn0KWC1Gb3J3YXJkZWQtUHJvdG86IGh0dHAKCg=="}'),
(2241, 1769985550.940415, 1769985550.907500, '\0\0\0\0\0\0\0\0\0\0E)', 0, 403, 0, 0, 0, 'http://omsrislb.my/new/wp-admin/install.php?step=1&language=en_GB', NULL, 'Mozilla/5.0 (iPhone; CPU iPhone OS 16_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1', 'blocked:waf', 'WordPress New Install File Probing', '{"learningMode":0,"failedRules":"506","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L25ldy93cC1hZG1pbi9pbnN0YWxsLnBocA==","path":"L25ldy93cC1hZG1pbi9pbnN0YWxsLnBocA==","category":"discovery-and-probing","ssl":0,"fullRequest":"R0VUIC9uZXcvd3AtYWRtaW4vaW5zdGFsbC5waHA/c3RlcD0xJmxhbmd1YWdlPWVuX0dCIEhUVFAvMS4xCkFjY2VwdC1FbmNvZGluZzogZ3ppcApIb3N0OiBvbXNyaXNsYi5teQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoaVBob25lOyBDUFUgaVBob25lIE9TIDE2XzQgbGlrZSBNYWMgT1MgWCkgQXBwbGVXZWJLaXQvNjA1LjEuMTUgKEtIVE1MLCBsaWtlIEdlY2tvKSBWZXJzaW9uLzE2LjQgTW9iaWxlLzE1RTE0OCBTYWZhcmkvNjA0LjEKWC1Gb3J3YXJkZWQtRm9yOiA2OS4xNjcuMTIuNDEsIDE3Mi42OS43Ljk4CkNmLVJheTogOWM3NGYxODI4ZDU4NjIxNS1PUkQKQ2RuLUxvb3A6IGNsb3VkZmxhcmU7IGxvb3BzPTEKQ2YtQ29ubmVjdGluZy1JcDogNjkuMTY3LjEyLjQxCkNmLUlwY291bnRyeTogVVMKQ2YtVmlzaXRvcjogeyJzY2hlbWUiOiJodHRwIn0KWC1Gb3J3YXJkZWQtUHJvdG86IGh0dHAKCg=="}'),
(2242, 1769985549.741730, 1769985549.716600, '\0\0\0\0\0\0\0\0\0\0E)', 0, 403, 0, 0, 0, 'http://omsrislb.my/wp/wp-admin/install.php?step=1&language=en_GB', NULL, 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15', 'blocked:waf', 'WordPress New Install File Probing', '{"learningMode":0,"failedRules":"506","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L3dwL3dwLWFkbWluL2luc3RhbGwucGhw","path":"L3dwL3dwLWFkbWluL2luc3RhbGwucGhw","category":"discovery-and-probing","ssl":0,"fullRequest":"R0VUIC93cC93cC1hZG1pbi9pbnN0YWxsLnBocD9zdGVwPTEmbGFuZ3VhZ2U9ZW5fR0IgSFRUUC8xLjEKQWNjZXB0LUVuY29kaW5nOiBnemlwCkhvc3Q6IG9tc3Jpc2xiLm15ClVzZXItQWdlbnQ6IE1vemlsbGEvNS4wIChNYWNpbnRvc2g7IEludGVsIE1hYyBPUyBYIDEwXzE1XzcpIEFwcGxlV2ViS2l0LzYwNS4xLjE1IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi8xNS4xIFNhZmFyaS82MDUuMS4xNQpYLUZvcndhcmRlZC1Gb3I6IDY5LjE2Ny4xMi40MSwgMTcyLjY5LjcuOTcKQ2YtUmF5OiA5Yzc0ZjE3YjNmYzM2MjE1LU9SRApDZG4tTG9vcDogY2xvdWRmbGFyZTsgbG9vcHM9MQpDZi1Db25uZWN0aW5nLUlwOiA2OS4xNjcuMTIuNDEKQ2YtSXBjb3VudHJ5OiBVUwpDZi1WaXNpdG9yOiB7InNjaGVtZSI6Imh0dHAifQpYLUZvcndhcmRlZC1Qcm90bzogaHR0cAoK"}'),
(2243, 1769985548.617723, 1769985548.590400, '\0\0\0\0\0\0\0\0\0\0E)', 0, 403, 0, 0, 0, 'http://omsrislb.my/wordpress/wp-admin/install.php?step=1&language=en_GB', NULL, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36', 'blocked:waf', 'WordPress New Install File Probing', '{"learningMode":0,"failedRules":"506","paramKey":"cmVxdWVzdC5wYXRo","paramValue":"L3dvcmRwcmVzcy93cC1hZG1pbi9pbnN0YWxsLnBocA==","path":"L3dvcmRwcmVzcy93cC1hZG1pbi9pbnN0YWxsLnBocA==","category":"discovery-and-probing","ssl":0,"fullRequest":"R0VUIC93b3JkcHJlc3Mvd3AtYWRtaW4vaW5zdGFsbC5waHA/c3RlcD0xJmxhbmd1YWdlPWVuX0dCIEhUVFAvMS4xCkFjY2VwdC1FbmNvZGluZzogZ3ppcApIb3N0OiBvbXNyaXNsYi5teQpVc2VyLUFnZW50OiBNb3ppbGxhLzUuMCAoV2luZG93cyBOVCAxMC4wOyBXaW42NDsgeDY0KSBBcHBsZVdlYktpdC81MzcuMzYgKEtIVE1MLCBsaWtlIEdlY2tvKSBDaHJvbWUvMTE1LjAuMC4wIFNhZmFyaS81MzcuMzYKWC1Gb3J3YXJkZWQtRm9yOiA2OS4xNjcuMTIuNDEsIDE3Mi42OS43Ljk3CkNmLVJheTogOWM3NGYxNzQxYTRiNjIxNS1PUkQKQ2RuLUxvb3A6IGNsb3VkZmxhcmU7IGxvb3BzPTEKQ2YtQ29ubmVjdGluZy1JcDogNjkuMTY3LjEyLjQxCkNmLUlwY291bnRyeTogVVMKQ2YtVmlzaXRvcjogeyJzY2hlbWUiOiJodHRwIn0KWC1Gb3J3YXJkZWQtUHJvdG86IGh0dHAKCg=="}');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfhoover`
--

CREATE TABLE `wpiq_wfhoover` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` varbinary(124) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfissues`
--

CREATE TABLE `wpiq_wfissues` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `time` int unsigned NOT NULL,
  `lastUpdated` int unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfissues`
--

INSERT INTO `wpiq_wfissues` VALUES
(2211, 1765293668, 1765293668, 'new', 'suspiciousAdminUsers', 75, '9d100c30bc12756a797226f30c37a924', '9d100c30bc12756a797226f30c37a924', 'An admin user with the username admin was created outside of WordPress.', 'An admin user with the username admin was created outside of WordPress. It''s possible a plugin could have created the account, but if you do not recognize the user, we suggest you remove it.', 'a:1:{s:6:"userID";i:3;}'),
(2216, 1765423549, 1765423549, 'new', 'wfPluginUpgrade', 75, '017111a3e1592c10fad9851ebd3785ae', '017111a3e1592c10fad9851ebd3785ae', 'The Plugin "Code Snippets" needs an upgrade (3.6.8 -> 3.9.3).', 'You need to upgrade "Code Snippets" to the newest version to ensure you have any security fixes the developer has released.', 'a:29:{s:22:"Elementor tested up to";s:0:"";s:26:"Elementor Pro tested up to";s:0:"";s:4:"Name";s:13:"Code Snippets";s:9:"PluginURI";s:24:"https://codesnippets.pro";s:7:"Version";s:5:"3.6.8";s:11:"Description";s:122:"An easy, clean and simple way to run code snippets on your site. No need to edit to your theme''s functions.php file again!";s:6:"Author";s:17:"Code Snippets Pro";s:9:"AuthorURI";s:24:"https://codesnippets.pro";s:10:"TextDomain";s:13:"code-snippets";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:10:"RequiresWP";s:3:"5.0";s:11:"RequiresPHP";s:3:"7.4";s:9:"UpdateURI";s:0:"";s:15:"RequiresPlugins";s:0:"";s:5:"Title";s:13:"Code Snippets";s:10:"AuthorName";s:17:"Code Snippets Pro";s:10:"pluginFile";s:77:"/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/code-snippets.php";s:4:"slug";s:13:"code-snippets";s:10:"newVersion";s:5:"3.9.3";s:5:"wpURL";s:43:"https://wordpress.org/plugins/code-snippets";s:15:"updateAvailable";b:1;s:10:"vulnerable";b:1;s:17:"vulnerabilityLink";s:108:"https://www.wordfence.com/threat-intel/vulnerabilities/id/c7c7247c-2fc3-46ff-858e-2242b7211476?source=plugin";s:9:"cvssScore";s:3:"8.0";s:13:"severityColor";s:7:"#df3d03";s:13:"severityLabel";s:4:"High";s:13:"severityClass";s:30:"wf-vulnerability-severity-high";s:10:"cvssVector";s:44:"CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:C/C:H/I:H/A:H";}'),
(2217, 1765423549, 1765423549, 'new', 'wfPluginUpgrade', 100, '206d8a2a0375a302544bcee84c34411d', '206d8a2a0375a302544bcee84c34411d', 'The Plugin "Elementor" needs an upgrade (3.28.1 -> 3.33.4).', 'You need to upgrade "Elementor" to the newest version to ensure you have any security fixes the developer has released.', 'a:29:{s:22:"Elementor tested up to";s:0:"";s:26:"Elementor Pro tested up to";s:0:"";s:4:"Name";s:9:"Elementor";s:9:"PluginURI";s:87:"https://elementor.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash";s:7:"Version";s:6:"3.28.1";s:11:"Description";s:145:"The Elementor Website Builder has it all: drag and drop page builder, pixel perfect design, mobile responsive editing, and more. Get started now!";s:6:"Author";s:13:"Elementor.com";s:9:"AuthorURI";s:87:"https://elementor.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash";s:10:"TextDomain";s:9:"elementor";s:10:"DomainPath";s:0:"";s:7:"Network";b:0;s:10:"RequiresWP";s:0:"";s:11:"RequiresPHP";s:0:"";s:9:"UpdateURI";s:0:"";s:15:"RequiresPlugins";s:0:"";s:5:"Title";s:9:"Elementor";s:10:"AuthorName";s:13:"Elementor.com";s:10:"pluginFile";s:69:"/home/binawebp/omsrislb.my/wp-content/plugins/elementor/elementor.php";s:4:"slug";s:9:"elementor";s:10:"newVersion";s:6:"3.33.4";s:5:"wpURL";s:39:"https://wordpress.org/plugins/elementor";s:15:"updateAvailable";b:1;s:10:"vulnerable";b:1;s:17:"vulnerabilityLink";s:108:"https://www.wordfence.com/threat-intel/vulnerabilities/id/473bef81-b2c9-429c-aa23-c2dba0908cc3?source=plugin";s:9:"cvssScore";s:3:"6.4";s:13:"severityColor";s:7:"#f9a009";s:13:"severityLabel";s:6:"Medium";s:13:"severityClass";s:32:"wf-vulnerability-severity-medium";s:10:"cvssVector";s:44:"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N";}'),
(2218, 1765423549, 1765423549, 'new', 'wfPluginUpgrade', 75, 'da647dca4a87afe614c2e8e7c09a6aaa', 'da647dca4a87afe614c2e8e7c09a6aaa', 'The Plugin "WP-Optimize - Clean, Compress, Cache" needs an upgrade (4.1.1 -> 4.3.1).', 'You need to upgrade "WP-Optimize - Clean, Compress, Cache" to the newest version to ensure you have any security fixes the developer has released.', 'a:29:{s:22:"Elementor tested up to";s:0:"";s:26:"Elementor Pro tested up to";s:0:"";s:4:"Name";s:36:"WP-Optimize - Clean, Compress, Cache";s:9:"PluginURI";s:18:"https://getwpo.com";s:7:"Version";s:5:"4.1.1";s:11:"Description";s:150:"WP-Optimize makes your site fast and efficient. It cleans the database, compresses images and caches pages. Fast sites attract more traffic and users.";s:6:"Author";s:26:"TeamUpdraft, DavidAnderson";s:9:"AuthorURI";s:23:"https://updraftplus.com";s:10:"TextDomain";s:11:"wp-optimize";s:10:"DomainPath";s:10:"/languages";s:7:"Network";b:0;s:10:"RequiresWP";s:3:"4.9";s:11:"RequiresPHP";s:3:"7.2";s:9:"UpdateURI";s:42:"https://wordpress.org/plugins/wp-optimize/";s:15:"RequiresPlugins";s:0:"";s:5:"Title";s:36:"WP-Optimize - Clean, Compress, Cache";s:10:"AuthorName";s:26:"TeamUpdraft, DavidAnderson";s:10:"pluginFile";s:73:"/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/wp-optimize.php";s:4:"slug";s:11:"wp-optimize";s:10:"newVersion";s:5:"4.3.1";s:5:"wpURL";s:41:"https://wordpress.org/plugins/wp-optimize";s:15:"updateAvailable";b:1;s:10:"vulnerable";b:1;s:17:"vulnerabilityLink";s:108:"https://www.wordfence.com/threat-intel/vulnerabilities/id/d524b859-b61c-4c52-b4b3-76f2983c085a?source=plugin";s:9:"cvssScore";s:3:"4.9";s:13:"severityColor";s:7:"#f9a009";s:13:"severityLabel";s:6:"Medium";s:13:"severityClass";s:32:"wf-vulnerability-severity-medium";s:10:"cvssVector";s:44:"CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N";}'),
(2220, 1765423549, 1765423549, 'new', 'wfThemeUpgrade', 50, 'fd8b24935e5e28270d494161f45661ab', 'fd8b24935e5e28270d494161f45661ab', 'The Theme "Twenty Twenty-Three" needs an upgrade (1.2 -> 1.6).', 'You need to upgrade "Twenty Twenty-Three" to the newest version to ensure you have any security fixes the developer has released.', 'a:7:{s:10:"newVersion";s:3:"1.6";s:7:"package";s:63:"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip";s:3:"URL";s:47:"https://wordpress.org/themes/twentytwentythree/";s:4:"Name";s:19:"Twenty Twenty-Three";s:4:"name";s:19:"Twenty Twenty-Three";s:7:"version";s:3:"1.2";s:10:"vulnerable";b:0;}');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfknownfilelist`
--

CREATE TABLE `wpiq_wfknownfilelist` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  `wordpress_path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfknownfilelist`
--

INSERT INTO `wpiq_wfknownfilelist` VALUES
(1, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/LICENSE', 'wp-content/plugins/all-in-one-wp-migration/LICENSE'),
(2, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php', 'wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php'),
(3, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/changelog.txt', 'wp-content/plugins/all-in-one-wp-migration/changelog.txt'),
(4, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/constants.php', 'wp-content/plugins/all-in-one-wp-migration/constants.php'),
(5, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/deprecated.php', 'wp-content/plugins/all-in-one-wp-migration/deprecated.php'),
(6, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/exceptions.php', 'wp-content/plugins/all-in-one-wp-migration/exceptions.php'),
(7, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/functions.php', 'wp-content/plugins/all-in-one-wp-migration/functions.php'),
(8, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-backups-controller.php'),
(9, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-export-controller.php'),
(10, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-feedback-controller.php'),
(11, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-import-controller.php'),
(12, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-main-controller.php'),
(13, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-reset-controller.php'),
(14, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-schedules-controller.php'),
(15, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-status-controller.php'),
(16, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php', 'wp-content/plugins/all-in-one-wp-migration/lib/controller/class-ai1wm-updater-controller.php'),
(17, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-backups.php'),
(18, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-compatibility.php'),
(19, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-deprecated.php'),
(20, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-extensions.php'),
(21, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-feedback.php'),
(22, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-handler.php'),
(23, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-log.php'),
(24, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-message.php'),
(25, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-notification.php'),
(26, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-status.php'),
(27, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-template.php'),
(28, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/class-ai1wm-updater.php'),
(29, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-archive.php'),
(30, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-clean.php'),
(31, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-compatibility.php'),
(32, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config-file.php'),
(33, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-config.php'),
(34, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-content.php'),
(35, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database-file.php'),
(36, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-database.php'),
(37, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-download.php'),
(38, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-content.php'),
(39, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-media.php'),
(40, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-plugins.php'),
(41, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-tables.php'),
(42, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-enumerate-themes.php'),
(43, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-init.php'),
(44, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-media.php'),
(45, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-plugins.php'),
(46, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/export/class-ai1wm-export-themes.php'),
(47, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-blogs.php'),
(48, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-decryption-password.php'),
(49, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-check-encryption.php'),
(50, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-clean.php'),
(51, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-compatibility.php'),
(52, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-confirm.php'),
(53, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-content.php'),
(54, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-database.php'),
(55, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-done.php'),
(56, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-enumerate.php'),
(57, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-mu-plugins.php'),
(58, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-options.php'),
(59, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-permalinks.php'),
(60, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-upload.php'),
(61, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-users.php'),
(62, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php', 'wp-content/plugins/all-in-one-wp-migration/lib/model/import/class-ai1wm-import-validate.php'),
(63, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/LICENSE'),
(64, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Bandar.php'),
(65, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/bandar/bandar/lib/Exceptions/TemplateDoesNotExistException.php'),
(66, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-archiver.php'),
(67, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-compressor.php'),
(68, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/archiver/class-ai1wm-extractor.php'),
(69, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/command/class-ai1wm-wp-cli-command.php'),
(70, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/cron/class-ai1wm-cron.php'),
(71, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysql.php'),
(72, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-mysqli.php'),
(73, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-sqlite.php'),
(74, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database-utility.php'),
(75, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/database/class-ai1wm-database.php'),
(76, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-directory.php'),
(77, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-htaccess.php'),
(78, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-index.php'),
(79, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-robots.php'),
(80, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file-webconfig.php'),
(81, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filesystem/class-ai1wm-file.php'),
(82, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-exclude-filter.php'),
(83, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/filter/class-ai1wm-recursive-extension-filter.php'),
(84, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-directory-iterator.php'),
(85, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php', 'wp-content/plugins/all-in-one-wp-migration/lib/vendor/servmask/iterator/class-ai1wm-recursive-iterator-iterator.php'),
(86, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.css'),
(87, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/backups.min.rtl.css'),
(88, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.css'),
(89, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/encrypt.min.rtl.css'),
(90, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.css'),
(91, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/export.min.rtl.css'),
(92, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.css'),
(93, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/import.min.rtl.css'),
(94, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.css'),
(95, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/reset.min.rtl.css'),
(96, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.css'),
(97, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/schedules.min.rtl.css'),
(98, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.css'),
(99, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/servmask.min.rtl.css'),
(100, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.css'),
(101, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/css/updater.min.rtl.css'),
(102, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.eot'),
(103, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.svg'),
(104, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.ttf'),
(105, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/font/servmask.woff'),
(106, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/ajax-loader.gif'),
(107, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-128x128.png'),
(108, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-20x20.png'),
(109, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo-32x32.png'),
(110, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/logo.svg'),
(111, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/screen.jpg'),
(112, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/reset/star.png'),
(113, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/backup-scheduler.png'),
(114, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/dropbox-storage.png'),
(115, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/ftp-storage.png'),
(116, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/google-drive-storage.png'),
(117, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/more-storage-providers.png'),
(118, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/multisite-schedules.png'),
(119, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/notification-settings.png'),
(120, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/onedrive-storage.png'),
(121, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/img/schedules/retention-settings.png'),
(122, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js'),
(123, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js.LICENSE.txt', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/backups.min.js.LICENSE.txt'),
(124, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/export.min.js'),
(125, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/import.min.js'),
(126, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/reset.min.js'),
(127, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/schedules.min.js'),
(128, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/servmask.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/servmask.min.js'),
(129, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/settings.min.js'),
(130, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js', 'wp-content/plugins/all-in-one-wp-migration/lib/view/assets/javascript/util.min.js'),
(131, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-list.php'),
(132, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/backups-permissions.php'),
(133, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/backups/index.php'),
(134, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/http-authentication.php'),
(135, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/leave-feedback.php'),
(136, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/maintenance-mode.php'),
(137, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/report-problem.php'),
(138, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/share-buttons.php'),
(139, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/common/sidebar-right.php'),
(140, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/advanced-settings.php'),
(141, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-azure-storage.php'),
(142, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-b2.php'),
(143, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-box.php'),
(144, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-digitalocean.php'),
(145, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-dropbox.php'),
(146, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-file.php'),
(147, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-ftp.php'),
(148, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gcloud-storage.php'),
(149, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-gdrive.php'),
(150, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-glacier.php'),
(151, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-mega.php'),
(152, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-onedrive.php'),
(153, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-pcloud.php'),
(154, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3-client.php'),
(155, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-s3.php'),
(156, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/button-webdav.php'),
(157, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-buttons.php'),
(158, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/export-permissions.php'),
(159, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/find-replace.php'),
(160, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/help-section.php'),
(161, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/export/index.php'),
(162, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/avada.php'),
(163, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-azure-storage.php'),
(164, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-b2.php'),
(165, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-box.php'),
(166, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-digitalocean.php'),
(167, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-dropbox.php'),
(168, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-file.php'),
(169, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-ftp.php'),
(170, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gcloud-storage.php'),
(171, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-gdrive.php'),
(172, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-glacier.php'),
(173, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-mega.php'),
(174, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-onedrive.php'),
(175, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-pcloud.php'),
(176, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3-client.php'),
(177, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-s3.php'),
(178, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-url.php'),
(179, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/button-webdav.php'),
(180, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/done.php'),
(181, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-buttons.php'),
(182, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/import-permissions.php'),
(183, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/index.php'),
(184, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/oxygen.php'),
(185, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/import/pro.php'),
(186, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/admin-head.php'),
(187, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-htaccess-notice.php'),
(188, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-html-notice.php'),
(189, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-index-php-notice.php'),
(190, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-path-notice.php'),
(191, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-robots-txt-notice.php'),
(192, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups-webconfig-notice.php'),
(193, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/backups.php'),
(194, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/contact-support.php'),
(195, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-auto-increment.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-auto-increment.php'),
(196, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/missing-role-capability-notice.php'),
(197, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/multisite-notice.php'),
(198, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/premium-badge.php'),
(199, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-htaccess-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-htaccess-notice.php'),
(200, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-html-notice.php'),
(201, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-index-php-notice.php'),
(202, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-path-notice.php'),
(203, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-webconfig-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/storage-webconfig-notice.php'),
(204, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/translate.php'),
(205, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/main/wordpress-htaccess-notice.php'),
(206, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/reset/index.php'),
(207, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/schedules/index.php'),
(208, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/check.php'),
(209, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/error.php'),
(210, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php', 'wp-content/plugins/all-in-one-wp-migration/lib/view/updater/update.php'),
(211, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/loader.php', 'wp-content/plugins/all-in-one-wp-migration/loader.php'),
(212, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/readme.txt', 'wp-content/plugins/all-in-one-wp-migration/readme.txt'),
(213, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/storage/index.html', 'wp-content/plugins/all-in-one-wp-migration/storage/index.html'),
(214, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/storage/index.php', 'wp-content/plugins/all-in-one-wp-migration/storage/index.php'),
(215, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration/uninstall.php', 'wp-content/plugins/all-in-one-wp-migration/uninstall.php'),
(216, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php'),
(217, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/constants.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/constants.php'),
(218, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/functions.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/functions.php'),
(219, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-main-controller.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-main-controller.php'),
(220, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-settings-controller.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/controller/class-ai1wmue-settings-controller.php'),
(221, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/class-ai1wmue-settings.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/class-ai1wmue-settings.php'),
(222, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/export/class-ai1wmue-export-retention.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/export/class-ai1wmue-export-retention.php'),
(223, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-database.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-database.php'),
(224, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-settings.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/model/import/class-ai1wmue-import-settings.php'),
(225, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/ai1wm-wp-cli.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/ai1wm-wp-cli.php'),
(226, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-base.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-base.php'),
(227, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-command.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/command/class-ai1wm-backup-wp-cli-command.php'),
(228, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/ai1wmve.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/ai1wmve.php'),
(229, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/constants.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/constants.php'),
(230, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-export-controller.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-export-controller.php'),
(231, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-main-controller.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-main-controller.php'),
(232, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-reset-controller.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-reset-controller.php'),
(233, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-schedules-controller.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/controller/class-ai1wmve-schedules-controller.php'),
(234, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/exceptions.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/exceptions.php'),
(235, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/functions.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/functions.php'),
(236, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-base.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-base.php'),
(237, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-file.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/export/class-ai1wmve-export-retention-file.php'),
(238, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-database.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-database.php'),
(239, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-init.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-init.php'),
(240, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-media.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-media.php'),
(241, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-plugins.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-plugins.php'),
(242, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-themes.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/reset/class-ai1wmve-reset-themes.php'),
(243, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event-log.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event-log.php'),
(244, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-event.php'),
(245, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-events.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/model/schedule/class-ai1wmve-schedule-events.php'),
(246, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-array-sorter.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-array-sorter.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(247, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-file-sorter.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/utils/class-ai1wmve-file-sorter.php'),
(248, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/cache-files.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/cache-files.php'),
(249, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-db-tables.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-db-tables.php'),
(250, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-files.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/exclude-files.php'),
(251, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-plugins.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-plugins.php'),
(252, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-themes.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/export/inactive-themes.php'),
(253, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/import/pro.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/import/pro.php'),
(254, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/reset/index.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/reset/index.php'),
(255, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/create-edit.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/create-edit.php'),
(256, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/index.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/index.php'),
(257, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/schedules-list.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/vendor/servmask/pro/view/schedules/schedules-list.php'),
(258, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js'),
(259, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js.LICENSE.txt', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-export.min.js.LICENSE.txt'),
(260, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-restore.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-restore.min.js'),
(261, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-uploader.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/pro-uploader.min.js'),
(262, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js'),
(263, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js.LICENSE.txt', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset-tools.min.js.LICENSE.txt'),
(264, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js'),
(265, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js.LICENSE.txt', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/reset.min.js.LICENSE.txt'),
(266, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js'),
(267, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js.LICENSE.txt', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedule-event.min.js.LICENSE.txt'),
(268, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js'),
(269, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js.LICENSE.txt', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/schedules.min.js.LICENSE.txt'),
(270, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js'),
(271, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js.LICENSE.txt', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/assets/javascript/settings.min.js.LICENSE.txt'),
(272, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/common/google-tag-manager.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/common/google-tag-manager.php'),
(273, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/settings/index.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/lib/view/settings/index.php'),
(274, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/loader.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/loader.php'),
(275, '/home/binawebp/omsrislb.my/wp-content/plugins/all-in-one-wp-migration-unlimited-extension/uninstall.php', 'wp-content/plugins/all-in-one-wp-migration-unlimited-extension/uninstall.php'),
(276, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/CHANGELOG.md', 'wp-content/plugins/code-snippets/CHANGELOG.md'),
(277, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/assets/icon.svg', 'wp-content/plugins/code-snippets/assets/icon.svg'),
(278, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/assets/menu-icon.svg', 'wp-content/plugins/code-snippets/assets/menu-icon.svg'),
(279, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/code-snippets.php', 'wp-content/plugins/code-snippets/code-snippets.php'),
(280, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/common/_editor.scss', 'wp-content/plugins/code-snippets/css/common/_editor.scss'),
(281, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/common/_theme.scss', 'wp-content/plugins/code-snippets/css/common/_theme.scss'),
(282, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/common/_type-badges.scss', 'wp-content/plugins/code-snippets/css/common/_type-badges.scss'),
(283, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_gpt.scss', 'wp-content/plugins/code-snippets/css/edit/_gpt.scss'),
(284, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_tags.scss', 'wp-content/plugins/code-snippets/css/edit/_tags.scss'),
(285, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_tooltips.scss', 'wp-content/plugins/code-snippets/css/edit/_tooltips.scss'),
(286, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_types.scss', 'wp-content/plugins/code-snippets/css/edit/_types.scss'),
(287, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit/_upgrade-dialog.scss', 'wp-content/plugins/code-snippets/css/edit/_upgrade-dialog.scss'),
(288, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/edit.scss', 'wp-content/plugins/code-snippets/css/edit.scss'),
(289, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/manage/_cloud.scss', 'wp-content/plugins/code-snippets/css/manage/_cloud.scss'),
(290, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/manage.scss', 'wp-content/plugins/code-snippets/css/manage.scss'),
(291, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/menu-button.scss', 'wp-content/plugins/code-snippets/css/menu-button.scss'),
(292, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/prism.scss', 'wp-content/plugins/code-snippets/css/prism.scss'),
(293, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/settings.scss', 'wp-content/plugins/code-snippets/css/settings.scss'),
(294, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/css/welcome.scss', 'wp-content/plugins/code-snippets/css/welcome.scss'),
(295, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit-rtl.css', 'wp-content/plugins/code-snippets/dist/edit-rtl.css'),
(296, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit.css', 'wp-content/plugins/code-snippets/dist/edit.css'),
(297, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit.js', 'wp-content/plugins/code-snippets/dist/edit.js'),
(298, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/edit.js.LICENSE.txt', 'wp-content/plugins/code-snippets/dist/edit.js.LICENSE.txt'),
(299, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/3024-day.css', 'wp-content/plugins/code-snippets/dist/editor-themes/3024-day.css'),
(300, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/3024-night.css', 'wp-content/plugins/code-snippets/dist/editor-themes/3024-night.css'),
(301, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/abbott.css', 'wp-content/plugins/code-snippets/dist/editor-themes/abbott.css'),
(302, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/abcdef.css', 'wp-content/plugins/code-snippets/dist/editor-themes/abcdef.css'),
(303, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ambiance-mobile.css', 'wp-content/plugins/code-snippets/dist/editor-themes/ambiance-mobile.css'),
(304, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ambiance.css', 'wp-content/plugins/code-snippets/dist/editor-themes/ambiance.css'),
(305, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ayu-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/ayu-dark.css'),
(306, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ayu-mirage.css', 'wp-content/plugins/code-snippets/dist/editor-themes/ayu-mirage.css'),
(307, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/base16-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/base16-dark.css'),
(308, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/base16-light.css', 'wp-content/plugins/code-snippets/dist/editor-themes/base16-light.css'),
(309, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/bespin.css', 'wp-content/plugins/code-snippets/dist/editor-themes/bespin.css'),
(310, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/blackboard.css', 'wp-content/plugins/code-snippets/dist/editor-themes/blackboard.css'),
(311, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/cobalt.css', 'wp-content/plugins/code-snippets/dist/editor-themes/cobalt.css'),
(312, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/colorforth.css', 'wp-content/plugins/code-snippets/dist/editor-themes/colorforth.css'),
(313, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/darcula.css', 'wp-content/plugins/code-snippets/dist/editor-themes/darcula.css'),
(314, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/dracula.css', 'wp-content/plugins/code-snippets/dist/editor-themes/dracula.css'),
(315, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/duotone-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/duotone-dark.css'),
(316, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/duotone-light.css', 'wp-content/plugins/code-snippets/dist/editor-themes/duotone-light.css'),
(317, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/eclipse.css', 'wp-content/plugins/code-snippets/dist/editor-themes/eclipse.css'),
(318, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/elegant.css', 'wp-content/plugins/code-snippets/dist/editor-themes/elegant.css'),
(319, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/erlang-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/erlang-dark.css'),
(320, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/gruvbox-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/gruvbox-dark.css'),
(321, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/hopscotch.css', 'wp-content/plugins/code-snippets/dist/editor-themes/hopscotch.css'),
(322, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/icecoder.css', 'wp-content/plugins/code-snippets/dist/editor-themes/icecoder.css'),
(323, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/idea.css', 'wp-content/plugins/code-snippets/dist/editor-themes/idea.css'),
(324, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/isotope.css', 'wp-content/plugins/code-snippets/dist/editor-themes/isotope.css'),
(325, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/juejin.css', 'wp-content/plugins/code-snippets/dist/editor-themes/juejin.css'),
(326, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/lesser-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/lesser-dark.css'),
(327, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/liquibyte.css', 'wp-content/plugins/code-snippets/dist/editor-themes/liquibyte.css'),
(328, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/lucario.css', 'wp-content/plugins/code-snippets/dist/editor-themes/lucario.css'),
(329, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material-darker.css', 'wp-content/plugins/code-snippets/dist/editor-themes/material-darker.css'),
(330, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material-ocean.css', 'wp-content/plugins/code-snippets/dist/editor-themes/material-ocean.css'),
(331, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material-palenight.css', 'wp-content/plugins/code-snippets/dist/editor-themes/material-palenight.css'),
(332, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/material.css', 'wp-content/plugins/code-snippets/dist/editor-themes/material.css'),
(333, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/mbo.css', 'wp-content/plugins/code-snippets/dist/editor-themes/mbo.css'),
(334, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/mdn-like.css', 'wp-content/plugins/code-snippets/dist/editor-themes/mdn-like.css'),
(335, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/midnight.css', 'wp-content/plugins/code-snippets/dist/editor-themes/midnight.css'),
(336, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/monokai.css', 'wp-content/plugins/code-snippets/dist/editor-themes/monokai.css'),
(337, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/moxer.css', 'wp-content/plugins/code-snippets/dist/editor-themes/moxer.css'),
(338, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/neat.css', 'wp-content/plugins/code-snippets/dist/editor-themes/neat.css'),
(339, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/neo.css', 'wp-content/plugins/code-snippets/dist/editor-themes/neo.css'),
(340, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/night.css', 'wp-content/plugins/code-snippets/dist/editor-themes/night.css'),
(341, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/nord.css', 'wp-content/plugins/code-snippets/dist/editor-themes/nord.css'),
(342, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/oceanic-next.css', 'wp-content/plugins/code-snippets/dist/editor-themes/oceanic-next.css'),
(343, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/panda-syntax.css', 'wp-content/plugins/code-snippets/dist/editor-themes/panda-syntax.css'),
(344, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/paraiso-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/paraiso-dark.css'),
(345, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/paraiso-light.css', 'wp-content/plugins/code-snippets/dist/editor-themes/paraiso-light.css'),
(346, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/pastel-on-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/pastel-on-dark.css'),
(347, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/railscasts.css', 'wp-content/plugins/code-snippets/dist/editor-themes/railscasts.css'),
(348, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/rubyblue.css', 'wp-content/plugins/code-snippets/dist/editor-themes/rubyblue.css'),
(349, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/seti.css', 'wp-content/plugins/code-snippets/dist/editor-themes/seti.css'),
(350, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/shadowfox.css', 'wp-content/plugins/code-snippets/dist/editor-themes/shadowfox.css'),
(351, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/solarized.css', 'wp-content/plugins/code-snippets/dist/editor-themes/solarized.css'),
(352, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ssms.css', 'wp-content/plugins/code-snippets/dist/editor-themes/ssms.css'),
(353, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/the-matrix.css', 'wp-content/plugins/code-snippets/dist/editor-themes/the-matrix.css'),
(354, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-bright.css', 'wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-bright.css'),
(355, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-eighties.css', 'wp-content/plugins/code-snippets/dist/editor-themes/tomorrow-night-eighties.css'),
(356, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/ttcn.css', 'wp-content/plugins/code-snippets/dist/editor-themes/ttcn.css'),
(357, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/twilight.css', 'wp-content/plugins/code-snippets/dist/editor-themes/twilight.css'),
(358, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/vibrant-ink.css', 'wp-content/plugins/code-snippets/dist/editor-themes/vibrant-ink.css'),
(359, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/xq-dark.css', 'wp-content/plugins/code-snippets/dist/editor-themes/xq-dark.css'),
(360, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/xq-light.css', 'wp-content/plugins/code-snippets/dist/editor-themes/xq-light.css'),
(361, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/yeti.css', 'wp-content/plugins/code-snippets/dist/editor-themes/yeti.css'),
(362, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/yonce.css', 'wp-content/plugins/code-snippets/dist/editor-themes/yonce.css'),
(363, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor-themes/zenburn.css', 'wp-content/plugins/code-snippets/dist/editor-themes/zenburn.css'),
(364, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor.js', 'wp-content/plugins/code-snippets/dist/editor.js'),
(365, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/editor.js.LICENSE.txt', 'wp-content/plugins/code-snippets/dist/editor.js.LICENSE.txt'),
(366, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage-rtl.css', 'wp-content/plugins/code-snippets/dist/manage-rtl.css'),
(367, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage.css', 'wp-content/plugins/code-snippets/dist/manage.css'),
(368, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage.js', 'wp-content/plugins/code-snippets/dist/manage.js'),
(369, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/manage.js.LICENSE.txt', 'wp-content/plugins/code-snippets/dist/manage.js.LICENSE.txt'),
(370, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/mce.js', 'wp-content/plugins/code-snippets/dist/mce.js'),
(371, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/menu-button.css', 'wp-content/plugins/code-snippets/dist/menu-button.css'),
(372, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/prism.css', 'wp-content/plugins/code-snippets/dist/prism.css'),
(373, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/prism.js', 'wp-content/plugins/code-snippets/dist/prism.js'),
(374, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/prism.js.LICENSE.txt', 'wp-content/plugins/code-snippets/dist/prism.js.LICENSE.txt'),
(375, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/settings.css', 'wp-content/plugins/code-snippets/dist/settings.css'),
(376, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/settings.js', 'wp-content/plugins/code-snippets/dist/settings.js'),
(377, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/dist/welcome.css', 'wp-content/plugins/code-snippets/dist/welcome.css'),
(378, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditor.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditor.tsx'),
(379, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditorShortcuts.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/CodeEditorShortcuts.tsx'),
(380, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditor.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditor.tsx'),
(381, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditorToolbar.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetEditor/SnippetEditorToolbar.tsx'),
(382, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetForm.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/SnippetForm.tsx'),
(383, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ActionButtons.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ActionButtons.tsx'),
(384, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/DeleteButton.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/DeleteButton.tsx'),
(385, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ExportButtons.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/ExportButtons.tsx'),
(386, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/SubmitButtons.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/buttons/SubmitButtons.tsx'),
(387, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/DescriptionEditor.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/DescriptionEditor.tsx'),
(388, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/MultisiteSharingSettings.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/MultisiteSharingSettings.tsx'),
(389, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/NameInput.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/NameInput.tsx'),
(390, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/PriorityInput.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/PriorityInput.tsx'),
(391, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/ScopeInput.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/ScopeInput.tsx'),
(392, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/fields/TagsInput.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/fields/TagsInput.tsx'),
(393, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/index.ts', 'wp-content/plugins/code-snippets/js/components/SnippetForm/index.ts'),
(394, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/page/Notices.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/page/Notices.tsx'),
(395, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/page/PageHeading.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/page/PageHeading.tsx'),
(396, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/SnippetForm/page/UpgradeDialog.tsx', 'wp-content/plugins/code-snippets/js/components/SnippetForm/page/UpgradeDialog.tsx'),
(397, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/SuggestionList.tsx', 'wp-content/plugins/code-snippets/js/components/TagEditor/SuggestionList.tsx'),
(398, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/TagEditor.tsx', 'wp-content/plugins/code-snippets/js/components/TagEditor/TagEditor.tsx'),
(399, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/TagList.tsx', 'wp-content/plugins/code-snippets/js/components/TagEditor/TagList.tsx'),
(400, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/TagEditor/index.ts', 'wp-content/plugins/code-snippets/js/components/TagEditor/index.ts'),
(401, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/common/Button.tsx', 'wp-content/plugins/code-snippets/js/components/common/Button.tsx'),
(402, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/common/ConfirmDialog.tsx', 'wp-content/plugins/code-snippets/js/components/common/ConfirmDialog.tsx'),
(403, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/components/common/CopyToClipboardButton.tsx', 'wp-content/plugins/code-snippets/js/components/common/CopyToClipboardButton.tsx'),
(404, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/edit.tsx', 'wp-content/plugins/code-snippets/js/edit.tsx'),
(405, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/editor.ts', 'wp-content/plugins/code-snippets/js/editor.ts'),
(406, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useAxios.ts', 'wp-content/plugins/code-snippets/js/hooks/useAxios.ts'),
(407, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useSnippetForm.tsx', 'wp-content/plugins/code-snippets/js/hooks/useSnippetForm.tsx'),
(408, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useSnippetSubmit.ts', 'wp-content/plugins/code-snippets/js/hooks/useSnippetSubmit.ts'),
(409, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/hooks/useSnippets.ts', 'wp-content/plugins/code-snippets/js/hooks/useSnippets.ts'),
(410, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/manage.ts', 'wp-content/plugins/code-snippets/js/manage.ts'),
(411, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/mce.ts', 'wp-content/plugins/code-snippets/js/mce.ts'),
(412, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/prism.ts', 'wp-content/plugins/code-snippets/js/prism.ts'),
(413, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/activation.ts', 'wp-content/plugins/code-snippets/js/services/manage/activation.ts'),
(414, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/cloud.ts', 'wp-content/plugins/code-snippets/js/services/manage/cloud.ts'),
(415, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/index.ts', 'wp-content/plugins/code-snippets/js/services/manage/index.ts'),
(416, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/priority.ts', 'wp-content/plugins/code-snippets/js/services/manage/priority.ts'),
(417, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/manage/requests.ts', 'wp-content/plugins/code-snippets/js/services/manage/requests.ts'),
(418, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/settings/editor-preview.ts', 'wp-content/plugins/code-snippets/js/services/settings/editor-preview.ts'),
(419, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/settings/index.ts', 'wp-content/plugins/code-snippets/js/services/settings/index.ts'),
(420, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/services/settings/tabs.ts', 'wp-content/plugins/code-snippets/js/services/settings/tabs.ts'),
(421, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/settings.ts', 'wp-content/plugins/code-snippets/js/settings.ts'),
(422, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/KeyboardShortcut.ts', 'wp-content/plugins/code-snippets/js/types/KeyboardShortcut.ts'),
(423, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/ScreenNotice.ts', 'wp-content/plugins/code-snippets/js/types/ScreenNotice.ts'),
(424, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/SelectOption.ts', 'wp-content/plugins/code-snippets/js/types/SelectOption.ts'),
(425, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/Shortcodes.ts', 'wp-content/plugins/code-snippets/js/types/Shortcodes.ts'),
(426, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/Snippet.ts', 'wp-content/plugins/code-snippets/js/types/Snippet.ts'),
(427, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/SnippetsExport.ts', 'wp-content/plugins/code-snippets/js/types/SnippetsExport.ts'),
(428, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/Window.ts', 'wp-content/plugins/code-snippets/js/types/Window.ts'),
(429, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/WordPressCodeEditor.ts', 'wp-content/plugins/code-snippets/js/types/WordPressCodeEditor.ts'),
(430, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/WordPressEditor.ts', 'wp-content/plugins/code-snippets/js/types/WordPressEditor.ts'),
(431, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/Page.ts', 'wp-content/plugins/code-snippets/js/types/wp/Page.ts'),
(432, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/Post.ts', 'wp-content/plugins/code-snippets/js/types/wp/Post.ts'),
(433, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/PostType.ts', 'wp-content/plugins/code-snippets/js/types/wp/PostType.ts'),
(434, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/Term.ts', 'wp-content/plugins/code-snippets/js/types/wp/Term.ts'),
(435, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/types/wp/User.ts', 'wp-content/plugins/code-snippets/js/types/wp/User.ts'),
(436, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/Linter.ts', 'wp-content/plugins/code-snippets/js/utils/Linter.ts'),
(437, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/errors.ts', 'wp-content/plugins/code-snippets/js/utils/errors.ts'),
(438, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/files.ts', 'wp-content/plugins/code-snippets/js/utils/files.ts'),
(439, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/general.ts', 'wp-content/plugins/code-snippets/js/utils/general.ts'),
(440, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/restAPI.ts', 'wp-content/plugins/code-snippets/js/utils/restAPI.ts'),
(441, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/shortcodes.ts', 'wp-content/plugins/code-snippets/js/utils/shortcodes.ts'),
(442, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/snippets.ts', 'wp-content/plugins/code-snippets/js/utils/snippets.ts'),
(443, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/js/utils/text.ts', 'wp-content/plugins/code-snippets/js/utils/text.ts'),
(444, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/license.txt', 'wp-content/plugins/code-snippets/license.txt'),
(445, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-admin-menu.php', 'wp-content/plugins/code-snippets/php/admin-menus/class-admin-menu.php'),
(446, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-edit-menu.php', 'wp-content/plugins/code-snippets/php/admin-menus/class-edit-menu.php'),
(447, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-import-menu.php', 'wp-content/plugins/code-snippets/php/admin-menus/class-import-menu.php'),
(448, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-manage-menu.php', 'wp-content/plugins/code-snippets/php/admin-menus/class-manage-menu.php'),
(449, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-settings-menu.php', 'wp-content/plugins/code-snippets/php/admin-menus/class-settings-menu.php'),
(450, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/admin-menus/class-welcome-menu.php', 'wp-content/plugins/code-snippets/php/admin-menus/class-welcome-menu.php'),
(451, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-active-snippets.php', 'wp-content/plugins/code-snippets/php/class-active-snippets.php'),
(452, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-admin.php', 'wp-content/plugins/code-snippets/php/class-admin.php'),
(453, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-contextual-help.php', 'wp-content/plugins/code-snippets/php/class-contextual-help.php'),
(454, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-data-item.php', 'wp-content/plugins/code-snippets/php/class-data-item.php'),
(455, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-db.php', 'wp-content/plugins/code-snippets/php/class-db.php'),
(456, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-licensing.php', 'wp-content/plugins/code-snippets/php/class-licensing.php'),
(457, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-list-table.php', 'wp-content/plugins/code-snippets/php/class-list-table.php'),
(458, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-plugin.php', 'wp-content/plugins/code-snippets/php/class-plugin.php'),
(459, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-snippet.php', 'wp-content/plugins/code-snippets/php/class-snippet.php'),
(460, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-upgrade.php', 'wp-content/plugins/code-snippets/php/class-upgrade.php'),
(461, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-validator.php', 'wp-content/plugins/code-snippets/php/class-validator.php'),
(462, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/class-welcome-api.php', 'wp-content/plugins/code-snippets/php/class-welcome-api.php'),
(463, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-api.php', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-api.php'),
(464, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-link.php', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-link.php'),
(465, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-search-list-table.php', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-search-list-table.php'),
(466, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-snippet.php', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-snippet.php'),
(467, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/class-cloud-snippets.php', 'wp-content/plugins/code-snippets/php/cloud/class-cloud-snippets.php'),
(468, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/cloud/list-table-shared-ops.php', 'wp-content/plugins/code-snippets/php/cloud/list-table-shared-ops.php'),
(469, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/deactivation-notice.php', 'wp-content/plugins/code-snippets/php/deactivation-notice.php'),
(470, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/editor.php', 'wp-content/plugins/code-snippets/php/editor.php'),
(471, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/export/class-export-attachment.php', 'wp-content/plugins/code-snippets/php/export/class-export-attachment.php'),
(472, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/export/class-export.php', 'wp-content/plugins/code-snippets/php/export/class-export.php'),
(473, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/export/class-import.php', 'wp-content/plugins/code-snippets/php/export/class-import.php'),
(474, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/front-end/class-front-end.php', 'wp-content/plugins/code-snippets/php/front-end/class-front-end.php'),
(475, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/front-end/mce-strings.php', 'wp-content/plugins/code-snippets/php/front-end/mce-strings.php'),
(476, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/load.php', 'wp-content/plugins/code-snippets/php/load.php'),
(477, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/rest-api/class-snippets-rest-controller.php', 'wp-content/plugins/code-snippets/php/rest-api/class-snippets-rest-controller.php'),
(478, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/class-setting-field.php', 'wp-content/plugins/code-snippets/php/settings/class-setting-field.php'),
(479, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/editor-preview.php', 'wp-content/plugins/code-snippets/php/settings/editor-preview.php'),
(480, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/settings-fields.php', 'wp-content/plugins/code-snippets/php/settings/settings-fields.php'),
(481, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/settings/settings.php', 'wp-content/plugins/code-snippets/php/settings/settings.php'),
(482, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/snippet-ops.php', 'wp-content/plugins/code-snippets/php/snippet-ops.php'),
(483, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/strings.php', 'wp-content/plugins/code-snippets/php/strings.php'),
(484, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/uninstall.php', 'wp-content/plugins/code-snippets/php/uninstall.php'),
(485, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/import.php', 'wp-content/plugins/code-snippets/php/views/import.php'),
(486, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/manage.php', 'wp-content/plugins/code-snippets/php/views/manage.php'),
(487, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/partials/cloud-search.php', 'wp-content/plugins/code-snippets/php/views/partials/cloud-search.php'),
(488, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/partials/list-table-notices.php', 'wp-content/plugins/code-snippets/php/views/partials/list-table-notices.php'),
(489, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/partials/list-table.php', 'wp-content/plugins/code-snippets/php/views/partials/list-table.php'),
(490, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/php/views/welcome.php', 'wp-content/plugins/code-snippets/php/views/welcome.php'),
(491, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/readme.txt', 'wp-content/plugins/code-snippets/readme.txt'),
(492, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/uninstall.php', 'wp-content/plugins/code-snippets/uninstall.php'),
(493, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/autoload.php', 'wp-content/plugins/code-snippets/vendor/autoload.php'),
(494, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php', 'wp-content/plugins/code-snippets/vendor/composer/ClassLoader.php'),
(495, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/InstalledVersions.php', 'wp-content/plugins/code-snippets/vendor/composer/InstalledVersions.php'),
(496, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/LICENSE', 'wp-content/plugins/code-snippets/vendor/composer/LICENSE'),
(497, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_classmap.php', 'wp-content/plugins/code-snippets/vendor/composer/autoload_classmap.php'),
(498, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_namespaces.php', 'wp-content/plugins/code-snippets/vendor/composer/autoload_namespaces.php'),
(499, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_psr4.php', 'wp-content/plugins/code-snippets/vendor/composer/autoload_psr4.php'),
(500, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_real.php', 'wp-content/plugins/code-snippets/vendor/composer/autoload_real.php'),
(501, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/autoload_static.php', 'wp-content/plugins/code-snippets/vendor/composer/autoload_static.php'),
(502, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installed.json', 'wp-content/plugins/code-snippets/vendor/composer/installed.json'),
(503, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installed.php', 'wp-content/plugins/code-snippets/vendor/composer/installed.php'),
(504, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/LICENSE', 'wp-content/plugins/code-snippets/vendor/composer/installers/LICENSE'),
(505, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/composer.json', 'wp-content/plugins/code-snippets/vendor/composer/installers/composer.json'),
(506, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AglInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AglInstaller.php'),
(507, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AkauntingInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AkauntingInstaller.php'),
(508, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'),
(509, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AsgardInstaller.php'),
(510, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/AttogramInstaller.php'),
(511, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BaseInstaller.php'),
(512, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BitrixInstaller.php'),
(513, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BonefishInstaller.php'),
(514, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BotbleInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/BotbleInstaller.php'),
(515, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CakePHPInstaller.php'),
(516, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ChefInstaller.php'),
(517, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'),
(518, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'),
(519, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CockpitInstaller.php'),
(520, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'),
(521, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Concrete5Installer.php'),
(522, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ConcreteCMSInstaller.php'),
(523, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/CroogoInstaller.php'),
(524, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DecibelInstaller.php'),
(525, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DframeInstaller.php'),
(526, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'),
(527, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DolibarrInstaller.php'),
(528, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/DrupalInstaller.php'),
(529, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ElggInstaller.php'),
(530, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EliasisInstaller.php'),
(531, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'),
(532, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'),
(533, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ForkCMSInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ForkCMSInstaller.php'),
(534, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelInstaller.php'),
(535, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/FuelphpInstaller.php'),
(536, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/GravInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/GravInstaller.php'),
(537, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/HuradInstaller.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(538, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'),
(539, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Installer.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Installer.php'),
(540, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ItopInstaller.php'),
(541, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KanboardInstaller.php'),
(542, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KnownInstaller.php'),
(543, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'),
(544, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/KohanaInstaller.php'),
(545, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'),
(546, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LaravelInstaller.php'),
(547, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'),
(548, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/LithiumInstaller.php'),
(549, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'),
(550, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'),
(551, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MagentoInstaller.php'),
(552, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MajimaInstaller.php'),
(553, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MakoInstaller.php'),
(554, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MantisBTInstaller.php'),
(555, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MatomoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MatomoInstaller.php'),
(556, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MauticInstaller.php'),
(557, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MayaInstaller.php'),
(558, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'),
(559, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'),
(560, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MicroweberInstaller.php'),
(561, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ModxInstaller.php'),
(562, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/MoodleInstaller.php'),
(563, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OctoberInstaller.php'),
(564, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'),
(565, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OsclassInstaller.php'),
(566, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/OxidInstaller.php'),
(567, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PPIInstaller.php'),
(568, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PantheonInstaller.php'),
(569, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhiftyInstaller.php'),
(570, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PhpBBInstaller.php'),
(571, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PiwikInstaller.php'),
(572, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'),
(573, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Plugin.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Plugin.php'),
(574, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PortoInstaller.php'),
(575, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PrestashopInstaller.php'),
(576, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'),
(577, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PuppetInstaller.php'),
(578, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/PxcmsInstaller.php'),
(579, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RadPHPInstaller.php'),
(580, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ReIndexInstaller.php'),
(581, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/Redaxo5Installer.php'),
(582, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RedaxoInstaller.php'),
(583, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'),
(584, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SMFInstaller.php'),
(585, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ShopwareInstaller.php'),
(586, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'),
(587, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'),
(588, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/StarbugInstaller.php'),
(589, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyDESInstaller.php'),
(590, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/SyliusInstaller.php'),
(591, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TaoInstaller.php'),
(592, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'),
(593, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TheliaInstaller.php'),
(594, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/TuskInstaller.php'),
(595, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'),
(596, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VanillaInstaller.php'),
(597, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/VgmcpInstaller.php'),
(598, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WHMCSInstaller.php'),
(599, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WinterInstaller.php'),
(600, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'),
(601, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/WordPressInstaller.php'),
(602, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/YawikInstaller.php'),
(603, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZendInstaller.php'),
(604, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/Composer/Installers/ZikulaInstaller.php'),
(605, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/installers/src/bootstrap.php', 'wp-content/plugins/code-snippets/vendor/composer/installers/src/bootstrap.php'),
(606, '/home/binawebp/omsrislb.my/wp-content/plugins/code-snippets/vendor/composer/platform_check.php', 'wp-content/plugins/code-snippets/vendor/composer/platform_check.php'),
(607, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/admin-menu-items/theme-builder-menu-item.php', 'wp-content/plugins/elementor/app/admin-menu-items/theme-builder-menu-item.php'),
(608, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/app.php', 'wp-content/plugins/elementor/app/app.php'),
(609, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/compatibility/base-adapter.php', 'wp-content/plugins/elementor/app/modules/import-export/compatibility/base-adapter.php'),
(610, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/compatibility/envato.php', 'wp-content/plugins/elementor/app/modules/import-export/compatibility/envato.php'),
(611, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/compatibility/kit-library.php', 'wp-content/plugins/elementor/app/modules/import-export/compatibility/kit-library.php'),
(612, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/module.php', 'wp-content/plugins/elementor/app/modules/import-export/module.php'),
(613, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/processes/export.php', 'wp-content/plugins/elementor/app/modules/import-export/processes/export.php'),
(614, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/processes/import.php', 'wp-content/plugins/elementor/app/modules/import-export/processes/import.php'),
(615, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/processes/revert.php', 'wp-content/plugins/elementor/app/modules/import-export/processes/revert.php'),
(616, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/elementor-content.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/elementor-content.php'),
(617, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/export-runner-base.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/export-runner-base.php'),
(618, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/plugins.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/plugins.php'),
(619, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/site-settings.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/site-settings.php'),
(620, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/taxonomies.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/taxonomies.php'),
(621, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/templates.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/templates.php'),
(622, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/export/wp-content.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/export/wp-content.php'),
(623, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/elementor-content.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/elementor-content.php'),
(624, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/import-runner-base.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/import-runner-base.php'),
(625, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/plugins.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/plugins.php'),
(626, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/site-settings.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/site-settings.php'),
(627, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/taxonomies.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/taxonomies.php'),
(628, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/templates.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/templates.php'),
(629, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/import/wp-content.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/import/wp-content.php'),
(630, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/elementor-content.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/elementor-content.php'),
(631, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/plugins.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/plugins.php'),
(632, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/revert-runner-base.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/revert-runner-base.php'),
(633, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/site-settings.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/site-settings.php'),
(634, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/taxonomies.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/taxonomies.php'),
(635, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/templates.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/templates.php'),
(636, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/revert/wp-content.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/revert/wp-content.php'),
(637, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/runners/runner-interface.php', 'wp-content/plugins/elementor/app/modules/import-export/runners/runner-interface.php'),
(638, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/usage.php', 'wp-content/plugins/elementor/app/modules/import-export/usage.php'),
(639, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/utils.php', 'wp-content/plugins/elementor/app/modules/import-export/utils.php'),
(640, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/import-export/wp-cli.php', 'wp-content/plugins/elementor/app/modules/import-export/wp-cli.php'),
(641, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/connect/kit-library.php', 'wp-content/plugins/elementor/app/modules/kit-library/connect/kit-library.php'),
(642, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/base-controller.php', 'wp-content/plugins/elementor/app/modules/kit-library/data/base-controller.php'),
(643, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/kits/controller.php', 'wp-content/plugins/elementor/app/modules/kit-library/data/kits/controller.php'),
(644, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/download-link.php', 'wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/download-link.php'),
(645, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/favorites.php', 'wp-content/plugins/elementor/app/modules/kit-library/data/kits/endpoints/favorites.php'),
(646, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/repository.php', 'wp-content/plugins/elementor/app/modules/kit-library/data/repository.php'),
(647, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/data/taxonomies/controller.php', 'wp-content/plugins/elementor/app/modules/kit-library/data/taxonomies/controller.php'),
(648, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/kit-library-menu-item.php', 'wp-content/plugins/elementor/app/modules/kit-library/kit-library-menu-item.php'),
(649, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/kit-library/module.php', 'wp-content/plugins/elementor/app/modules/kit-library/module.php'),
(650, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/onboarding/features-usage.php', 'wp-content/plugins/elementor/app/modules/onboarding/features-usage.php'),
(651, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/onboarding/module.php', 'wp-content/plugins/elementor/app/modules/onboarding/module.php'),
(652, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/modules/site-editor/module.php', 'wp-content/plugins/elementor/app/modules/site-editor/module.php'),
(653, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/app/view.php', 'wp-content/plugins/elementor/app/view.php'),
(654, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-bar.css', 'wp-content/plugins/elementor/assets/css/admin-bar.css'),
(655, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-bar.min.css', 'wp-content/plugins/elementor/assets/css/admin-bar.min.css'),
(656, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-rtl.css', 'wp-content/plugins/elementor/assets/css/admin-rtl.css'),
(657, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-rtl.min.css', 'wp-content/plugins/elementor/assets/css/admin-rtl.min.css'),
(658, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.css', 'wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.css'),
(659, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.min.css', 'wp-content/plugins/elementor/assets/css/admin-top-bar-rtl.min.css'),
(660, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar.css', 'wp-content/plugins/elementor/assets/css/admin-top-bar.css'),
(661, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin-top-bar.min.css', 'wp-content/plugins/elementor/assets/css/admin-top-bar.min.css'),
(662, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin.css', 'wp-content/plugins/elementor/assets/css/admin.css'),
(663, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/admin.min.css', 'wp-content/plugins/elementor/assets/css/admin.min.css'),
(664, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base-rtl.css', 'wp-content/plugins/elementor/assets/css/app-base-rtl.css'),
(665, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base-rtl.min.css', 'wp-content/plugins/elementor/assets/css/app-base-rtl.min.css'),
(666, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base.css', 'wp-content/plugins/elementor/assets/css/app-base.css'),
(667, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-base.min.css', 'wp-content/plugins/elementor/assets/css/app-base.min.css'),
(668, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-rtl.css', 'wp-content/plugins/elementor/assets/css/app-rtl.css'),
(669, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app-rtl.min.css', 'wp-content/plugins/elementor/assets/css/app-rtl.min.css'),
(670, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app.css', 'wp-content/plugins/elementor/assets/css/app.css'),
(671, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/app.min.css', 'wp-content/plugins/elementor/assets/css/app.min.css'),
(672, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common-rtl.css', 'wp-content/plugins/elementor/assets/css/common-rtl.css'),
(673, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common-rtl.min.css', 'wp-content/plugins/elementor/assets/css/common-rtl.min.css'),
(674, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common.css', 'wp-content/plugins/elementor/assets/css/common.css'),
(675, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/common.min.css', 'wp-content/plugins/elementor/assets/css/common.min.css'),
(676, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.css', 'wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.css'),
(677, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css', 'wp-content/plugins/elementor/assets/css/conditionals/apple-webkit.min.css'),
(678, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/dialog.css', 'wp-content/plugins/elementor/assets/css/conditionals/dialog.css'),
(679, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/dialog.min.css', 'wp-content/plugins/elementor/assets/css/conditionals/dialog.min.css'),
(680, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.css', 'wp-content/plugins/elementor/assets/css/conditionals/e-swiper.css'),
(681, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css', 'wp-content/plugins/elementor/assets/css/conditionals/e-swiper.min.css'),
(682, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/lightbox.css', 'wp-content/plugins/elementor/assets/css/conditionals/lightbox.css'),
(683, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/lightbox.min.css', 'wp-content/plugins/elementor/assets/css/conditionals/lightbox.min.css'),
(684, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/shapes.css', 'wp-content/plugins/elementor/assets/css/conditionals/shapes.css'),
(685, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css', 'wp-content/plugins/elementor/assets/css/conditionals/shapes.min.css'),
(686, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/div-block.css', 'wp-content/plugins/elementor/assets/css/div-block.css'),
(687, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/div-block.min.css', 'wp-content/plugins/elementor/assets/css/div-block.min.css'),
(688, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview-rtl.css', 'wp-content/plugins/elementor/assets/css/editor-preview-rtl.css'),
(689, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview-rtl.min.css', 'wp-content/plugins/elementor/assets/css/editor-preview-rtl.min.css'),
(690, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview.css', 'wp-content/plugins/elementor/assets/css/editor-preview.css'),
(691, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-preview.min.css', 'wp-content/plugins/elementor/assets/css/editor-preview.min.css'),
(692, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-rtl.css', 'wp-content/plugins/elementor/assets/css/editor-rtl.css'),
(693, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-rtl.min.css', 'wp-content/plugins/elementor/assets/css/editor-rtl.min.css'),
(694, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.css', 'wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.css'),
(695, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.min.css', 'wp-content/plugins/elementor/assets/css/editor-v2-app-bar-overrides.min.css'),
(696, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor.css', 'wp-content/plugins/elementor/assets/css/editor.css'),
(697, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/editor.min.css', 'wp-content/plugins/elementor/assets/css/editor.min.css'),
(698, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend-rtl.css', 'wp-content/plugins/elementor/assets/css/frontend-rtl.css'),
(699, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend-rtl.min.css', 'wp-content/plugins/elementor/assets/css/frontend-rtl.min.css'),
(700, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend.css', 'wp-content/plugins/elementor/assets/css/frontend.css'),
(701, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/frontend.min.css', 'wp-content/plugins/elementor/assets/css/frontend.min.css'),
(702, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/editor.css', 'wp-content/plugins/elementor/assets/css/modules/ai/editor.css'),
(703, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/editor.min.css', 'wp-content/plugins/elementor/assets/css/modules/ai/editor.min.css'),
(704, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.css', 'wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.css'),
(705, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.min.css', 'wp-content/plugins/elementor/assets/css/modules/ai/layout-preview.min.css'),
(706, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/announcements/announcements.css', 'wp-content/plugins/elementor/assets/css/modules/announcements/announcements.css'),
(707, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/announcements/announcements.min.css', 'wp-content/plugins/elementor/assets/css/modules/announcements/announcements.min.css'),
(708, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/apps/admin.css', 'wp-content/plugins/elementor/assets/css/modules/apps/admin.css'),
(709, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/apps/admin.min.css', 'wp-content/plugins/elementor/assets/css/modules/apps/admin.min.css'),
(710, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/container-converter/editor.css', 'wp-content/plugins/elementor/assets/css/modules/container-converter/editor.css'),
(711, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/container-converter/editor.min.css', 'wp-content/plugins/elementor/assets/css/modules/container-converter/editor.min.css'),
(712, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/notes/editor.css', 'wp-content/plugins/elementor/assets/css/modules/notes/editor.css'),
(713, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/notes/editor.min.css', 'wp-content/plugins/elementor/assets/css/modules/notes/editor.min.css'),
(714, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/styleguide/editor.css', 'wp-content/plugins/elementor/assets/css/modules/styleguide/editor.css'),
(715, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/modules/styleguide/editor.min.css', 'wp-content/plugins/elementor/assets/css/modules/styleguide/editor.min.css'),
(716, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/responsive-bar.css', 'wp-content/plugins/elementor/assets/css/responsive-bar.css'),
(717, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/responsive-bar.min.css', 'wp-content/plugins/elementor/assets/css/responsive-bar.min.css'),
(718, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/apple-webkit.css', 'wp-content/plugins/elementor/assets/css/templates/apple-webkit.css'),
(719, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/apple-webkit.min.css', 'wp-content/plugins/elementor/assets/css/templates/apple-webkit.min.css'),
(720, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend-rtl.css', 'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.css'),
(721, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/frontend-rtl.min.css'),
(722, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend.css', 'wp-content/plugins/elementor/assets/css/templates/frontend.css'),
(723, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/frontend.min.css', 'wp-content/plugins/elementor/assets/css/templates/frontend.min.css'),
(724, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/lightbox.css', 'wp-content/plugins/elementor/assets/css/templates/lightbox.css'),
(725, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/lightbox.min.css', 'wp-content/plugins/elementor/assets/css/templates/lightbox.min.css'),
(726, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-accordion-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-accordion-rtl.min.css'),
(727, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-accordion.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-accordion.min.css'),
(728, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-alert-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-alert-rtl.min.css'),
(729, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-alert.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-alert.min.css'),
(730, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base-rtl.min.css'),
(731, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-base.min.css'),
(732, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10-rtl.min.css'),
(733, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-10.min.css'),
(734, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7-rtl.min.css'),
(735, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-7.min.css'),
(736, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9-rtl.min.css'),
(737, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-contact-buttons-var-9.min.css'),
(738, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base-rtl.min.css'),
(739, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-base.min.css'),
(740, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3-rtl.min.css'),
(741, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-bars-var-3.min.css'),
(742, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons-rtl.min.css'),
(743, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-floating-buttons.min.css'),
(744, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-box-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-box-rtl.min.css'),
(745, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-box.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-box.min.css'),
(746, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-list-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-list-rtl.min.css'),
(747, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-icon-list.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-icon-list.min.css'),
(748, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-box-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-image-box-rtl.min.css'),
(749, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-box.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-image-box.min.css'),
(750, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-gallery-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-image-gallery-rtl.min.css'),
(751, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-image-gallery.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-image-gallery.min.css'),
(752, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base-rtl.min.css'),
(753, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-base.min.css'),
(754, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio-rtl.min.css'),
(755, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-link-in-bio.min.css'),
(756, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs-rtl.min.css'),
(757, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-nested-tabs.min.css'),
(758, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-progress-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-progress-rtl.min.css'),
(759, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-progress.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-progress.min.css'),
(760, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-star-rating-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-star-rating-rtl.min.css'),
(761, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-star-rating.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-star-rating.min.css'),
(762, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-tabs-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-tabs-rtl.min.css'),
(763, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-tabs.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-tabs.min.css'),
(764, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-toggle-rtl.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-toggle-rtl.min.css'),
(765, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/templates/widget-toggle.min.css', 'wp-content/plugins/elementor/assets/css/templates/widget-toggle.min.css'),
(766, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-dark.css', 'wp-content/plugins/elementor/assets/css/theme-dark.css'),
(767, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-dark.min.css', 'wp-content/plugins/elementor/assets/css/theme-dark.min.css'),
(768, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-light.css', 'wp-content/plugins/elementor/assets/css/theme-light.css'),
(769, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/theme-light.min.css', 'wp-content/plugins/elementor/assets/css/theme-light.min.css'),
(770, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-accordion-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-accordion-rtl.min.css'),
(771, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-accordion.min.css', 'wp-content/plugins/elementor/assets/css/widget-accordion.min.css'),
(772, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-alert-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-alert-rtl.min.css'),
(773, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-alert.min.css', 'wp-content/plugins/elementor/assets/css/widget-alert.min.css'),
(774, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-base-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-base-rtl.min.css'),
(775, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-base.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-base.min.css'),
(776, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1-rtl.min.css'),
(777, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-1.min.css'),
(778, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10-rtl.min.css'),
(779, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-10.min.css'),
(780, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3-rtl.min.css'),
(781, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-3.min.css'),
(782, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4-rtl.min.css'),
(783, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-4.min.css'),
(784, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6-rtl.min.css'),
(785, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-6.min.css'),
(786, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7-rtl.min.css'),
(787, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-7.min.css'),
(788, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8-rtl.min.css'),
(789, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-8.min.css'),
(790, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9-rtl.min.css'),
(791, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-var-9.min.css'),
(792, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars-rtl.min.css'),
(793, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars.min.css', 'wp-content/plugins/elementor/assets/css/widget-contact-buttons-vars.min.css'),
(794, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-counter-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-counter-rtl.min.css'),
(795, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-counter.min.css', 'wp-content/plugins/elementor/assets/css/widget-counter.min.css'),
(796, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-divider-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-divider-rtl.min.css'),
(797, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-divider.min.css', 'wp-content/plugins/elementor/assets/css/widget-divider.min.css'),
(798, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-base-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-base-rtl.min.css'),
(799, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-base.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-base.min.css'),
(800, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2-rtl.min.css'),
(801, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-2.min.css'),
(802, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3-rtl.min.css');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(803, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-var-3.min.css'),
(804, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-vars-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-vars-rtl.min.css'),
(805, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-bars-vars.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-bars-vars.min.css'),
(806, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-buttons-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-buttons-rtl.min.css'),
(807, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-floating-buttons.min.css', 'wp-content/plugins/elementor/assets/css/widget-floating-buttons.min.css'),
(808, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-google_maps-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-google_maps-rtl.min.css'),
(809, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-google_maps.min.css', 'wp-content/plugins/elementor/assets/css/widget-google_maps.min.css'),
(810, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-heading-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-heading-rtl.min.css'),
(811, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-heading.min.css', 'wp-content/plugins/elementor/assets/css/widget-heading.min.css'),
(812, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-box-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-icon-box-rtl.min.css'),
(813, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css', 'wp-content/plugins/elementor/assets/css/widget-icon-box.min.css'),
(814, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-list-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-icon-list-rtl.min.css'),
(815, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css', 'wp-content/plugins/elementor/assets/css/widget-icon-list.min.css'),
(816, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-box-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-image-box-rtl.min.css'),
(817, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-box.min.css', 'wp-content/plugins/elementor/assets/css/widget-image-box.min.css'),
(818, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-carousel-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-image-carousel-rtl.min.css'),
(819, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css', 'wp-content/plugins/elementor/assets/css/widget-image-carousel.min.css'),
(820, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-gallery-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-image-gallery-rtl.min.css'),
(821, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-gallery.min.css', 'wp-content/plugins/elementor/assets/css/widget-image-gallery.min.css'),
(822, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-image-rtl.min.css'),
(823, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-image.min.css', 'wp-content/plugins/elementor/assets/css/widget-image.min.css'),
(824, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-base-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-base-rtl.min.css'),
(825, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-base.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-base.min.css'),
(826, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-rtl.min.css'),
(827, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2-rtl.min.css'),
(828, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-2.min.css'),
(829, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3-rtl.min.css'),
(830, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-3.min.css'),
(831, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4-rtl.min.css'),
(832, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-4.min.css'),
(833, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5-rtl.min.css'),
(834, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-5.min.css'),
(835, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7-rtl.min.css'),
(836, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-var-7.min.css'),
(837, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars-rtl.min.css'),
(838, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio-vars.min.css'),
(839, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-link-in-bio.min.css', 'wp-content/plugins/elementor/assets/css/widget-link-in-bio.min.css'),
(840, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-menu-anchor-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-menu-anchor-rtl.min.css'),
(841, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css', 'wp-content/plugins/elementor/assets/css/widget-menu-anchor.min.css'),
(842, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-accordion-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-nested-accordion-rtl.min.css'),
(843, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-accordion.min.css', 'wp-content/plugins/elementor/assets/css/widget-nested-accordion.min.css'),
(844, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-tabs-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-nested-tabs-rtl.min.css'),
(845, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-nested-tabs.min.css', 'wp-content/plugins/elementor/assets/css/widget-nested-tabs.min.css'),
(846, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-progress-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-progress-rtl.min.css'),
(847, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-progress.min.css', 'wp-content/plugins/elementor/assets/css/widget-progress.min.css'),
(848, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-rating-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-rating-rtl.min.css'),
(849, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-rating.min.css', 'wp-content/plugins/elementor/assets/css/widget-rating.min.css'),
(850, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-social-icons-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-social-icons-rtl.min.css'),
(851, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-social-icons.min.css', 'wp-content/plugins/elementor/assets/css/widget-social-icons.min.css'),
(852, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-spacer-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-spacer-rtl.min.css'),
(853, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-spacer.min.css', 'wp-content/plugins/elementor/assets/css/widget-spacer.min.css'),
(854, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-star-rating-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-star-rating-rtl.min.css'),
(855, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-star-rating.min.css', 'wp-content/plugins/elementor/assets/css/widget-star-rating.min.css'),
(856, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-tabs-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-tabs-rtl.min.css'),
(857, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-tabs.min.css', 'wp-content/plugins/elementor/assets/css/widget-tabs.min.css'),
(858, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-testimonial-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-testimonial-rtl.min.css'),
(859, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-testimonial.min.css', 'wp-content/plugins/elementor/assets/css/widget-testimonial.min.css'),
(860, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-editor-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-text-editor-rtl.min.css'),
(861, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-editor.min.css', 'wp-content/plugins/elementor/assets/css/widget-text-editor.min.css'),
(862, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-path-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-text-path-rtl.min.css'),
(863, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-text-path.min.css', 'wp-content/plugins/elementor/assets/css/widget-text-path.min.css'),
(864, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-toggle-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-toggle-rtl.min.css'),
(865, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-toggle.min.css', 'wp-content/plugins/elementor/assets/css/widget-toggle.min.css'),
(866, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-video-rtl.min.css', 'wp-content/plugins/elementor/assets/css/widget-video-rtl.min.css'),
(867, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/css/widget-video.min.css', 'wp-content/plugins/elementor/assets/css/widget-video.min.css'),
(868, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/data/responsive-widgets.json', 'wp-content/plugins/elementor/assets/data/responsive-widgets.json'),
(869, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/a-default-svg.svg', 'wp-content/plugins/elementor/assets/images/a-default-svg.svg'),
(870, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/announcement.png', 'wp-content/plugins/elementor/assets/images/announcement.png'),
(871, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/ai/product-image-unification-example.gif', 'wp-content/plugins/elementor/assets/images/app/ai/product-image-unification-example.gif'),
(872, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Canvas.svg', 'wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Canvas.svg'),
(873, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Preview.jpg', 'wp-content/plugins/elementor/assets/images/app/onboarding/Blank_Preview.jpg'),
(874, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Account.svg', 'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Account.svg'),
(875, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Hello.svg', 'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Hello.svg'),
(876, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Setup.svg', 'wp-content/plugins/elementor/assets/images/app/onboarding/Illustration_Setup.svg'),
(877, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/onboarding/Library.svg', 'wp-content/plugins/elementor/assets/images/app/onboarding/Library.svg'),
(878, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/archive.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/archive.svg'),
(879, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/error-404.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/error-404.svg'),
(880, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/footer.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/footer.svg'),
(881, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/header.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/header.svg'),
(882, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/product.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/product.svg'),
(883, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/products.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/products.svg'),
(884, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/search-results.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/search-results.svg'),
(885, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/single-page.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/single-page.svg'),
(886, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/app/site-editor/single-post.svg', 'wp-content/plugins/elementor/assets/images/app/site-editor/single-post.svg'),
(887, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/background-placeholder.png', 'wp-content/plugins/elementor/assets/images/background-placeholder.png'),
(888, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/blur.png', 'wp-content/plugins/elementor/assets/images/blur.png'),
(889, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/containers-announcement.png', 'wp-content/plugins/elementor/assets/images/containers-announcement.png'),
(890, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/contrast.png', 'wp-content/plugins/elementor/assets/images/contrast.png'),
(891, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/eyedropper.svg', 'wp-content/plugins/elementor/assets/images/eyedropper.svg'),
(892, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/go-pro-wp-dashboard.svg', 'wp-content/plugins/elementor/assets/images/go-pro-wp-dashboard.svg'),
(893, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/go-pro.svg', 'wp-content/plugins/elementor/assets/images/go-pro.svg'),
(894, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/information.svg', 'wp-content/plugins/elementor/assets/images/information.svg'),
(895, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/kit-is-live.svg', 'wp-content/plugins/elementor/assets/images/kit-is-live.svg'),
(896, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/left-1.png', 'wp-content/plugins/elementor/assets/images/library-connect/left-1.png'),
(897, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/left-2.png', 'wp-content/plugins/elementor/assets/images/library-connect/left-2.png'),
(898, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/right-1.png', 'wp-content/plugins/elementor/assets/images/library-connect/right-1.png'),
(899, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/library-connect/right-2.png', 'wp-content/plugins/elementor/assets/images/library-connect/right-2.png'),
(900, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/logo-icon.png', 'wp-content/plugins/elementor/assets/images/logo-icon.png'),
(901, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/logo-panel.svg', 'wp-content/plugins/elementor/assets/images/logo-panel.svg'),
(902, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/logo-platform.svg', 'wp-content/plugins/elementor/assets/images/logo-platform.svg'),
(903, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/no-search-results-cloud.svg', 'wp-content/plugins/elementor/assets/images/no-search-results-cloud.svg'),
(904, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/no-search-results.svg', 'wp-content/plugins/elementor/assets/images/no-search-results.svg'),
(905, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/placeholder-v4.png', 'wp-content/plugins/elementor/assets/images/placeholder-v4.png'),
(906, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/placeholder.png', 'wp-content/plugins/elementor/assets/images/placeholder.png'),
(907, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/images/unlock-sticky.svg', 'wp-content/plugins/elementor/assets/images/unlock-sticky.svg'),
(908, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/025905cd015671d0a830.bundle.min.js', 'wp-content/plugins/elementor/assets/js/025905cd015671d0a830.bundle.min.js'),
(909, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/056b8f3bbbcabf026cd1.bundle.js', 'wp-content/plugins/elementor/assets/js/056b8f3bbbcabf026cd1.bundle.js'),
(910, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/0d1a75a41cae2a76432a.bundle.js', 'wp-content/plugins/elementor/assets/js/0d1a75a41cae2a76432a.bundle.js'),
(911, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/0f7962315cd2e100f80e.bundle.min.js', 'wp-content/plugins/elementor/assets/js/0f7962315cd2e100f80e.bundle.min.js'),
(912, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/2e387c4154cbf63565b2.bundle.min.js', 'wp-content/plugins/elementor/assets/js/2e387c4154cbf63565b2.bundle.min.js'),
(913, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/3ac06e8b9c2e8f04c57d.bundle.min.js', 'wp-content/plugins/elementor/assets/js/3ac06e8b9c2e8f04c57d.bundle.min.js'),
(914, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/4573680c5d8b9b2d9f17.bundle.min.js', 'wp-content/plugins/elementor/assets/js/4573680c5d8b9b2d9f17.bundle.min.js'),
(915, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/513d3f05d575dabcdc35.bundle.js', 'wp-content/plugins/elementor/assets/js/513d3f05d575dabcdc35.bundle.js'),
(916, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/56a155a8adcef506ce8a.bundle.js', 'wp-content/plugins/elementor/assets/js/56a155a8adcef506ce8a.bundle.js'),
(917, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/5b6ef966b71e5cf670d8.bundle.min.js', 'wp-content/plugins/elementor/assets/js/5b6ef966b71e5cf670d8.bundle.min.js'),
(918, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/947434f8f98ed29acc17.bundle.js', 'wp-content/plugins/elementor/assets/js/947434f8f98ed29acc17.bundle.js'),
(919, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/accordion.36aa4c8c4eba17bc8e03.bundle.min.js', 'wp-content/plugins/elementor/assets/js/accordion.36aa4c8c4eba17bc8e03.bundle.min.js'),
(920, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/accordion.7b5b5744bdd225280eca.bundle.js', 'wp-content/plugins/elementor/assets/js/accordion.7b5b5744bdd225280eca.bundle.js'),
(921, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/adbbe9b5d6b520e98e4c.bundle.js', 'wp-content/plugins/elementor/assets/js/adbbe9b5d6b520e98e4c.bundle.js'),
(922, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-feedback.js', 'wp-content/plugins/elementor/assets/js/admin-feedback.js'),
(923, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-feedback.min.js', 'wp-content/plugins/elementor/assets/js/admin-feedback.min.js'),
(924, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-modules.js', 'wp-content/plugins/elementor/assets/js/admin-modules.js'),
(925, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-modules.min.js', 'wp-content/plugins/elementor/assets/js/admin-modules.min.js'),
(926, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-modules.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/admin-modules.min.js.LICENSE.txt'),
(927, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-notifications.js', 'wp-content/plugins/elementor/assets/js/admin-notifications.js'),
(928, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-notifications.min.js', 'wp-content/plugins/elementor/assets/js/admin-notifications.min.js'),
(929, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-notifications.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/admin-notifications.min.js.LICENSE.txt'),
(930, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-top-bar.js', 'wp-content/plugins/elementor/assets/js/admin-top-bar.js'),
(931, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin-top-bar.min.js', 'wp-content/plugins/elementor/assets/js/admin-top-bar.min.js'),
(932, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin.js', 'wp-content/plugins/elementor/assets/js/admin.js'),
(933, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin.min.js', 'wp-content/plugins/elementor/assets/js/admin.min.js'),
(934, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/admin.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/admin.min.js.LICENSE.txt'),
(935, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-admin.js', 'wp-content/plugins/elementor/assets/js/ai-admin.js'),
(936, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-admin.min.js', 'wp-content/plugins/elementor/assets/js/ai-admin.min.js'),
(937, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-admin.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/ai-admin.min.js.LICENSE.txt'),
(938, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-gutenberg.js', 'wp-content/plugins/elementor/assets/js/ai-gutenberg.js'),
(939, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js', 'wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js'),
(940, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/ai-gutenberg.min.js.LICENSE.txt'),
(941, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-layout.js', 'wp-content/plugins/elementor/assets/js/ai-layout.js'),
(942, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-layout.min.js', 'wp-content/plugins/elementor/assets/js/ai-layout.min.js'),
(943, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-layout.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/ai-layout.min.js.LICENSE.txt'),
(944, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-media-library.js', 'wp-content/plugins/elementor/assets/js/ai-media-library.js'),
(945, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-media-library.min.js', 'wp-content/plugins/elementor/assets/js/ai-media-library.min.js'),
(946, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-media-library.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/ai-media-library.min.js.LICENSE.txt'),
(947, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-unify-product-images.js', 'wp-content/plugins/elementor/assets/js/ai-unify-product-images.js'),
(948, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js', 'wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js'),
(949, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/ai-unify-product-images.min.js.LICENSE.txt'),
(950, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai.js', 'wp-content/plugins/elementor/assets/js/ai.js'),
(951, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai.min.js', 'wp-content/plugins/elementor/assets/js/ai.min.js'),
(952, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/ai.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/ai.min.js.LICENSE.txt'),
(953, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/alert.42cc1d522ef5c60bf874.bundle.min.js', 'wp-content/plugins/elementor/assets/js/alert.42cc1d522ef5c60bf874.bundle.min.js'),
(954, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/alert.b696182ec6f18a35bc69.bundle.js', 'wp-content/plugins/elementor/assets/js/alert.b696182ec6f18a35bc69.bundle.js'),
(955, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/announcements-app.js', 'wp-content/plugins/elementor/assets/js/announcements-app.js'),
(956, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/announcements-app.min.js', 'wp-content/plugins/elementor/assets/js/announcements-app.min.js'),
(957, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/announcements-app.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/announcements-app.min.js.LICENSE.txt'),
(958, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-loader.js', 'wp-content/plugins/elementor/assets/js/app-loader.js'),
(959, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-loader.min.js', 'wp-content/plugins/elementor/assets/js/app-loader.min.js'),
(960, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-packages.js', 'wp-content/plugins/elementor/assets/js/app-packages.js'),
(961, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-packages.min.js', 'wp-content/plugins/elementor/assets/js/app-packages.min.js'),
(962, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app-packages.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/app-packages.min.js.LICENSE.txt'),
(963, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app.js', 'wp-content/plugins/elementor/assets/js/app.js'),
(964, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app.min.js', 'wp-content/plugins/elementor/assets/js/app.min.js'),
(965, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/app.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/app.min.js.LICENSE.txt'),
(966, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/atomic-widgets-editor.js', 'wp-content/plugins/elementor/assets/js/atomic-widgets-editor.js'),
(967, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/atomic-widgets-editor.min.js', 'wp-content/plugins/elementor/assets/js/atomic-widgets-editor.min.js'),
(968, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/beta-tester.js', 'wp-content/plugins/elementor/assets/js/beta-tester.js'),
(969, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/beta-tester.min.js', 'wp-content/plugins/elementor/assets/js/beta-tester.min.js'),
(970, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/c4dcba54ff9219690f00.bundle.min.js', 'wp-content/plugins/elementor/assets/js/c4dcba54ff9219690f00.bundle.min.js'),
(971, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/cf70912a0f34653ad242.bundle.js', 'wp-content/plugins/elementor/assets/js/cf70912a0f34653ad242.bundle.js'),
(972, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/checklist.js', 'wp-content/plugins/elementor/assets/js/checklist.js'),
(973, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/checklist.min.js', 'wp-content/plugins/elementor/assets/js/checklist.min.js'),
(974, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/checklist.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/checklist.min.js.LICENSE.txt'),
(975, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common-modules.js', 'wp-content/plugins/elementor/assets/js/common-modules.js'),
(976, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common-modules.min.js', 'wp-content/plugins/elementor/assets/js/common-modules.min.js'),
(977, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common.js', 'wp-content/plugins/elementor/assets/js/common.js'),
(978, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common.min.js', 'wp-content/plugins/elementor/assets/js/common.min.js'),
(979, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/common.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/common.min.js.LICENSE.txt'),
(980, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/contact-buttons.7c9983ed0d4964b951c2.bundle.min.js', 'wp-content/plugins/elementor/assets/js/contact-buttons.7c9983ed0d4964b951c2.bundle.min.js'),
(981, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/contact-buttons.c21325756a91b795f8e4.bundle.js', 'wp-content/plugins/elementor/assets/js/contact-buttons.c21325756a91b795f8e4.bundle.js'),
(982, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container-converter.js', 'wp-content/plugins/elementor/assets/js/container-converter.js'),
(983, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container-converter.min.js', 'wp-content/plugins/elementor/assets/js/container-converter.min.js'),
(984, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container.0754914e4611dc659a50.bundle.min.js', 'wp-content/plugins/elementor/assets/js/container.0754914e4611dc659a50.bundle.min.js'),
(985, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/container.cb1e834c5aad68e9c908.bundle.js', 'wp-content/plugins/elementor/assets/js/container.cb1e834c5aad68e9c908.bundle.js'),
(986, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/counter.12335f45aaa79d244f24.bundle.min.js', 'wp-content/plugins/elementor/assets/js/counter.12335f45aaa79d244f24.bundle.min.js'),
(987, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/counter.f359dee9199f5aad06c6.bundle.js', 'wp-content/plugins/elementor/assets/js/counter.f359dee9199f5aad06c6.bundle.js'),
(988, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/dev-tools.js', 'wp-content/plugins/elementor/assets/js/dev-tools.js'),
(989, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/dev-tools.min.js', 'wp-content/plugins/elementor/assets/js/dev-tools.min.js'),
(990, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-home-screen.js', 'wp-content/plugins/elementor/assets/js/e-home-screen.js'),
(991, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-home-screen.min.js', 'wp-content/plugins/elementor/assets/js/e-home-screen.min.js'),
(992, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-react-promotions.js', 'wp-content/plugins/elementor/assets/js/e-react-promotions.js'),
(993, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-react-promotions.min.js', 'wp-content/plugins/elementor/assets/js/e-react-promotions.min.js'),
(994, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-wc-product-editor.js', 'wp-content/plugins/elementor/assets/js/e-wc-product-editor.js'),
(995, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js', 'wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js'),
(996, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/e-wc-product-editor.min.js.LICENSE.txt'),
(997, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/e5d6feb1b1d6cf52126f.bundle.js', 'wp-content/plugins/elementor/assets/js/e5d6feb1b1d6cf52126f.bundle.js'),
(998, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-document.js', 'wp-content/plugins/elementor/assets/js/editor-document.js'),
(999, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-document.min.js', 'wp-content/plugins/elementor/assets/js/editor-document.min.js'),
(1000, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-environment-v2.js', 'wp-content/plugins/elementor/assets/js/editor-environment-v2.js'),
(1001, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-environment-v2.min.js', 'wp-content/plugins/elementor/assets/js/editor-environment-v2.min.js'),
(1002, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v1.js', 'wp-content/plugins/elementor/assets/js/editor-loader-v1.js'),
(1003, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v1.min.js', 'wp-content/plugins/elementor/assets/js/editor-loader-v1.min.js'),
(1004, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v2.js', 'wp-content/plugins/elementor/assets/js/editor-loader-v2.js'),
(1005, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-loader-v2.min.js', 'wp-content/plugins/elementor/assets/js/editor-loader-v2.min.js'),
(1006, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-modules.js', 'wp-content/plugins/elementor/assets/js/editor-modules.js'),
(1007, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-modules.min.js', 'wp-content/plugins/elementor/assets/js/editor-modules.min.js'),
(1008, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-modules.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/editor-modules.min.js.LICENSE.txt'),
(1009, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-notifications.js', 'wp-content/plugins/elementor/assets/js/editor-notifications.js'),
(1010, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-notifications.min.js', 'wp-content/plugins/elementor/assets/js/editor-notifications.min.js'),
(1011, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor-notifications.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/editor-notifications.min.js.LICENSE.txt'),
(1012, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor.js', 'wp-content/plugins/elementor/assets/js/editor.js'),
(1013, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor.min.js', 'wp-content/plugins/elementor/assets/js/editor.min.js'),
(1014, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/editor.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/editor.min.js.LICENSE.txt'),
(1015, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/element-manager-admin.js', 'wp-content/plugins/elementor/assets/js/element-manager-admin.js'),
(1016, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/element-manager-admin.min.js', 'wp-content/plugins/elementor/assets/js/element-manager-admin.min.js'),
(1017, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/element-manager-admin.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/element-manager-admin.min.js.LICENSE.txt'),
(1018, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/elementor-admin-bar.js', 'wp-content/plugins/elementor/assets/js/elementor-admin-bar.js'),
(1019, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js', 'wp-content/plugins/elementor/assets/js/elementor-admin-bar.min.js'),
(1020, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-bars.7efeeb8b098e55999ff1.bundle.js', 'wp-content/plugins/elementor/assets/js/floating-bars.7efeeb8b098e55999ff1.bundle.js'),
(1021, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-bars.c1e9838906b386709cd4.bundle.min.js', 'wp-content/plugins/elementor/assets/js/floating-bars.c1e9838906b386709cd4.bundle.min.js'),
(1022, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-elements-modal.js', 'wp-content/plugins/elementor/assets/js/floating-elements-modal.js'),
(1023, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/floating-elements-modal.min.js', 'wp-content/plugins/elementor/assets/js/floating-elements-modal.min.js'),
(1024, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend-modules.js', 'wp-content/plugins/elementor/assets/js/frontend-modules.js'),
(1025, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend-modules.min.js', 'wp-content/plugins/elementor/assets/js/frontend-modules.min.js'),
(1026, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend.js', 'wp-content/plugins/elementor/assets/js/frontend.js'),
(1027, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/frontend.min.js', 'wp-content/plugins/elementor/assets/js/frontend.min.js'),
(1028, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/gutenberg.js', 'wp-content/plugins/elementor/assets/js/gutenberg.js'),
(1029, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/gutenberg.min.js', 'wp-content/plugins/elementor/assets/js/gutenberg.min.js'),
(1030, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/image-carousel.1a3e0c6222562304eed5.bundle.js', 'wp-content/plugins/elementor/assets/js/image-carousel.1a3e0c6222562304eed5.bundle.js'),
(1031, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/image-carousel.6167d20b95b33386757b.bundle.min.js', 'wp-content/plugins/elementor/assets/js/image-carousel.6167d20b95b33386757b.bundle.min.js'),
(1032, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/import-export-admin.js', 'wp-content/plugins/elementor/assets/js/import-export-admin.js'),
(1033, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/import-export-admin.min.js', 'wp-content/plugins/elementor/assets/js/import-export-admin.min.js'),
(1034, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.js', 'wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.js'),
(1035, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js', 'wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js'),
(1036, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/kit-elements-defaults-editor.min.js.LICENSE.txt'),
(1037, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-library.09cb71ec3fbb128f4e25.bundle.min.js', 'wp-content/plugins/elementor/assets/js/kit-library.09cb71ec3fbb128f4e25.bundle.min.js'),
(1038, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/kit-library.b0f0ab89c95fe1f6fde3.bundle.js', 'wp-content/plugins/elementor/assets/js/kit-library.b0f0ab89c95fe1f6fde3.bundle.js'),
(1039, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/lightbox.74688eb10c7852662847.bundle.js', 'wp-content/plugins/elementor/assets/js/lightbox.74688eb10c7852662847.bundle.js'),
(1040, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/lightbox.f3fa607b705962362647.bundle.min.js', 'wp-content/plugins/elementor/assets/js/lightbox.f3fa607b705962362647.bundle.min.js'),
(1041, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/media-hints.js', 'wp-content/plugins/elementor/assets/js/media-hints.js'),
(1042, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/media-hints.min.js', 'wp-content/plugins/elementor/assets/js/media-hints.min.js'),
(1043, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.a0f28ea648b29da812a1.bundle.js', 'wp-content/plugins/elementor/assets/js/nested-accordion.a0f28ea648b29da812a1.bundle.js'),
(1044, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.c546968f7aebebc356f2.bundle.min.js', 'wp-content/plugins/elementor/assets/js/nested-accordion.c546968f7aebebc356f2.bundle.min.js'),
(1045, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.js', 'wp-content/plugins/elementor/assets/js/nested-accordion.js'),
(1046, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.min.js', 'wp-content/plugins/elementor/assets/js/nested-accordion.min.js'),
(1047, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-accordion.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/nested-accordion.min.js.LICENSE.txt'),
(1048, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-elements.js', 'wp-content/plugins/elementor/assets/js/nested-elements.js'),
(1049, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-elements.min.js', 'wp-content/plugins/elementor/assets/js/nested-elements.min.js'),
(1050, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.1fde581754604147f6d7.bundle.min.js', 'wp-content/plugins/elementor/assets/js/nested-tabs.1fde581754604147f6d7.bundle.min.js'),
(1051, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.213892f3e7a826d32481.bundle.js', 'wp-content/plugins/elementor/assets/js/nested-tabs.213892f3e7a826d32481.bundle.js'),
(1052, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.js', 'wp-content/plugins/elementor/assets/js/nested-tabs.js'),
(1053, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.min.js', 'wp-content/plugins/elementor/assets/js/nested-tabs.min.js'),
(1054, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-tabs.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/nested-tabs.min.js.LICENSE.txt'),
(1055, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.967db65f6ba460c1f2e9.bundle.js', 'wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.967db65f6ba460c1f2e9.bundle.js'),
(1056, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.fc9d01c2cd0ef46d20fd.bundle.min.js', 'wp-content/plugins/elementor/assets/js/nested-title-keyboard-handler.fc9d01c2cd0ef46d20fd.bundle.min.js'),
(1057, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/new-template.js', 'wp-content/plugins/elementor/assets/js/new-template.js'),
(1058, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/new-template.min.js', 'wp-content/plugins/elementor/assets/js/new-template.min.js'),
(1059, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/notes.js', 'wp-content/plugins/elementor/assets/js/notes.js'),
(1060, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/notes.min.js', 'wp-content/plugins/elementor/assets/js/notes.min.js'),
(1061, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/onboarding.120a44527e5a7209a8e4.bundle.js', 'wp-content/plugins/elementor/assets/js/onboarding.120a44527e5a7209a8e4.bundle.js'),
(1062, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/onboarding.cb1850dab52d5cd9ce5b.bundle.min.js', 'wp-content/plugins/elementor/assets/js/onboarding.cb1850dab52d5cd9ce5b.bundle.min.js'),
(1063, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.asset.php'),
(1064, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.js', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.js'),
(1065, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.js.LICENSE.txt'),
(1066, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.min.js'),
(1067, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor/editor.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor/editor.strings.js'),
(1068, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.asset.php'),
(1069, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js'),
(1070, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.js.LICENSE.txt'),
(1071, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.min.js'),
(1072, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-app-bar/editor-app-bar.strings.js'),
(1073, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.asset.php'),
(1074, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js'),
(1075, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.js.LICENSE.txt'),
(1076, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js'),
(1077, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.min.js.LICENSE.txt'),
(1078, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-canvas/editor-canvas.strings.js'),
(1079, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.asset.php'),
(1080, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js'),
(1081, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.js.LICENSE.txt'),
(1082, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.min.js'),
(1083, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-controls/editor-controls.strings.js'),
(1084, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.asset.php'),
(1085, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js'),
(1086, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.js.LICENSE.txt'),
(1087, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.min.js'),
(1088, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-documents/editor-documents.strings.js'),
(1089, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.asset.php'),
(1090, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js'),
(1091, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.js.LICENSE.txt'),
(1092, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.min.js'),
(1093, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-editing-panel/editor-editing-panel.strings.js'),
(1094, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.asset.php'),
(1095, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js'),
(1096, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.js.LICENSE.txt'),
(1097, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.min.js'),
(1098, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-elements/editor-elements.strings.js'),
(1099, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.asset.php'),
(1100, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(1101, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.js.LICENSE.txt'),
(1102, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.min.js'),
(1103, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-global-classes/editor-global-classes.strings.js'),
(1104, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.asset.php'),
(1105, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js'),
(1106, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.js.LICENSE.txt'),
(1107, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.min.js'),
(1108, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-panels/editor-panels.strings.js'),
(1109, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.asset.php'),
(1110, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js'),
(1111, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.js.LICENSE.txt'),
(1112, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.min.js'),
(1113, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-props/editor-props.strings.js'),
(1114, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.asset.php'),
(1115, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js'),
(1116, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.js.LICENSE.txt'),
(1117, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.min.js'),
(1118, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-responsive/editor-responsive.strings.js'),
(1119, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.asset.php'),
(1120, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js'),
(1121, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.js.LICENSE.txt'),
(1122, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.min.js'),
(1123, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-site-navigation/editor-site-navigation.strings.js'),
(1124, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.asset.php'),
(1125, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js'),
(1126, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.js.LICENSE.txt'),
(1127, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.min.js'),
(1128, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-styles/editor-styles.strings.js'),
(1129, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.asset.php'),
(1130, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js'),
(1131, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.js.LICENSE.txt'),
(1132, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.min.js'),
(1133, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-styles-repository/editor-styles-repository.strings.js'),
(1134, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.asset.php'),
(1135, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js'),
(1136, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.js.LICENSE.txt'),
(1137, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.min.js'),
(1138, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-ui/editor-ui.strings.js'),
(1139, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.asset.php', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.asset.php'),
(1140, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js'),
(1141, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.js.LICENSE.txt'),
(1142, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.min.js', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.min.js'),
(1143, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.strings.js', 'wp-content/plugins/elementor/assets/js/packages/editor-v1-adapters/editor-v1-adapters.strings.js'),
(1144, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.asset.php', 'wp-content/plugins/elementor/assets/js/packages/env/env.asset.php'),
(1145, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.js', 'wp-content/plugins/elementor/assets/js/packages/env/env.js'),
(1146, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/env/env.js.LICENSE.txt'),
(1147, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.min.js', 'wp-content/plugins/elementor/assets/js/packages/env/env.min.js'),
(1148, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/env/env.strings.js', 'wp-content/plugins/elementor/assets/js/packages/env/env.strings.js'),
(1149, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.asset.php', 'wp-content/plugins/elementor/assets/js/packages/http/http.asset.php'),
(1150, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.js', 'wp-content/plugins/elementor/assets/js/packages/http/http.js'),
(1151, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/http/http.js.LICENSE.txt'),
(1152, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.min.js', 'wp-content/plugins/elementor/assets/js/packages/http/http.min.js'),
(1153, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/http/http.strings.js', 'wp-content/plugins/elementor/assets/js/packages/http/http.strings.js'),
(1154, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.asset.php', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.asset.php'),
(1155, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.js', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.js'),
(1156, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.js.LICENSE.txt'),
(1157, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.min.js', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.min.js'),
(1158, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/icons/icons.strings.js', 'wp-content/plugins/elementor/assets/js/packages/icons/icons.strings.js'),
(1159, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.asset.php', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.asset.php'),
(1160, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.js', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.js'),
(1161, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.js.LICENSE.txt'),
(1162, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.min.js', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.min.js'),
(1163, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/locations/locations.strings.js', 'wp-content/plugins/elementor/assets/js/packages/locations/locations.strings.js'),
(1164, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.asset.php', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.asset.php'),
(1165, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.js', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.js'),
(1166, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.js.LICENSE.txt'),
(1167, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.min.js', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.min.js'),
(1168, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/menus/menus.strings.js', 'wp-content/plugins/elementor/assets/js/packages/menus/menus.strings.js'),
(1169, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.asset.php', 'wp-content/plugins/elementor/assets/js/packages/query/query.asset.php'),
(1170, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.js', 'wp-content/plugins/elementor/assets/js/packages/query/query.js'),
(1171, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/query/query.js.LICENSE.txt'),
(1172, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.min.js', 'wp-content/plugins/elementor/assets/js/packages/query/query.min.js'),
(1173, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/query/query.min.js.LICENSE.txt'),
(1174, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/query/query.strings.js', 'wp-content/plugins/elementor/assets/js/packages/query/query.strings.js'),
(1175, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.asset.php', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.asset.php'),
(1176, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.js', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.js'),
(1177, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.js.LICENSE.txt'),
(1178, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.min.js', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.min.js'),
(1179, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/schema/schema.strings.js', 'wp-content/plugins/elementor/assets/js/packages/schema/schema.strings.js'),
(1180, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.asset.php', 'wp-content/plugins/elementor/assets/js/packages/session/session.asset.php'),
(1181, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.js', 'wp-content/plugins/elementor/assets/js/packages/session/session.js'),
(1182, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/session/session.js.LICENSE.txt'),
(1183, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.min.js', 'wp-content/plugins/elementor/assets/js/packages/session/session.min.js'),
(1184, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/session/session.strings.js', 'wp-content/plugins/elementor/assets/js/packages/session/session.strings.js'),
(1185, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.asset.php', 'wp-content/plugins/elementor/assets/js/packages/store/store.asset.php'),
(1186, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.js', 'wp-content/plugins/elementor/assets/js/packages/store/store.js'),
(1187, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/store/store.js.LICENSE.txt'),
(1188, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.min.js', 'wp-content/plugins/elementor/assets/js/packages/store/store.min.js'),
(1189, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/store/store.min.js.LICENSE.txt'),
(1190, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/store/store.strings.js', 'wp-content/plugins/elementor/assets/js/packages/store/store.strings.js'),
(1191, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.asset.php', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.asset.php'),
(1192, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.js', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.js'),
(1193, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.js.LICENSE.txt'),
(1194, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js'),
(1195, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.min.js.LICENSE.txt'),
(1196, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/ui/ui.strings.js', 'wp-content/plugins/elementor/assets/js/packages/ui/ui.strings.js'),
(1197, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.asset.php', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.asset.php'),
(1198, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.js', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.js'),
(1199, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.js.LICENSE.txt'),
(1200, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.min.js', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.min.js'),
(1201, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/utils/utils.strings.js', 'wp-content/plugins/elementor/assets/js/packages/utils/utils.strings.js'),
(1202, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.asset.php', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.asset.php'),
(1203, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js'),
(1204, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.js.LICENSE.txt'),
(1205, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.min.js', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.min.js'),
(1206, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.strings.js', 'wp-content/plugins/elementor/assets/js/packages/wp-media/wp-media.strings.js'),
(1207, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/progress.3200f67fe8fb78924bea.bundle.min.js', 'wp-content/plugins/elementor/assets/js/progress.3200f67fe8fb78924bea.bundle.min.js'),
(1208, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/progress.5d8492a023e85c6cc0e0.bundle.js', 'wp-content/plugins/elementor/assets/js/progress.5d8492a023e85c6cc0e0.bundle.js'),
(1209, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/responsive-bar.js', 'wp-content/plugins/elementor/assets/js/responsive-bar.js'),
(1210, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/responsive-bar.min.js', 'wp-content/plugins/elementor/assets/js/responsive-bar.min.js'),
(1211, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app-initiator.js', 'wp-content/plugins/elementor/assets/js/styleguide-app-initiator.js'),
(1212, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js', 'wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js'),
(1213, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/styleguide-app-initiator.min.js.LICENSE.txt'),
(1214, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app.51d4579e75a5f39265bc.bundle.min.js', 'wp-content/plugins/elementor/assets/js/styleguide-app.51d4579e75a5f39265bc.bundle.min.js'),
(1215, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide-app.a6e297c616479b98c03d.bundle.js', 'wp-content/plugins/elementor/assets/js/styleguide-app.a6e297c616479b98c03d.bundle.js'),
(1216, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide.js', 'wp-content/plugins/elementor/assets/js/styleguide.js'),
(1217, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/styleguide.min.js', 'wp-content/plugins/elementor/assets/js/styleguide.min.js'),
(1218, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/tabs.537e7a0f178447960143.bundle.min.js', 'wp-content/plugins/elementor/assets/js/tabs.537e7a0f178447960143.bundle.min.js'),
(1219, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/tabs.e808857358793ac13db5.bundle.js', 'wp-content/plugins/elementor/assets/js/tabs.e808857358793ac13db5.bundle.js'),
(1220, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-editor.bd4eccbd156d0b1fc3cf.bundle.js', 'wp-content/plugins/elementor/assets/js/text-editor.bd4eccbd156d0b1fc3cf.bundle.js'),
(1221, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-editor.c084ef86600b6f11690d.bundle.min.js', 'wp-content/plugins/elementor/assets/js/text-editor.c084ef86600b6f11690d.bundle.min.js'),
(1222, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js', 'wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js'),
(1223, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/text-path.5923566687faac82ea62.bundle.min.js.LICENSE.txt'),
(1224, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/text-path.acb8842ac7e1cd1dfb44.bundle.js', 'wp-content/plugins/elementor/assets/js/text-path.acb8842ac7e1cd1dfb44.bundle.js'),
(1225, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/toggle.375da8e2f6fed12731c2.bundle.js', 'wp-content/plugins/elementor/assets/js/toggle.375da8e2f6fed12731c2.bundle.js'),
(1226, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/toggle.a6177e2e3c2bc8864bef.bundle.min.js', 'wp-content/plugins/elementor/assets/js/toggle.a6177e2e3c2bc8864bef.bundle.min.js'),
(1227, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/video.6ebfa2c3f5493cb2eaaf.bundle.min.js', 'wp-content/plugins/elementor/assets/js/video.6ebfa2c3f5493cb2eaaf.bundle.min.js'),
(1228, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/video.d862fafddbe5d05459f3.bundle.js', 'wp-content/plugins/elementor/assets/js/video.d862fafddbe5d05459f3.bundle.js'),
(1229, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/web-cli.js', 'wp-content/plugins/elementor/assets/js/web-cli.js'),
(1230, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/web-cli.min.js', 'wp-content/plugins/elementor/assets/js/web-cli.min.js'),
(1231, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/web-cli.min.js.LICENSE.txt', 'wp-content/plugins/elementor/assets/js/web-cli.min.js.LICENSE.txt'),
(1232, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/webpack.runtime.js', 'wp-content/plugins/elementor/assets/js/webpack.runtime.js'),
(1233, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js', 'wp-content/plugins/elementor/assets/js/webpack.runtime.min.js'),
(1234, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/wp-audio.c91cab3152c3f241f266.bundle.js', 'wp-content/plugins/elementor/assets/js/wp-audio.c91cab3152c3f241f266.bundle.js'),
(1235, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/js/wp-audio.c9624cb6e5dc9de86abd.bundle.min.js', 'wp-content/plugins/elementor/assets/js/wp-audio.c9624cb6e5dc9de86abd.bundle.min.js'),
(1236, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animate.css/animate-config.json', 'wp-content/plugins/elementor/assets/lib/animate.css/animate-config.json'),
(1237, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animate.css/animate.css', 'wp-content/plugins/elementor/assets/lib/animate.css/animate.css'),
(1238, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css', 'wp-content/plugins/elementor/assets/lib/animate.css/animate.min.css'),
(1239, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/animations.min.css', 'wp-content/plugins/elementor/assets/lib/animations/animations.min.css'),
(1240, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounce.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounce.css'),
(1241, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounce.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounce.min.css'),
(1242, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.css'),
(1243, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceIn.min.css'),
(1244, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.css'),
(1245, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInDown.min.css'),
(1246, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.css'),
(1247, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInLeft.min.css'),
(1248, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.css'),
(1249, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInRight.min.css'),
(1250, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.css'),
(1251, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/bounceInUp.min.css'),
(1252, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.css'),
(1253, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bob.min.css'),
(1254, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.css'),
(1255, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-in.min.css'),
(1256, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.css'),
(1257, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-bounce-out.min.css'),
(1258, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.css'),
(1259, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz-out.min.css'),
(1260, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.css'),
(1261, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-buzz.min.css'),
(1262, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.css'),
(1263, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-float.min.css'),
(1264, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.css'),
(1265, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow-rotate.min.css'),
(1266, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.css'),
(1267, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-grow.min.css'),
(1268, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.css'),
(1269, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-hang.min.css'),
(1270, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.css'),
(1271, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pop.min.css'),
(1272, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.css'),
(1273, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-grow.min.css'),
(1274, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.css'),
(1275, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse-shrink.min.css'),
(1276, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.css'),
(1277, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-pulse.min.css'),
(1278, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.css'),
(1279, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-push.min.css'),
(1280, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.css'),
(1281, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-rotate.min.css'),
(1282, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.css'),
(1283, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-shrink.min.css'),
(1284, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.css'),
(1285, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-sink.min.css'),
(1286, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.css'),
(1287, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-backward.min.css'),
(1288, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.css'),
(1289, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew-forward.min.css'),
(1290, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.css'),
(1291, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-skew.min.css'),
(1292, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.css'),
(1293, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-bottom.min.css'),
(1294, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.css'),
(1295, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-horizontal.min.css'),
(1296, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.css'),
(1297, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-skew.min.css'),
(1298, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.css'),
(1299, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-bottom-right.min.css'),
(1300, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.css'),
(1301, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-to-top-right.min.css'),
(1302, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.css'),
(1303, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-top.min.css'),
(1304, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.css'),
(1305, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/e-animation-wobble-vertical.min.css'),
(1306, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.css'),
(1307, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeIn.min.css'),
(1308, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.css'),
(1309, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInDown.min.css'),
(1310, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.css'),
(1311, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInLeft.min.css'),
(1312, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.css'),
(1313, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInRight.min.css'),
(1314, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.css'),
(1315, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/fadeInUp.min.css'),
(1316, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/flash.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/flash.css'),
(1317, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/flash.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/flash.min.css'),
(1318, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/headShake.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/headShake.css'),
(1319, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/headShake.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/headShake.min.css'),
(1320, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/jello.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/jello.css'),
(1321, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/jello.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/jello.min.css'),
(1322, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.css'),
(1323, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/lightSpeedIn.min.css'),
(1324, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/pulse.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/pulse.css'),
(1325, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/pulse.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/pulse.min.css'),
(1326, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.css'),
(1327, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rollIn.min.css'),
(1328, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.css'),
(1329, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateIn.min.css'),
(1330, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.css'),
(1331, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownLeft.min.css'),
(1332, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.css'),
(1333, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInDownRight.min.css'),
(1334, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.css'),
(1335, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpLeft.min.css'),
(1336, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.css'),
(1337, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rotateInUpRight.min.css'),
(1338, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.css'),
(1339, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/rubberBand.min.css'),
(1340, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/shake.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/shake.css'),
(1341, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/shake.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/shake.min.css'),
(1342, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.css'),
(1343, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInDown.min.css'),
(1344, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.css'),
(1345, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInLeft.min.css'),
(1346, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.css'),
(1347, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInRight.min.css'),
(1348, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.css'),
(1349, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/slideInUp.min.css'),
(1350, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/swing.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/swing.css'),
(1351, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/swing.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/swing.min.css'),
(1352, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/tada.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/tada.css'),
(1353, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/tada.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/tada.min.css'),
(1354, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/wobble.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/wobble.css'),
(1355, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/wobble.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/wobble.min.css'),
(1356, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.css'),
(1357, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomIn.min.css'),
(1358, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.css'),
(1359, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInDown.min.css'),
(1360, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.css'),
(1361, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInLeft.min.css'),
(1362, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.css'),
(1363, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInRight.min.css'),
(1364, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.css'),
(1365, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.min.css', 'wp-content/plugins/elementor/assets/lib/animations/styles/zoomInUp.min.css'),
(1366, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.js', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.js'),
(1367, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js'),
(1368, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.js', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.js'),
(1369, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js', 'wp-content/plugins/elementor/assets/lib/backbone/backbone.radio.min.js'),
(1370, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js', 'wp-content/plugins/elementor/assets/lib/color-thief/color-thief.min.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(1371, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/dialog/dialog.js', 'wp-content/plugins/elementor/assets/lib/dialog/dialog.js'),
(1372, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js', 'wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js'),
(1373, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.css', 'wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.css'),
(1374, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css', 'wp-content/plugins/elementor/assets/lib/e-gallery/css/e-gallery.min.css'),
(1375, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js', 'wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.js'),
(1376, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js', 'wp-content/plugins/elementor/assets/lib/e-gallery/js/e-gallery.min.js'),
(1377, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.css', 'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.css'),
(1378, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css', 'wp-content/plugins/elementor/assets/lib/e-select2/css/e-select2.min.css'),
(1379, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.js', 'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.js'),
(1380, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js', 'wp-content/plugins/elementor/assets/lib/e-select2/js/e-select2.full.min.js'),
(1381, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css', 'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.css'),
(1382, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css', 'wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css'),
(1383, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/eicons.json', 'wp-content/plugins/elementor/assets/lib/eicons/eicons.json'),
(1384, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.eot'),
(1385, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.svg'),
(1386, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.ttf'),
(1387, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff'),
(1388, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2', 'wp-content/plugins/elementor/assets/lib/eicons/fonts/eicons.woff2'),
(1389, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.css'),
(1390, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.js'),
(1391, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.css'),
(1392, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js', 'wp-content/plugins/elementor/assets/lib/flatpickr/flatpickr.min.js'),
(1393, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/all.css'),
(1394, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css'),
(1395, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.css'),
(1396, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/brands.min.css'),
(1397, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.css'),
(1398, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css'),
(1399, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.css'),
(1400, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/fontawesome.min.css'),
(1401, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.css'),
(1402, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/regular.min.css'),
(1403, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.css'),
(1404, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/solid.min.css'),
(1405, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.css'),
(1406, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/svg-with-js.min.css'),
(1407, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.css'),
(1408, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css', 'wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css'),
(1409, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/FontAwesome.otf', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/FontAwesome.otf'),
(1410, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.eot'),
(1411, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.svg'),
(1412, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.ttf'),
(1413, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff'),
(1414, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2', 'wp-content/plugins/elementor/assets/lib/font-awesome/fonts/fontawesome-webfont.woff2'),
(1415, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/brands.js', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/brands.js'),
(1416, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/regular.js', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/regular.js'),
(1417, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/solid.js'),
(1418, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.js'),
(1419, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js', 'wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js'),
(1420, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/json/brands.json', 'wp-content/plugins/elementor/assets/lib/font-awesome/json/brands.json'),
(1421, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/json/regular.json', 'wp-content/plugins/elementor/assets/lib/font-awesome/json/regular.json'),
(1422, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json', 'wp-content/plugins/elementor/assets/lib/font-awesome/json/solid.json'),
(1423, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/migration/mapping.js', 'wp-content/plugins/elementor/assets/lib/font-awesome/migration/mapping.js'),
(1424, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.eot'),
(1425, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.svg'),
(1426, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.ttf'),
(1427, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff'),
(1428, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-brands-400.woff2'),
(1429, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.eot'),
(1430, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.svg'),
(1431, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.ttf'),
(1432, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff'),
(1433, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-regular-400.woff2'),
(1434, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.eot'),
(1435, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.svg'),
(1436, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.ttf'),
(1437, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff'),
(1438, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2', 'wp-content/plugins/elementor/assets/lib/font-awesome/webfonts/fa-solid-900.woff2'),
(1439, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/hover/hover.css', 'wp-content/plugins/elementor/assets/lib/hover/hover.css'),
(1440, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/hover/hover.min.css', 'wp-content/plugins/elementor/assets/lib/hover/hover.min.css'),
(1441, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.js', 'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.js'),
(1442, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js', 'wp-content/plugins/elementor/assets/lib/imagesloaded/imagesloaded.min.js'),
(1443, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.js', 'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.js'),
(1444, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js', 'wp-content/plugins/elementor/assets/lib/inline-editor/js/inline-editor.min.js'),
(1445, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js', 'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.js'),
(1446, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js', 'wp-content/plugins/elementor/assets/lib/jquery-easing/jquery-easing.min.js'),
(1447, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js', 'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.js'),
(1448, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js', 'wp-content/plugins/elementor/assets/lib/jquery-hover-intent/jquery-hover-intent.min.js'),
(1449, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js', 'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.js'),
(1450, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js', 'wp-content/plugins/elementor/assets/lib/jquery-numerator/jquery-numerator.min.js'),
(1451, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js', 'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.js'),
(1452, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js', 'wp-content/plugins/elementor/assets/lib/nouislider/nouislider.min.js'),
(1453, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js', 'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.js'),
(1454, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js', 'wp-content/plugins/elementor/assets/lib/nprogress/nprogress.min.js'),
(1455, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.js', 'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.js'),
(1456, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js', 'wp-content/plugins/elementor/assets/lib/perfect-scrollbar/js/perfect-scrollbar.min.js'),
(1457, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js', 'wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js'),
(1458, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css', 'wp-content/plugins/elementor/assets/lib/pickr/themes/monolith.min.css'),
(1459, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/share-link/share-link.js', 'wp-content/plugins/elementor/assets/lib/share-link/share-link.js'),
(1460, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js', 'wp-content/plugins/elementor/assets/lib/share-link/share-link.min.js'),
(1461, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css', 'wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.css'),
(1462, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css', 'wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css'),
(1463, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.js', 'wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.js'),
(1464, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js', 'wp-content/plugins/elementor/assets/lib/swiper/v8/swiper.min.js'),
(1465, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/tipsy/tipsy.js', 'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.js'),
(1466, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/lib/tipsy/tipsy.min.js', 'wp-content/plugins/elementor/assets/lib/tipsy/tipsy.min.js'),
(1467, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/blob.svg', 'wp-content/plugins/elementor/assets/mask-shapes/blob.svg'),
(1468, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/circle.svg', 'wp-content/plugins/elementor/assets/mask-shapes/circle.svg'),
(1469, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/flower.svg', 'wp-content/plugins/elementor/assets/mask-shapes/flower.svg'),
(1470, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/hexagon.svg', 'wp-content/plugins/elementor/assets/mask-shapes/hexagon.svg'),
(1471, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/sketch.svg', 'wp-content/plugins/elementor/assets/mask-shapes/sketch.svg'),
(1472, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/mask-shapes/triangle.svg', 'wp-content/plugins/elementor/assets/mask-shapes/triangle.svg'),
(1473, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/arrow-negative.svg', 'wp-content/plugins/elementor/assets/shapes/arrow-negative.svg'),
(1474, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/arrow.svg', 'wp-content/plugins/elementor/assets/shapes/arrow.svg'),
(1475, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/book-negative.svg', 'wp-content/plugins/elementor/assets/shapes/book-negative.svg'),
(1476, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/book.svg', 'wp-content/plugins/elementor/assets/shapes/book.svg'),
(1477, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/clouds-negative.svg', 'wp-content/plugins/elementor/assets/shapes/clouds-negative.svg'),
(1478, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/clouds.svg', 'wp-content/plugins/elementor/assets/shapes/clouds.svg'),
(1479, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve-asymmetrical-negative.svg', 'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical-negative.svg'),
(1480, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve-asymmetrical.svg', 'wp-content/plugins/elementor/assets/shapes/curve-asymmetrical.svg'),
(1481, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve-negative.svg', 'wp-content/plugins/elementor/assets/shapes/curve-negative.svg'),
(1482, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/curve.svg', 'wp-content/plugins/elementor/assets/shapes/curve.svg'),
(1483, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/drops-negative.svg', 'wp-content/plugins/elementor/assets/shapes/drops-negative.svg'),
(1484, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/drops.svg', 'wp-content/plugins/elementor/assets/shapes/drops.svg'),
(1485, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/mountains.svg', 'wp-content/plugins/elementor/assets/shapes/mountains.svg'),
(1486, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/opacity-fan.svg', 'wp-content/plugins/elementor/assets/shapes/opacity-fan.svg'),
(1487, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/opacity-tilt.svg', 'wp-content/plugins/elementor/assets/shapes/opacity-tilt.svg'),
(1488, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/pyramids-negative.svg', 'wp-content/plugins/elementor/assets/shapes/pyramids-negative.svg'),
(1489, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/pyramids.svg', 'wp-content/plugins/elementor/assets/shapes/pyramids.svg'),
(1490, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/split-negative.svg', 'wp-content/plugins/elementor/assets/shapes/split-negative.svg'),
(1491, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/split.svg', 'wp-content/plugins/elementor/assets/shapes/split.svg'),
(1492, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/tilt.svg', 'wp-content/plugins/elementor/assets/shapes/tilt.svg'),
(1493, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical-negative.svg', 'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical-negative.svg'),
(1494, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical.svg', 'wp-content/plugins/elementor/assets/shapes/triangle-asymmetrical.svg'),
(1495, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle-negative.svg', 'wp-content/plugins/elementor/assets/shapes/triangle-negative.svg'),
(1496, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/triangle.svg', 'wp-content/plugins/elementor/assets/shapes/triangle.svg'),
(1497, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/wave-brush.svg', 'wp-content/plugins/elementor/assets/shapes/wave-brush.svg'),
(1498, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/waves-negative.svg', 'wp-content/plugins/elementor/assets/shapes/waves-negative.svg'),
(1499, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/waves-pattern.svg', 'wp-content/plugins/elementor/assets/shapes/waves-pattern.svg'),
(1500, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/waves.svg', 'wp-content/plugins/elementor/assets/shapes/waves.svg'),
(1501, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/shapes/zigzag.svg', 'wp-content/plugins/elementor/assets/shapes/zigzag.svg'),
(1502, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/arc.svg', 'wp-content/plugins/elementor/assets/svg-paths/arc.svg'),
(1503, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/circle.svg', 'wp-content/plugins/elementor/assets/svg-paths/circle.svg'),
(1504, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/line.svg', 'wp-content/plugins/elementor/assets/svg-paths/line.svg'),
(1505, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/oval.svg', 'wp-content/plugins/elementor/assets/svg-paths/oval.svg'),
(1506, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/spiral.svg', 'wp-content/plugins/elementor/assets/svg-paths/spiral.svg'),
(1507, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/assets/svg-paths/wave.svg', 'wp-content/plugins/elementor/assets/svg-paths/wave.svg'),
(1508, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/changelog.txt', 'wp-content/plugins/elementor/changelog.txt'),
(1509, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/admin-notices.php', 'wp-content/plugins/elementor/core/admin/admin-notices.php'),
(1510, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/admin.php', 'wp-content/plugins/elementor/core/admin/admin.php'),
(1511, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/canary-deployment.php', 'wp-content/plugins/elementor/core/admin/canary-deployment.php'),
(1512, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/feedback.php', 'wp-content/plugins/elementor/core/admin/feedback.php'),
(1513, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/admin-menu-manager.php', 'wp-content/plugins/elementor/core/admin/menu/admin-menu-manager.php'),
(1514, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/base.php', 'wp-content/plugins/elementor/core/admin/menu/base.php'),
(1515, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-has-position.php', 'wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-has-position.php'),
(1516, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-with-page.php', 'wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item-with-page.php'),
(1517, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item.php', 'wp-content/plugins/elementor/core/admin/menu/interfaces/admin-menu-item.php'),
(1518, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/menu/main.php', 'wp-content/plugins/elementor/core/admin/menu/main.php'),
(1519, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/notices/base-notice.php', 'wp-content/plugins/elementor/core/admin/notices/base-notice.php'),
(1520, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/notices/elementor-dev-notice.php', 'wp-content/plugins/elementor/core/admin/notices/elementor-dev-notice.php'),
(1521, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/admin/ui/components/button.php', 'wp-content/plugins/elementor/core/admin/ui/components/button.php'),
(1522, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/app.php', 'wp-content/plugins/elementor/core/app/app.php'),
(1523, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/import-export/module.php', 'wp-content/plugins/elementor/core/app/modules/import-export/module.php'),
(1524, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/kit-library/connect/kit-library.php', 'wp-content/plugins/elementor/core/app/modules/kit-library/connect/kit-library.php'),
(1525, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/kit-library/module.php', 'wp-content/plugins/elementor/core/app/modules/kit-library/module.php'),
(1526, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/app/modules/onboarding/module.php', 'wp-content/plugins/elementor/core/app/modules/onboarding/module.php'),
(1527, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/app.php', 'wp-content/plugins/elementor/core/base/app.php'),
(1528, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-process/wp-async-request.php', 'wp-content/plugins/elementor/core/base/background-process/wp-async-request.php'),
(1529, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-process/wp-background-process.php', 'wp-content/plugins/elementor/core/base/background-process/wp-background-process.php'),
(1530, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-task-manager.php', 'wp-content/plugins/elementor/core/base/background-task-manager.php'),
(1531, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/background-task.php', 'wp-content/plugins/elementor/core/base/background-task.php'),
(1532, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/base-object.php', 'wp-content/plugins/elementor/core/base/base-object.php'),
(1533, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/db-upgrades-manager.php', 'wp-content/plugins/elementor/core/base/db-upgrades-manager.php'),
(1534, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/document.php', 'wp-content/plugins/elementor/core/base/document.php'),
(1535, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/elements-iteration-actions/assets.php', 'wp-content/plugins/elementor/core/base/elements-iteration-actions/assets.php'),
(1536, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/elements-iteration-actions/base.php', 'wp-content/plugins/elementor/core/base/elements-iteration-actions/base.php'),
(1537, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/module.php', 'wp-content/plugins/elementor/core/base/module.php'),
(1538, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/providers/social-network-provider.php', 'wp-content/plugins/elementor/core/base/providers/social-network-provider.php'),
(1539, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/base/traits/shared-widget-controls-trait.php', 'wp-content/plugins/elementor/core/base/traits/shared-widget-controls-trait.php'),
(1540, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/behaviors/interfaces/lock-behavior.php', 'wp-content/plugins/elementor/core/behaviors/interfaces/lock-behavior.php'),
(1541, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/breakpoints/breakpoint.php', 'wp-content/plugins/elementor/core/breakpoints/breakpoint.php'),
(1542, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/breakpoints/manager.php', 'wp-content/plugins/elementor/core/breakpoints/manager.php'),
(1543, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/app.php', 'wp-content/plugins/elementor/core/common/app.php'),
(1544, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/ajax/module.php', 'wp-content/plugins/elementor/core/common/modules/ajax/module.php'),
(1545, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/admin.php', 'wp-content/plugins/elementor/core/common/modules/connect/admin.php'),
(1546, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/base-app.php', 'wp-content/plugins/elementor/core/common/modules/connect/apps/base-app.php'),
(1547, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/base-user-app.php', 'wp-content/plugins/elementor/core/common/modules/connect/apps/base-user-app.php'),
(1548, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/common-app.php', 'wp-content/plugins/elementor/core/common/modules/connect/apps/common-app.php'),
(1549, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/connect.php', 'wp-content/plugins/elementor/core/common/modules/connect/apps/connect.php'),
(1550, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/apps/library.php', 'wp-content/plugins/elementor/core/common/modules/connect/apps/library.php'),
(1551, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/connect-menu-item.php', 'wp-content/plugins/elementor/core/common/modules/connect/connect-menu-item.php'),
(1552, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/connect/module.php', 'wp-content/plugins/elementor/core/common/modules/connect/module.php'),
(1553, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/data/controller.php', 'wp-content/plugins/elementor/core/common/modules/event-tracker/data/controller.php'),
(1554, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/db.php', 'wp-content/plugins/elementor/core/common/modules/event-tracker/db.php'),
(1555, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/module.php', 'wp-content/plugins/elementor/core/common/modules/event-tracker/module.php'),
(1556, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/event-tracker/personal-data.php', 'wp-content/plugins/elementor/core/common/modules/event-tracker/personal-data.php'),
(1557, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/base-category.php', 'wp-content/plugins/elementor/core/common/modules/finder/base-category.php'),
(1558, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/create.php', 'wp-content/plugins/elementor/core/common/modules/finder/categories/create.php'),
(1559, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/edit.php', 'wp-content/plugins/elementor/core/common/modules/finder/categories/edit.php'),
(1560, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/general.php', 'wp-content/plugins/elementor/core/common/modules/finder/categories/general.php'),
(1561, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/settings.php', 'wp-content/plugins/elementor/core/common/modules/finder/categories/settings.php'),
(1562, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/site.php', 'wp-content/plugins/elementor/core/common/modules/finder/categories/site.php'),
(1563, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories/tools.php', 'wp-content/plugins/elementor/core/common/modules/finder/categories/tools.php'),
(1564, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/categories-manager.php', 'wp-content/plugins/elementor/core/common/modules/finder/categories-manager.php'),
(1565, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/module.php', 'wp-content/plugins/elementor/core/common/modules/finder/module.php'),
(1566, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/common/modules/finder/template.php', 'wp-content/plugins/elementor/core/common/modules/finder/template.php'),
(1567, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/htaccess.php', 'wp-content/plugins/elementor/core/debug/classes/htaccess.php'),
(1568, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/inspection-base.php', 'wp-content/plugins/elementor/core/debug/classes/inspection-base.php'),
(1569, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/shop-page-edit.php', 'wp-content/plugins/elementor/core/debug/classes/shop-page-edit.php'),
(1570, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/classes/theme-missing.php', 'wp-content/plugins/elementor/core/debug/classes/theme-missing.php'),
(1571, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/inspector.php', 'wp-content/plugins/elementor/core/debug/inspector.php'),
(1572, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/debug/loading-inspection-manager.php', 'wp-content/plugins/elementor/core/debug/loading-inspection-manager.php'),
(1573, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/document-types/page-base.php', 'wp-content/plugins/elementor/core/document-types/page-base.php'),
(1574, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/document-types/page.php', 'wp-content/plugins/elementor/core/document-types/page.php'),
(1575, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/document-types/post.php', 'wp-content/plugins/elementor/core/document-types/post.php'),
(1576, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/documents-manager.php', 'wp-content/plugins/elementor/core/documents-manager.php'),
(1577, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/base-tag.php', 'wp-content/plugins/elementor/core/dynamic-tags/base-tag.php'),
(1578, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/data-tag.php', 'wp-content/plugins/elementor/core/dynamic-tags/data-tag.php'),
(1579, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/dynamic-css.php', 'wp-content/plugins/elementor/core/dynamic-tags/dynamic-css.php'),
(1580, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/manager.php', 'wp-content/plugins/elementor/core/dynamic-tags/manager.php'),
(1581, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/dynamic-tags/tag.php', 'wp-content/plugins/elementor/core/dynamic-tags/tag.php'),
(1582, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/controller.php', 'wp-content/plugins/elementor/core/editor/data/globals/controller.php'),
(1583, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/endpoints/base.php', 'wp-content/plugins/elementor/core/editor/data/globals/endpoints/base.php'),
(1584, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/endpoints/colors.php', 'wp-content/plugins/elementor/core/editor/data/globals/endpoints/colors.php'),
(1585, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/data/globals/endpoints/typography.php', 'wp-content/plugins/elementor/core/editor/data/globals/endpoints/typography.php'),
(1586, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/editor.php', 'wp-content/plugins/elementor/core/editor/editor.php'),
(1587, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php', 'wp-content/plugins/elementor/core/editor/loader/common/editor-common-scripts-settings.php'),
(1588, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/editor-base-loader.php', 'wp-content/plugins/elementor/core/editor/loader/editor-base-loader.php'),
(1589, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/editor-loader-factory.php', 'wp-content/plugins/elementor/core/editor/loader/editor-loader-factory.php'),
(1590, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/editor-loader-interface.php', 'wp-content/plugins/elementor/core/editor/loader/editor-loader-interface.php'),
(1591, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v1/editor-v1-loader.php', 'wp-content/plugins/elementor/core/editor/loader/v1/editor-v1-loader.php'),
(1592, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v1/js/editor-loader-v1.js', 'wp-content/plugins/elementor/core/editor/loader/v1/js/editor-loader-v1.js'),
(1593, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v1/templates/editor-body-v1-view.php', 'wp-content/plugins/elementor/core/editor/loader/v1/templates/editor-body-v1-view.php'),
(1594, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php', 'wp-content/plugins/elementor/core/editor/loader/v2/editor-v2-loader.php'),
(1595, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/js/editor-environment-v2.js', 'wp-content/plugins/elementor/core/editor/loader/v2/js/editor-environment-v2.js'),
(1596, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/js/editor-loader-v2.js', 'wp-content/plugins/elementor/core/editor/loader/v2/js/editor-loader-v2.js'),
(1597, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/scss/editor-v2-app-bar-overrides.scss', 'wp-content/plugins/elementor/core/editor/loader/v2/scss/editor-v2-app-bar-overrides.scss'),
(1598, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/loader/v2/templates/editor-body-v2-view.php', 'wp-content/plugins/elementor/core/editor/loader/v2/templates/editor-body-v2-view.php'),
(1599, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/notice-bar.php', 'wp-content/plugins/elementor/core/editor/notice-bar.php'),
(1600, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/editor/promotion.php', 'wp-content/plugins/elementor/core/editor/promotion.php'),
(1601, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/exceptions/dependency-exception.php', 'wp-content/plugins/elementor/core/experiments/exceptions/dependency-exception.php'),
(1602, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/experiments-reporter.php', 'wp-content/plugins/elementor/core/experiments/experiments-reporter.php'),
(1603, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/manager.php', 'wp-content/plugins/elementor/core/experiments/manager.php'),
(1604, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/non-existing-dependency.php', 'wp-content/plugins/elementor/core/experiments/non-existing-dependency.php'),
(1605, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/wp-cli.php', 'wp-content/plugins/elementor/core/experiments/wp-cli.php'),
(1606, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/experiments/wrap-core-dependency.php', 'wp-content/plugins/elementor/core/experiments/wrap-core-dependency.php'),
(1607, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/files-upload-handler.php', 'wp-content/plugins/elementor/core/files/assets/files-upload-handler.php'),
(1608, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/json/json-handler.php', 'wp-content/plugins/elementor/core/files/assets/json/json-handler.php'),
(1609, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/manager.php', 'wp-content/plugins/elementor/core/files/assets/manager.php'),
(1610, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/assets/svg/svg-handler.php', 'wp-content/plugins/elementor/core/files/assets/svg/svg-handler.php'),
(1611, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/base.php', 'wp-content/plugins/elementor/core/files/base.php'),
(1612, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/base.php', 'wp-content/plugins/elementor/core/files/css/base.php'),
(1613, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/post-local-cache.php', 'wp-content/plugins/elementor/core/files/css/post-local-cache.php'),
(1614, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/post-preview.php', 'wp-content/plugins/elementor/core/files/css/post-preview.php'),
(1615, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/css/post.php', 'wp-content/plugins/elementor/core/files/css/post.php'),
(1616, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/base.php', 'wp-content/plugins/elementor/core/files/file-types/base.php'),
(1617, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/json.php', 'wp-content/plugins/elementor/core/files/file-types/json.php'),
(1618, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/svg.php', 'wp-content/plugins/elementor/core/files/file-types/svg.php'),
(1619, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/file-types/zip.php', 'wp-content/plugins/elementor/core/files/file-types/zip.php'),
(1620, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/fonts/google-font.php', 'wp-content/plugins/elementor/core/files/fonts/google-font.php'),
(1621, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/manager.php', 'wp-content/plugins/elementor/core/files/manager.php'),
(1622, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/files/uploads-manager.php', 'wp-content/plugins/elementor/core/files/uploads-manager.php'),
(1623, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/performance.php', 'wp-content/plugins/elementor/core/frontend/performance.php'),
(1624, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/render-mode-manager.php', 'wp-content/plugins/elementor/core/frontend/render-mode-manager.php'),
(1625, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/render-modes/render-mode-base.php', 'wp-content/plugins/elementor/core/frontend/render-modes/render-mode-base.php'),
(1626, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/frontend/render-modes/render-mode-normal.php', 'wp-content/plugins/elementor/core/frontend/render-modes/render-mode-normal.php'),
(1627, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/elementor-adapter-interface.php', 'wp-content/plugins/elementor/core/isolation/elementor-adapter-interface.php'),
(1628, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/elementor-adapter.php', 'wp-content/plugins/elementor/core/isolation/elementor-adapter.php'),
(1629, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/elementor-counter-adapter-interface.php', 'wp-content/plugins/elementor/core/isolation/elementor-counter-adapter-interface.php'),
(1630, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/plugin-status-adapter-interface.php', 'wp-content/plugins/elementor/core/isolation/plugin-status-adapter-interface.php'),
(1631, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/plugin-status-adapter.php', 'wp-content/plugins/elementor/core/isolation/plugin-status-adapter.php'),
(1632, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/wordpress-adapter-interface.php', 'wp-content/plugins/elementor/core/isolation/wordpress-adapter-interface.php'),
(1633, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/isolation/wordpress-adapter.php', 'wp-content/plugins/elementor/core/isolation/wordpress-adapter.php'),
(1634, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/controls/repeater.php', 'wp-content/plugins/elementor/core/kits/controls/repeater.php'),
(1635, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/kit.php', 'wp-content/plugins/elementor/core/kits/documents/kit.php'),
(1636, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/global-colors.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/global-colors.php'),
(1637, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/global-typography.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/global-typography.php'),
(1638, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-background.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-background.php'),
(1639, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-custom-css.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-custom-css.php'),
(1640, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-layout.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-layout.php'),
(1641, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-lightbox.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-lightbox.php'),
(1642, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-page-transitions.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-page-transitions.php'),
(1643, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/settings-site-identity.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/settings-site-identity.php'),
(1644, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/tab-base.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/tab-base.php'),
(1645, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-buttons.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-buttons.php'),
(1646, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-form-fields.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-form-fields.php'),
(1647, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-images.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-images.php'),
(1648, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-typography.php', 'wp-content/plugins/elementor/core/kits/documents/tabs/theme-style-typography.php'),
(1649, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/manager.php', 'wp-content/plugins/elementor/core/kits/manager.php'),
(1650, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/views/panel.php', 'wp-content/plugins/elementor/core/kits/views/panel.php'),
(1651, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/kits/views/trash-kit-confirmation.php', 'wp-content/plugins/elementor/core/kits/views/trash-kit-confirmation.php'),
(1652, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/base.php', 'wp-content/plugins/elementor/core/logger/items/base.php'),
(1653, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/file.php', 'wp-content/plugins/elementor/core/logger/items/file.php'),
(1654, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/js.php', 'wp-content/plugins/elementor/core/logger/items/js.php'),
(1655, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/log-item-interface.php', 'wp-content/plugins/elementor/core/logger/items/log-item-interface.php'),
(1656, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/items/php.php', 'wp-content/plugins/elementor/core/logger/items/php.php'),
(1657, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/log-reporter.php', 'wp-content/plugins/elementor/core/logger/log-reporter.php'),
(1658, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/loggers/base.php', 'wp-content/plugins/elementor/core/logger/loggers/base.php'),
(1659, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/loggers/db.php', 'wp-content/plugins/elementor/core/logger/loggers/db.php'),
(1660, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/loggers/logger-interface.php', 'wp-content/plugins/elementor/core/logger/loggers/logger-interface.php'),
(1661, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/logger/manager.php', 'wp-content/plugins/elementor/core/logger/manager.php'),
(1662, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/modules-manager.php', 'wp-content/plugins/elementor/core/modules-manager.php'),
(1663, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/base.php', 'wp-content/plugins/elementor/core/page-assets/data-managers/base.php'),
(1664, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/base.php', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/base.php'),
(1665, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/e-icons.php', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/e-icons.php'),
(1666, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/font-awesome.php', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/font-awesome.php'),
(1667, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/manager.php', 'wp-content/plugins/elementor/core/page-assets/data-managers/font-icon-svg/manager.php'),
(1668, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/page-assets/loader.php', 'wp-content/plugins/elementor/core/page-assets/loader.php'),
(1669, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/responsive/files/frontend.php', 'wp-content/plugins/elementor/core/responsive/files/frontend.php'),
(1670, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/responsive/responsive.php', 'wp-content/plugins/elementor/core/responsive/responsive.php'),
(1671, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/role-manager/role-manager-menu-item.php', 'wp-content/plugins/elementor/core/role-manager/role-manager-menu-item.php'),
(1672, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/role-manager/role-manager.php', 'wp-content/plugins/elementor/core/role-manager/role-manager.php'),
(1673, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/css-manager.php', 'wp-content/plugins/elementor/core/settings/base/css-manager.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(1674, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/css-model.php', 'wp-content/plugins/elementor/core/settings/base/css-model.php'),
(1675, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/manager.php', 'wp-content/plugins/elementor/core/settings/base/manager.php'),
(1676, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/base/model.php', 'wp-content/plugins/elementor/core/settings/base/model.php'),
(1677, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/editor-preferences/manager.php', 'wp-content/plugins/elementor/core/settings/editor-preferences/manager.php'),
(1678, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/editor-preferences/model.php', 'wp-content/plugins/elementor/core/settings/editor-preferences/model.php'),
(1679, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/general/manager.php', 'wp-content/plugins/elementor/core/settings/general/manager.php'),
(1680, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/general/model.php', 'wp-content/plugins/elementor/core/settings/general/model.php'),
(1681, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/manager.php', 'wp-content/plugins/elementor/core/settings/manager.php'),
(1682, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/page/manager.php', 'wp-content/plugins/elementor/core/settings/page/manager.php'),
(1683, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/settings/page/model.php', 'wp-content/plugins/elementor/core/settings/page/model.php'),
(1684, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/custom-tasks-manager.php', 'wp-content/plugins/elementor/core/upgrade/custom-tasks-manager.php'),
(1685, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/custom-tasks.php', 'wp-content/plugins/elementor/core/upgrade/custom-tasks.php'),
(1686, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/manager.php', 'wp-content/plugins/elementor/core/upgrade/manager.php'),
(1687, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/task.php', 'wp-content/plugins/elementor/core/upgrade/task.php'),
(1688, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/updater.php', 'wp-content/plugins/elementor/core/upgrade/updater.php'),
(1689, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/upgrade-utils.php', 'wp-content/plugins/elementor/core/upgrade/upgrade-utils.php'),
(1690, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/upgrade/upgrades.php', 'wp-content/plugins/elementor/core/upgrade/upgrades.php'),
(1691, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/assets-config-provider.php', 'wp-content/plugins/elementor/core/utils/assets-config-provider.php'),
(1692, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/assets-translation-loader.php', 'wp-content/plugins/elementor/core/utils/assets-translation-loader.php'),
(1693, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/collection.php', 'wp-content/plugins/elementor/core/utils/collection.php'),
(1694, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/exceptions.php', 'wp-content/plugins/elementor/core/utils/exceptions.php'),
(1695, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/force-locale.php', 'wp-content/plugins/elementor/core/utils/force-locale.php'),
(1696, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/hints.php', 'wp-content/plugins/elementor/core/utils/hints.php'),
(1697, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/http.php', 'wp-content/plugins/elementor/core/utils/http.php'),
(1698, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-regex.php', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-regex.php'),
(1699, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-simple-xml.php', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-simple-xml.php'),
(1700, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-xml.php', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser-xml.php'),
(1701, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser.php', 'wp-content/plugins/elementor/core/utils/import-export/parsers/wxr-parser.php'),
(1702, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/url.php', 'wp-content/plugins/elementor/core/utils/import-export/url.php'),
(1703, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/wp-exporter.php', 'wp-content/plugins/elementor/core/utils/import-export/wp-exporter.php'),
(1704, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/import-export/wp-import.php', 'wp-content/plugins/elementor/core/utils/import-export/wp-import.php'),
(1705, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/isolation-manager.php', 'wp-content/plugins/elementor/core/utils/isolation-manager.php'),
(1706, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/plugins-manager.php', 'wp-content/plugins/elementor/core/utils/plugins-manager.php'),
(1707, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/promotions/filtered-promotions-manager.php', 'wp-content/plugins/elementor/core/utils/promotions/filtered-promotions-manager.php'),
(1708, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/static-collection.php', 'wp-content/plugins/elementor/core/utils/static-collection.php'),
(1709, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/str.php', 'wp-content/plugins/elementor/core/utils/str.php'),
(1710, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/svg/svg-sanitizer.php', 'wp-content/plugins/elementor/core/utils/svg/svg-sanitizer.php'),
(1711, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/utils/version.php', 'wp-content/plugins/elementor/core/utils/version.php'),
(1712, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/core/wp-api.php', 'wp-content/plugins/elementor/core/wp-api.php'),
(1713, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/controller.php', 'wp-content/plugins/elementor/data/base/controller.php'),
(1714, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/endpoint.php', 'wp-content/plugins/elementor/data/base/endpoint.php'),
(1715, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/processor/after.php', 'wp-content/plugins/elementor/data/base/processor/after.php'),
(1716, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/processor/before.php', 'wp-content/plugins/elementor/data/base/processor/before.php'),
(1717, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/processor.php', 'wp-content/plugins/elementor/data/base/processor.php'),
(1718, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/base/sub-endpoint.php', 'wp-content/plugins/elementor/data/base/sub-endpoint.php'),
(1719, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/manager.php', 'wp-content/plugins/elementor/data/manager.php'),
(1720, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/base-route.php', 'wp-content/plugins/elementor/data/v2/base/base-route.php'),
(1721, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/controller.php', 'wp-content/plugins/elementor/data/v2/base/controller.php'),
(1722, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint/index/all-children.php', 'wp-content/plugins/elementor/data/v2/base/endpoint/index/all-children.php'),
(1723, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint/index/sub-index-endpoint.php', 'wp-content/plugins/elementor/data/v2/base/endpoint/index/sub-index-endpoint.php'),
(1724, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint/index.php', 'wp-content/plugins/elementor/data/v2/base/endpoint/index.php'),
(1725, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/endpoint.php', 'wp-content/plugins/elementor/data/v2/base/endpoint.php'),
(1726, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/data-exception.php', 'wp-content/plugins/elementor/data/v2/base/exceptions/data-exception.php'),
(1727, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/error-404.php', 'wp-content/plugins/elementor/data/v2/base/exceptions/error-404.php'),
(1728, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/error-500.php', 'wp-content/plugins/elementor/data/v2/base/exceptions/error-500.php'),
(1729, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/exceptions/wp-error-exception.php', 'wp-content/plugins/elementor/data/v2/base/exceptions/wp-error-exception.php'),
(1730, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/processor/after.php', 'wp-content/plugins/elementor/data/v2/base/processor/after.php'),
(1731, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/processor/before.php', 'wp-content/plugins/elementor/data/v2/base/processor/before.php'),
(1732, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/base/processor.php', 'wp-content/plugins/elementor/data/v2/base/processor.php'),
(1733, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/data/v2/manager.php', 'wp-content/plugins/elementor/data/v2/manager.php'),
(1734, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/elementor.php', 'wp-content/plugins/elementor/elementor.php'),
(1735, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/admin-templates/beta-tester.php', 'wp-content/plugins/elementor/includes/admin-templates/beta-tester.php'),
(1736, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/admin-templates/new-floating-elements.php', 'wp-content/plugins/elementor/includes/admin-templates/new-floating-elements.php'),
(1737, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/admin-templates/new-template.php', 'wp-content/plugins/elementor/includes/admin-templates/new-template.php'),
(1738, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/api.php', 'wp-content/plugins/elementor/includes/api.php'),
(1739, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/autoloader.php', 'wp-content/plugins/elementor/includes/autoloader.php'),
(1740, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/controls-stack.php', 'wp-content/plugins/elementor/includes/base/controls-stack.php'),
(1741, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/element-base.php', 'wp-content/plugins/elementor/includes/base/element-base.php'),
(1742, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/skin-base.php', 'wp-content/plugins/elementor/includes/base/skin-base.php'),
(1743, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/sub-controls-stack.php', 'wp-content/plugins/elementor/includes/base/sub-controls-stack.php'),
(1744, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/base/widget-base.php', 'wp-content/plugins/elementor/includes/base/widget-base.php'),
(1745, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/beta-testers.php', 'wp-content/plugins/elementor/includes/beta-testers.php'),
(1746, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/compatibility.php', 'wp-content/plugins/elementor/includes/compatibility.php'),
(1747, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/conditions.php', 'wp-content/plugins/elementor/includes/conditions.php'),
(1748, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/container/config.php', 'wp-content/plugins/elementor/includes/container/config.php'),
(1749, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/container/container.php', 'wp-content/plugins/elementor/includes/container/container.php'),
(1750, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/alert.php', 'wp-content/plugins/elementor/includes/controls/alert.php'),
(1751, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/animation.php', 'wp-content/plugins/elementor/includes/controls/animation.php'),
(1752, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-data.php', 'wp-content/plugins/elementor/includes/controls/base-data.php'),
(1753, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-icon-font.php', 'wp-content/plugins/elementor/includes/controls/base-icon-font.php'),
(1754, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-multiple.php', 'wp-content/plugins/elementor/includes/controls/base-multiple.php'),
(1755, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-ui.php', 'wp-content/plugins/elementor/includes/controls/base-ui.php'),
(1756, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base-units.php', 'wp-content/plugins/elementor/includes/controls/base-units.php'),
(1757, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/base.php', 'wp-content/plugins/elementor/includes/controls/base.php'),
(1758, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/box-shadow.php', 'wp-content/plugins/elementor/includes/controls/box-shadow.php'),
(1759, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/button.php', 'wp-content/plugins/elementor/includes/controls/button.php'),
(1760, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/choose.php', 'wp-content/plugins/elementor/includes/controls/choose.php'),
(1761, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/code.php', 'wp-content/plugins/elementor/includes/controls/code.php'),
(1762, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/color.php', 'wp-content/plugins/elementor/includes/controls/color.php'),
(1763, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/date-time.php', 'wp-content/plugins/elementor/includes/controls/date-time.php'),
(1764, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/deprecated-notice.php', 'wp-content/plugins/elementor/includes/controls/deprecated-notice.php'),
(1765, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/dimensions.php', 'wp-content/plugins/elementor/includes/controls/dimensions.php'),
(1766, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/divider.php', 'wp-content/plugins/elementor/includes/controls/divider.php'),
(1767, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/exit-animation.php', 'wp-content/plugins/elementor/includes/controls/exit-animation.php'),
(1768, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/font.php', 'wp-content/plugins/elementor/includes/controls/font.php'),
(1769, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/gallery.php', 'wp-content/plugins/elementor/includes/controls/gallery.php'),
(1770, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/gaps.php', 'wp-content/plugins/elementor/includes/controls/gaps.php'),
(1771, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/background.php', 'wp-content/plugins/elementor/includes/controls/groups/background.php'),
(1772, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/base.php', 'wp-content/plugins/elementor/includes/controls/groups/base.php'),
(1773, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/border.php', 'wp-content/plugins/elementor/includes/controls/groups/border.php'),
(1774, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/box-shadow.php', 'wp-content/plugins/elementor/includes/controls/groups/box-shadow.php'),
(1775, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/css-filter.php', 'wp-content/plugins/elementor/includes/controls/groups/css-filter.php'),
(1776, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/flex-container.php', 'wp-content/plugins/elementor/includes/controls/groups/flex-container.php'),
(1777, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/flex-item.php', 'wp-content/plugins/elementor/includes/controls/groups/flex-item.php'),
(1778, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/grid-container.php', 'wp-content/plugins/elementor/includes/controls/groups/grid-container.php'),
(1779, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/image-size.php', 'wp-content/plugins/elementor/includes/controls/groups/image-size.php'),
(1780, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/text-shadow.php', 'wp-content/plugins/elementor/includes/controls/groups/text-shadow.php'),
(1781, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/text-stroke.php', 'wp-content/plugins/elementor/includes/controls/groups/text-stroke.php'),
(1782, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/groups/typography.php', 'wp-content/plugins/elementor/includes/controls/groups/typography.php'),
(1783, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/heading.php', 'wp-content/plugins/elementor/includes/controls/heading.php'),
(1784, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/hidden.php', 'wp-content/plugins/elementor/includes/controls/hidden.php'),
(1785, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/hover-animation.php', 'wp-content/plugins/elementor/includes/controls/hover-animation.php'),
(1786, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/icon.php', 'wp-content/plugins/elementor/includes/controls/icon.php'),
(1787, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/icons.php', 'wp-content/plugins/elementor/includes/controls/icons.php'),
(1788, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/image-dimensions.php', 'wp-content/plugins/elementor/includes/controls/image-dimensions.php'),
(1789, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/media.php', 'wp-content/plugins/elementor/includes/controls/media.php'),
(1790, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/notice.php', 'wp-content/plugins/elementor/includes/controls/notice.php'),
(1791, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/number.php', 'wp-content/plugins/elementor/includes/controls/number.php'),
(1792, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/popover-toggle.php', 'wp-content/plugins/elementor/includes/controls/popover-toggle.php'),
(1793, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/raw-html.php', 'wp-content/plugins/elementor/includes/controls/raw-html.php'),
(1794, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/repeater.php', 'wp-content/plugins/elementor/includes/controls/repeater.php'),
(1795, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/section.php', 'wp-content/plugins/elementor/includes/controls/section.php'),
(1796, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/select.php', 'wp-content/plugins/elementor/includes/controls/select.php'),
(1797, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/select2.php', 'wp-content/plugins/elementor/includes/controls/select2.php'),
(1798, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/slider.php', 'wp-content/plugins/elementor/includes/controls/slider.php'),
(1799, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/structure.php', 'wp-content/plugins/elementor/includes/controls/structure.php'),
(1800, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/switcher.php', 'wp-content/plugins/elementor/includes/controls/switcher.php'),
(1801, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/tab.php', 'wp-content/plugins/elementor/includes/controls/tab.php'),
(1802, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/tabs.php', 'wp-content/plugins/elementor/includes/controls/tabs.php'),
(1803, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/text-shadow.php', 'wp-content/plugins/elementor/includes/controls/text-shadow.php'),
(1804, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/text.php', 'wp-content/plugins/elementor/includes/controls/text.php'),
(1805, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/textarea.php', 'wp-content/plugins/elementor/includes/controls/textarea.php'),
(1806, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/url.php', 'wp-content/plugins/elementor/includes/controls/url.php'),
(1807, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/visual-choice.php', 'wp-content/plugins/elementor/includes/controls/visual-choice.php'),
(1808, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/wp-widget.php', 'wp-content/plugins/elementor/includes/controls/wp-widget.php'),
(1809, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/controls/wysiwyg.php', 'wp-content/plugins/elementor/includes/controls/wysiwyg.php'),
(1810, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/db.php', 'wp-content/plugins/elementor/includes/db.php'),
(1811, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-assets-api.php', 'wp-content/plugins/elementor/includes/editor-assets-api.php'),
(1812, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php', 'wp-content/plugins/elementor/includes/editor-templates/editor-wrapper.php'),
(1813, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/global.php', 'wp-content/plugins/elementor/includes/editor-templates/global.php'),
(1814, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/hotkeys.php', 'wp-content/plugins/elementor/includes/editor-templates/hotkeys.php'),
(1815, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/library-layout.php', 'wp-content/plugins/elementor/includes/editor-templates/library-layout.php'),
(1816, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/navigator.php', 'wp-content/plugins/elementor/includes/editor-templates/navigator.php'),
(1817, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/panel-elements.php', 'wp-content/plugins/elementor/includes/editor-templates/panel-elements.php'),
(1818, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/panel.php', 'wp-content/plugins/elementor/includes/editor-templates/panel.php'),
(1819, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/repeater.php', 'wp-content/plugins/elementor/includes/editor-templates/repeater.php'),
(1820, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/responsive-bar.php', 'wp-content/plugins/elementor/includes/editor-templates/responsive-bar.php'),
(1821, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/editor-templates/templates.php', 'wp-content/plugins/elementor/includes/editor-templates/templates.php'),
(1822, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/column.php', 'wp-content/plugins/elementor/includes/elements/column.php'),
(1823, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/container.php', 'wp-content/plugins/elementor/includes/elements/container.php'),
(1824, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/repeater.php', 'wp-content/plugins/elementor/includes/elements/repeater.php'),
(1825, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/elements/section.php', 'wp-content/plugins/elementor/includes/elements/section.php'),
(1826, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/embed.php', 'wp-content/plugins/elementor/includes/embed.php'),
(1827, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/fonts.php', 'wp-content/plugins/elementor/includes/fonts.php'),
(1828, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/frontend.php', 'wp-content/plugins/elementor/includes/frontend.php'),
(1829, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/heartbeat.php', 'wp-content/plugins/elementor/includes/heartbeat.php'),
(1830, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/interfaces/group-control.php', 'wp-content/plugins/elementor/includes/interfaces/group-control.php'),
(1831, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/interfaces/has-validation.php', 'wp-content/plugins/elementor/includes/interfaces/has-validation.php'),
(1832, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/libraries/bfi-thumb/bfi-thumb.php', 'wp-content/plugins/elementor/includes/libraries/bfi-thumb/bfi-thumb.php'),
(1833, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-async-request.php', 'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-async-request.php'),
(1834, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-background-process.php', 'wp-content/plugins/elementor/includes/libraries/wp-background-process/wp-background-process.php'),
(1835, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/maintenance-mode.php', 'wp-content/plugins/elementor/includes/maintenance-mode.php'),
(1836, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/maintenance.php', 'wp-content/plugins/elementor/includes/maintenance.php'),
(1837, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/controls.php', 'wp-content/plugins/elementor/includes/managers/controls.php'),
(1838, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/elements.php', 'wp-content/plugins/elementor/includes/managers/elements.php'),
(1839, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/icons.php', 'wp-content/plugins/elementor/includes/managers/icons.php'),
(1840, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/image.php', 'wp-content/plugins/elementor/includes/managers/image.php'),
(1841, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/skins.php', 'wp-content/plugins/elementor/includes/managers/skins.php'),
(1842, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/widgets.php', 'wp-content/plugins/elementor/includes/managers/widgets.php'),
(1843, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/managers/wordpress-widgets.php', 'wp-content/plugins/elementor/includes/managers/wordpress-widgets.php'),
(1844, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/plugin.php', 'wp-content/plugins/elementor/includes/plugin.php'),
(1845, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/preview.php', 'wp-content/plugins/elementor/includes/preview.php'),
(1846, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/rollback.php', 'wp-content/plugins/elementor/includes/rollback.php'),
(1847, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/admin-menu-item.php', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/admin-menu-item.php'),
(1848, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/get-help-menu-item.php', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/get-help-menu-item.php'),
(1849, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/getting-started-menu-item.php', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/getting-started-menu-item.php'),
(1850, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/admin-menu-items/tools-menu-item.php', 'wp-content/plugins/elementor/includes/settings/admin-menu-items/tools-menu-item.php'),
(1851, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/controls.php', 'wp-content/plugins/elementor/includes/settings/controls.php'),
(1852, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/settings-page.php', 'wp-content/plugins/elementor/includes/settings/settings-page.php'),
(1853, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/settings.php', 'wp-content/plugins/elementor/includes/settings/settings.php'),
(1854, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/tools.php', 'wp-content/plugins/elementor/includes/settings/tools.php'),
(1855, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/settings/validations.php', 'wp-content/plugins/elementor/includes/settings/validations.php'),
(1856, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/shapes.php', 'wp-content/plugins/elementor/includes/shapes.php'),
(1857, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/stylesheet.php', 'wp-content/plugins/elementor/includes/stylesheet.php'),
(1858, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/classes/class-import-images.php', 'wp-content/plugins/elementor/includes/template-library/classes/class-import-images.php'),
(1859, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/data/controller.php', 'wp-content/plugins/elementor/includes/template-library/data/controller.php'),
(1860, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php', 'wp-content/plugins/elementor/includes/template-library/data/endpoints/templates.php'),
(1861, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/forms/new-template-form.php', 'wp-content/plugins/elementor/includes/template-library/forms/new-template-form.php'),
(1862, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/manager.php', 'wp-content/plugins/elementor/includes/template-library/manager.php'),
(1863, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/add-new-template-menu-item.php', 'wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/add-new-template-menu-item.php'),
(1864, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/saved-templates-menu-item.php', 'wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/saved-templates-menu-item.php'),
(1865, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/templates-categories-menu-item.php', 'wp-content/plugins/elementor/includes/template-library/sources/admin-menu-items/templates-categories-menu-item.php'),
(1866, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/base.php', 'wp-content/plugins/elementor/includes/template-library/sources/base.php'),
(1867, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/cloud.php', 'wp-content/plugins/elementor/includes/template-library/sources/cloud.php'),
(1868, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/local.php', 'wp-content/plugins/elementor/includes/template-library/sources/local.php'),
(1869, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/template-library/sources/remote.php', 'wp-content/plugins/elementor/includes/template-library/sources/remote.php'),
(1870, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/tracker.php', 'wp-content/plugins/elementor/includes/tracker.php'),
(1871, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/user.php', 'wp-content/plugins/elementor/includes/user.php'),
(1872, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/utils.php', 'wp-content/plugins/elementor/includes/utils.php'),
(1873, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/accordion.php', 'wp-content/plugins/elementor/includes/widgets/accordion.php'),
(1874, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/alert.php', 'wp-content/plugins/elementor/includes/widgets/alert.php'),
(1875, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/audio.php', 'wp-content/plugins/elementor/includes/widgets/audio.php'),
(1876, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/button.php', 'wp-content/plugins/elementor/includes/widgets/button.php'),
(1877, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/common-base.php', 'wp-content/plugins/elementor/includes/widgets/common-base.php'),
(1878, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/common-optimized.php', 'wp-content/plugins/elementor/includes/widgets/common-optimized.php'),
(1879, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/common.php', 'wp-content/plugins/elementor/includes/widgets/common.php'),
(1880, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/counter.php', 'wp-content/plugins/elementor/includes/widgets/counter.php'),
(1881, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/divider.php', 'wp-content/plugins/elementor/includes/widgets/divider.php'),
(1882, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/google-maps.php', 'wp-content/plugins/elementor/includes/widgets/google-maps.php'),
(1883, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/heading.php', 'wp-content/plugins/elementor/includes/widgets/heading.php'),
(1884, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/html.php', 'wp-content/plugins/elementor/includes/widgets/html.php'),
(1885, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/icon-box.php', 'wp-content/plugins/elementor/includes/widgets/icon-box.php'),
(1886, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/icon-list.php', 'wp-content/plugins/elementor/includes/widgets/icon-list.php'),
(1887, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/icon.php', 'wp-content/plugins/elementor/includes/widgets/icon.php'),
(1888, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image-box.php', 'wp-content/plugins/elementor/includes/widgets/image-box.php'),
(1889, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image-carousel.php', 'wp-content/plugins/elementor/includes/widgets/image-carousel.php'),
(1890, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image-gallery.php', 'wp-content/plugins/elementor/includes/widgets/image-gallery.php'),
(1891, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/image.php', 'wp-content/plugins/elementor/includes/widgets/image.php'),
(1892, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/inner-section.php', 'wp-content/plugins/elementor/includes/widgets/inner-section.php'),
(1893, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/menu-anchor.php', 'wp-content/plugins/elementor/includes/widgets/menu-anchor.php'),
(1894, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/progress.php', 'wp-content/plugins/elementor/includes/widgets/progress.php'),
(1895, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/rating.php', 'wp-content/plugins/elementor/includes/widgets/rating.php'),
(1896, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/read-more.php', 'wp-content/plugins/elementor/includes/widgets/read-more.php'),
(1897, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/shortcode.php', 'wp-content/plugins/elementor/includes/widgets/shortcode.php'),
(1898, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/sidebar.php', 'wp-content/plugins/elementor/includes/widgets/sidebar.php'),
(1899, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/social-icons.php', 'wp-content/plugins/elementor/includes/widgets/social-icons.php'),
(1900, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/spacer.php', 'wp-content/plugins/elementor/includes/widgets/spacer.php'),
(1901, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/star-rating.php', 'wp-content/plugins/elementor/includes/widgets/star-rating.php'),
(1902, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/tabs.php', 'wp-content/plugins/elementor/includes/widgets/tabs.php'),
(1903, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/testimonial.php', 'wp-content/plugins/elementor/includes/widgets/testimonial.php'),
(1904, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/text-editor.php', 'wp-content/plugins/elementor/includes/widgets/text-editor.php'),
(1905, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/toggle.php', 'wp-content/plugins/elementor/includes/widgets/toggle.php'),
(1906, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/traits/button-trait.php', 'wp-content/plugins/elementor/includes/widgets/traits/button-trait.php'),
(1907, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/video.php', 'wp-content/plugins/elementor/includes/widgets/video.php'),
(1908, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/includes/widgets/wordpress.php', 'wp-content/plugins/elementor/includes/widgets/wordpress.php'),
(1909, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/license.txt', 'wp-content/plugins/elementor/license.txt'),
(1910, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/admin-bar/module.php', 'wp-content/plugins/elementor/modules/admin-bar/module.php'),
(1911, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/admin-top-bar/module.php', 'wp-content/plugins/elementor/modules/admin-top-bar/module.php'),
(1912, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/connect/ai.php', 'wp-content/plugins/elementor/modules/ai/connect/ai.php'),
(1913, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/feature-intro/product-image-unification-intro.php', 'wp-content/plugins/elementor/modules/ai/feature-intro/product-image-unification-intro.php'),
(1914, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/module.php', 'wp-content/plugins/elementor/modules/ai/module.php'),
(1915, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/preferences.php', 'wp-content/plugins/elementor/modules/ai/preferences.php'),
(1916, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/site-planner-connect/module.php', 'wp-content/plugins/elementor/modules/ai/site-planner-connect/module.php'),
(1917, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/site-planner-connect/view.php', 'wp-content/plugins/elementor/modules/ai/site-planner-connect/view.php'),
(1918, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/ai/site-planner-connect/wp-rest-api.php', 'wp-content/plugins/elementor/modules/ai/site-planner-connect/wp-rest-api.php'),
(1919, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/classes/announcement.php', 'wp-content/plugins/elementor/modules/announcements/classes/announcement.php'),
(1920, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/classes/trigger-base.php', 'wp-content/plugins/elementor/modules/announcements/classes/trigger-base.php'),
(1921, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/classes/utils.php', 'wp-content/plugins/elementor/modules/announcements/classes/utils.php'),
(1922, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/module.php', 'wp-content/plugins/elementor/modules/announcements/module.php'),
(1923, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/triggers/ai-started.php', 'wp-content/plugins/elementor/modules/announcements/triggers/ai-started.php'),
(1924, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/announcements/triggers/is-flex-container-inactive.php', 'wp-content/plugins/elementor/modules/announcements/triggers/is-flex-container-inactive.php'),
(1925, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/admin-apps-page.php', 'wp-content/plugins/elementor/modules/apps/admin-apps-page.php'),
(1926, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/admin-menu-apps.php', 'wp-content/plugins/elementor/modules/apps/admin-menu-apps.php'),
(1927, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/admin-pointer.php', 'wp-content/plugins/elementor/modules/apps/admin-pointer.php'),
(1928, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/apps/module.php', 'wp-content/plugins/elementor/modules/apps/module.php'),
(1929, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/base/atomic-control-base.php', 'wp-content/plugins/elementor/modules/atomic-widgets/base/atomic-control-base.php'),
(1930, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/base/style-transformer-base.php', 'wp-content/plugins/elementor/modules/atomic-widgets/base/style-transformer-base.php'),
(1931, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/section.php', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/section.php'),
(1932, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/image-control.php', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/image-control.php'),
(1933, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/link-control.php', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/link-control.php'),
(1934, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/select-control.php', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/select-control.php'),
(1935, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/svg-control.php', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/svg-control.php'),
(1936, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/text-control.php', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/text-control.php'),
(1937, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/textarea-control.php', 'wp-content/plugins/elementor/modules/atomic-widgets/controls/types/textarea-control.php'),
(1938, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-type.php'),
(1939, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-types-mapping.php', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-prop-types-mapping.php'),
(1940, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-editor-config.php', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-editor-config.php'),
(1941, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-module.php', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-module.php'),
(1942, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-schemas.php', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-tags-schemas.php'),
(1943, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/dynamic-tags/dynamic-transformer.php'),
(1944, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.html.twig', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.html.twig'),
(1945, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-button/atomic-button.php'),
(1946, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-element-base.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-element-base.php'),
(1947, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.html.twig'),
(1948, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-heading/atomic-heading.php'),
(1949, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.html.twig', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.html.twig'),
(1950, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-image/atomic-image.php'),
(1951, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.html.twig'),
(1952, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-paragraph/atomic-paragraph.php'),
(1953, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-svg/atomic-svg.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-svg/atomic-svg.php'),
(1954, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-widget-base.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/atomic-widget-base.php'),
(1955, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/div-block/div-block.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/div-block/div-block.php'),
(1956, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/has-atomic-base.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/has-atomic-base.php'),
(1957, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/has-base-styles.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/has-base-styles.php'),
(1958, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/elements/has-template.php', 'wp-content/plugins/elementor/modules/atomic-widgets/elements/has-template.php'),
(1959, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/image/image-sizes.php', 'wp-content/plugins/elementor/modules/atomic-widgets/image/image-sizes.php'),
(1960, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/image/placeholder-image.php', 'wp-content/plugins/elementor/modules/atomic-widgets/image/placeholder-image.php'),
(1961, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/module.php', 'wp-content/plugins/elementor/modules/atomic-widgets/module.php'),
(1962, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/parsers/props-parser.php', 'wp-content/plugins/elementor/modules/atomic-widgets/parsers/props-parser.php'),
(1963, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/parsers/style-parser.php', 'wp-content/plugins/elementor/modules/atomic-widgets/parsers/style-parser.php'),
(1964, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-color-overlay-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-color-overlay-prop-type.php'),
(1965, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-prop-type.php'),
(1966, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-size-scale-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-overlay-size-scale-prop-type.php'),
(1967, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-position-offset-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-image-position-offset-prop-type.php'),
(1968, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-overlay-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-overlay-prop-type.php'),
(1969, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/background-prop-type.php'),
(1970, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/array-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/array-prop-type.php'),
(1971, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/object-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/object-prop-type.php'),
(1972, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/plain-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/base/plain-prop-type.php'),
(1973, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-radius-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-radius-prop-type.php'),
(1974, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-width-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/border-width-prop-type.php'),
(1975, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/box-shadow-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/box-shadow-prop-type.php'),
(1976, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/classes-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/classes-prop-type.php'),
(1977, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-gradient-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-gradient-prop-type.php'),
(1978, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/color-prop-type.php'),
(1979, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-default.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-default.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(1980, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-generate.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-generate.php'),
(1981, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-meta.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-meta.php'),
(1982, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-required-setting.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-required-setting.php'),
(1983, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-settings.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-settings.php'),
(1984, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-transformable-validation.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/concerns/has-transformable-validation.php'),
(1985, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/prop-type.php'),
(1986, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/transformable-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/contracts/transformable-prop-type.php'),
(1987, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/dimensions-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/dimensions-prop-type.php'),
(1988, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-attachment-id-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-attachment-id-prop-type.php'),
(1989, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-prop-type.php'),
(1990, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-src-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/image-src-prop-type.php'),
(1991, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/layout-direction-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/layout-direction-prop-type.php'),
(1992, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/link-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/link-prop-type.php'),
(1993, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/boolean-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/boolean-prop-type.php'),
(1994, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/number-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/number-prop-type.php'),
(1995, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/string-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/primitives/string-prop-type.php'),
(1996, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/shadow-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/shadow-prop-type.php'),
(1997, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/size-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/size-prop-type.php'),
(1998, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/stroke-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/stroke-prop-type.php'),
(1999, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/union-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/union-prop-type.php'),
(2000, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/prop-types/url-prop-type.php', 'wp-content/plugins/elementor/modules/atomic-widgets/prop-types/url-prop-type.php'),
(2001, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/multi-props.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/multi-props.php'),
(2002, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/props-resolver.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/props-resolver.php'),
(2003, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformer-base.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformer-base.php'),
(2004, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/array-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/array-transformer.php'),
(2005, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/combine-array-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/combine-array-transformer.php'),
(2006, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/primitive-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/primitive-transformer.php'),
(2007, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-src-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-src-transformer.php'),
(2008, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/image-transformer.php'),
(2009, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/link-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/settings/link-transformer.php'),
(2010, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-color-overlay-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-color-overlay-transformer.php'),
(2011, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-size-scale-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-size-scale-transformer.php'),
(2012, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-overlay-transformer.php'),
(2013, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-position-offset-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-image-position-offset-transformer.php'),
(2014, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/background-transformer.php'),
(2015, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/corner-sizes-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/corner-sizes-transformer.php'),
(2016, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/dimensions-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/dimensions-transformer.php'),
(2017, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/edge-sizes-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/edge-sizes-transformer.php'),
(2018, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/layout-direction-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/layout-direction-transformer.php'),
(2019, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/shadow-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/shadow-transformer.php'),
(2020, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/size-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/size-transformer.php'),
(2021, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/stroke-transformer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers/styles/stroke-transformer.php'),
(2022, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers-registry.php', 'wp-content/plugins/elementor/modules/atomic-widgets/props-resolver/transformers-registry.php'),
(2023, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-base-styles.php', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-base-styles.php'),
(2024, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-styles.php', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/atomic-widget-styles.php'),
(2025, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-definition.php', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/style-definition.php'),
(2026, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-schema.php', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/style-schema.php'),
(2027, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-variant.php', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/style-variant.php'),
(2028, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/styles-renderer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/styles-renderer.php'),
(2029, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/styles/utils.php', 'wp-content/plugins/elementor/modules/atomic-widgets/styles/utils.php'),
(2030, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/single-file-loader.php', 'wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/single-file-loader.php'),
(2031, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/template-renderer.php', 'wp-content/plugins/elementor/modules/atomic-widgets/template-renderer/template-renderer.php'),
(2032, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/checklist-module-interface.php', 'wp-content/plugins/elementor/modules/checklist/checklist-module-interface.php'),
(2033, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/data/controller.php', 'wp-content/plugins/elementor/modules/checklist/data/controller.php'),
(2034, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/data/endpoints/steps.php', 'wp-content/plugins/elementor/modules/checklist/data/endpoints/steps.php'),
(2035, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/data/endpoints/user-progress.php', 'wp-content/plugins/elementor/modules/checklist/data/endpoints/user-progress.php'),
(2036, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/module.php', 'wp-content/plugins/elementor/modules/checklist/module.php'),
(2037, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/add-logo.php', 'wp-content/plugins/elementor/modules/checklist/steps/add-logo.php'),
(2038, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/assign-homepage.php', 'wp-content/plugins/elementor/modules/checklist/steps/assign-homepage.php'),
(2039, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/create-pages.php', 'wp-content/plugins/elementor/modules/checklist/steps/create-pages.php'),
(2040, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/set-fonts-and-colors.php', 'wp-content/plugins/elementor/modules/checklist/steps/set-fonts-and-colors.php'),
(2041, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/setup-header.php', 'wp-content/plugins/elementor/modules/checklist/steps/setup-header.php'),
(2042, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps/step-base.php', 'wp-content/plugins/elementor/modules/checklist/steps/step-base.php'),
(2043, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/checklist/steps-manager.php', 'wp-content/plugins/elementor/modules/checklist/steps-manager.php'),
(2044, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/cloud-library/connect/cloud-library.php', 'wp-content/plugins/elementor/modules/cloud-library/connect/cloud-library.php'),
(2045, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/cloud-library/module.php', 'wp-content/plugins/elementor/modules/cloud-library/module.php'),
(2046, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/base-module.php', 'wp-content/plugins/elementor/modules/compatibility-tag/base-module.php'),
(2047, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag-report.php', 'wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag-report.php'),
(2048, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag.php', 'wp-content/plugins/elementor/modules/compatibility-tag/compatibility-tag.php'),
(2049, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/module.php', 'wp-content/plugins/elementor/modules/compatibility-tag/module.php'),
(2050, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/compatibility-tag/views/plugin-update-message-compatibility.php', 'wp-content/plugins/elementor/modules/compatibility-tag/views/plugin-update-message-compatibility.php'),
(2051, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/container-converter/module.php', 'wp-content/plugins/elementor/modules/container-converter/module.php'),
(2052, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/content-sanitizer/interfaces/sanitizable.php', 'wp-content/plugins/elementor/modules/content-sanitizer/interfaces/sanitizable.php'),
(2053, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/content-sanitizer/module.php', 'wp-content/plugins/elementor/modules/content-sanitizer/module.php'),
(2054, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/dev-tools/deprecation.php', 'wp-content/plugins/elementor/modules/dev-tools/deprecation.php'),
(2055, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/dev-tools/module.php', 'wp-content/plugins/elementor/modules/dev-tools/module.php'),
(2056, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/dynamic-tags/module.php', 'wp-content/plugins/elementor/modules/dynamic-tags/module.php'),
(2057, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/editor-app-bar/module.php', 'wp-content/plugins/elementor/modules/editor-app-bar/module.php'),
(2058, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/editor-events/module.php', 'wp-content/plugins/elementor/modules/editor-events/module.php'),
(2059, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-cache/module.php', 'wp-content/plugins/elementor/modules/element-cache/module.php'),
(2060, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/admin-menu-app.php', 'wp-content/plugins/elementor/modules/element-manager/admin-menu-app.php'),
(2061, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/ajax.php', 'wp-content/plugins/elementor/modules/element-manager/ajax.php'),
(2062, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/module.php', 'wp-content/plugins/elementor/modules/element-manager/module.php'),
(2063, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/element-manager/options.php', 'wp-content/plugins/elementor/modules/element-manager/options.php'),
(2064, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/elementor-counter/module.php', 'wp-content/plugins/elementor/modules/elementor-counter/module.php'),
(2065, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/elements-color-picker/module.php', 'wp-content/plugins/elementor/modules/elements-color-picker/module.php'),
(2066, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/controller.php', 'wp-content/plugins/elementor/modules/favorites/controller.php'),
(2067, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/favorites-type.php', 'wp-content/plugins/elementor/modules/favorites/favorites-type.php'),
(2068, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/module.php', 'wp-content/plugins/elementor/modules/favorites/module.php'),
(2069, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/favorites/types/widgets.php', 'wp-content/plugins/elementor/modules/favorites/types/widgets.php'),
(2070, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-empty-view-menu-item.php', 'wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-empty-view-menu-item.php'),
(2071, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-menu-item.php', 'wp-content/plugins/elementor/modules/floating-buttons/admin-menu-items/floating-buttons-menu-item.php'),
(2072, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/base/widget-contact-button-base.php', 'wp-content/plugins/elementor/modules/floating-buttons/base/widget-contact-button-base.php'),
(2073, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/base/widget-floating-bars-base.php', 'wp-content/plugins/elementor/modules/floating-buttons/base/widget-floating-bars-base.php'),
(2074, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-core-render.php', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-core-render.php'),
(2075, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-render-base.php', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/contact-buttons-render-base.php'),
(2076, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-core-render.php', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-core-render.php'),
(2077, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-render-base.php', 'wp-content/plugins/elementor/modules/floating-buttons/classes/render/floating-bars-render-base.php'),
(2078, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/control/hover-animation-floating-buttons.php', 'wp-content/plugins/elementor/modules/floating-buttons/control/hover-animation-floating-buttons.php'),
(2079, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/documents/floating-buttons.php', 'wp-content/plugins/elementor/modules/floating-buttons/documents/floating-buttons.php'),
(2080, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/module.php', 'wp-content/plugins/elementor/modules/floating-buttons/module.php'),
(2081, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/widgets/contact-buttons.php', 'wp-content/plugins/elementor/modules/floating-buttons/widgets/contact-buttons.php'),
(2082, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/floating-buttons/widgets/floating-bars-var-1.php', 'wp-content/plugins/elementor/modules/floating-buttons/widgets/floating-bars-var-1.php'),
(2083, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/generator-tag/module.php', 'wp-content/plugins/elementor/modules/generator-tag/module.php'),
(2084, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes-css.php', 'wp-content/plugins/elementor/modules/global-classes/global-classes-css.php'),
(2085, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes-repository.php', 'wp-content/plugins/elementor/modules/global-classes/global-classes-repository.php'),
(2086, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes-rest-api.php', 'wp-content/plugins/elementor/modules/global-classes/global-classes-rest-api.php'),
(2087, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/global-classes.php', 'wp-content/plugins/elementor/modules/global-classes/global-classes.php'),
(2088, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/module.php', 'wp-content/plugins/elementor/modules/global-classes/module.php'),
(2089, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/utils/error-builder.php', 'wp-content/plugins/elementor/modules/global-classes/utils/error-builder.php'),
(2090, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/global-classes/utils/response-builder.php', 'wp-content/plugins/elementor/modules/global-classes/utils/response-builder.php'),
(2091, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/gutenberg/module.php', 'wp-content/plugins/elementor/modules/gutenberg/module.php'),
(2092, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/module.php', 'wp-content/plugins/elementor/modules/history/module.php'),
(2093, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/revisions-manager.php', 'wp-content/plugins/elementor/modules/history/revisions-manager.php'),
(2094, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/views/history-panel-template.php', 'wp-content/plugins/elementor/modules/history/views/history-panel-template.php'),
(2095, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/history/views/revisions-panel-template.php', 'wp-content/plugins/elementor/modules/history/views/revisions-panel-template.php'),
(2096, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/api.php', 'wp-content/plugins/elementor/modules/home/api.php'),
(2097, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/classes/transformations-manager.php', 'wp-content/plugins/elementor/modules/home/classes/transformations-manager.php'),
(2098, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/module.php', 'wp-content/plugins/elementor/modules/home/module.php'),
(2099, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/base/transformations-abstract.php', 'wp-content/plugins/elementor/modules/home/transformations/base/transformations-abstract.php'),
(2100, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/create-new-page-url.php', 'wp-content/plugins/elementor/modules/home/transformations/create-new-page-url.php'),
(2101, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/create-site-settings-url.php', 'wp-content/plugins/elementor/modules/home/transformations/create-site-settings-url.php'),
(2102, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-condition-introduction-meta.php', 'wp-content/plugins/elementor/modules/home/transformations/filter-condition-introduction-meta.php'),
(2103, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-get-started-by-license.php', 'wp-content/plugins/elementor/modules/home/transformations/filter-get-started-by-license.php'),
(2104, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-plugins.php', 'wp-content/plugins/elementor/modules/home/transformations/filter-plugins.php'),
(2105, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-sidebar-promotion-by-license.php', 'wp-content/plugins/elementor/modules/home/transformations/filter-sidebar-promotion-by-license.php'),
(2106, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/home/transformations/filter-top-section-by-license.php', 'wp-content/plugins/elementor/modules/home/transformations/filter-top-section-by-license.php'),
(2107, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/image-loading-optimization/module.php', 'wp-content/plugins/elementor/modules/image-loading-optimization/module.php'),
(2108, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/data/controller.php', 'wp-content/plugins/elementor/modules/kit-elements-defaults/data/controller.php'),
(2109, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/import-export.php', 'wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/import-export.php'),
(2110, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/export.php', 'wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/export.php'),
(2111, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/import.php', 'wp-content/plugins/elementor/modules/kit-elements-defaults/import-export/runners/import.php'),
(2112, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/module.php', 'wp-content/plugins/elementor/modules/kit-elements-defaults/module.php'),
(2113, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/usage.php', 'wp-content/plugins/elementor/modules/kit-elements-defaults/usage.php'),
(2114, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/kit-elements-defaults/utils/settings-sanitizer.php', 'wp-content/plugins/elementor/modules/kit-elements-defaults/utils/settings-sanitizer.php'),
(2115, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-empty-view-menu-item.php', 'wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-empty-view-menu-item.php'),
(2116, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-menu-item.php', 'wp-content/plugins/elementor/modules/landing-pages/admin-menu-items/landing-pages-menu-item.php'),
(2117, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/documents/landing-page.php', 'wp-content/plugins/elementor/modules/landing-pages/documents/landing-page.php'),
(2118, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/landing-pages/module.php', 'wp-content/plugins/elementor/modules/landing-pages/module.php'),
(2119, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/lazyload/module.php', 'wp-content/plugins/elementor/modules/lazyload/module.php'),
(2120, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/container.php', 'wp-content/plugins/elementor/modules/library/documents/container.php'),
(2121, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/library-document.php', 'wp-content/plugins/elementor/modules/library/documents/library-document.php'),
(2122, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/not-supported.php', 'wp-content/plugins/elementor/modules/library/documents/not-supported.php'),
(2123, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/page.php', 'wp-content/plugins/elementor/modules/library/documents/page.php'),
(2124, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/documents/section.php', 'wp-content/plugins/elementor/modules/library/documents/section.php'),
(2125, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/module.php', 'wp-content/plugins/elementor/modules/library/module.php'),
(2126, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/traits/library.php', 'wp-content/plugins/elementor/modules/library/traits/library.php'),
(2127, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/library/user-favorites.php', 'wp-content/plugins/elementor/modules/library/user-favorites.php'),
(2128, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/base/widget-link-in-bio-base.php', 'wp-content/plugins/elementor/modules/link-in-bio/base/widget-link-in-bio-base.php'),
(2129, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/classes/render/core-render.php', 'wp-content/plugins/elementor/modules/link-in-bio/classes/render/core-render.php'),
(2130, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/classes/render/render-base.php', 'wp-content/plugins/elementor/modules/link-in-bio/classes/render/render-base.php'),
(2131, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/module.php', 'wp-content/plugins/elementor/modules/link-in-bio/module.php'),
(2132, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/link-in-bio/widgets/link-in-bio.php', 'wp-content/plugins/elementor/modules/link-in-bio/widgets/link-in-bio.php'),
(2133, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-accordion/module.php', 'wp-content/plugins/elementor/modules/nested-accordion/module.php'),
(2134, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-accordion/widgets/nested-accordion.php', 'wp-content/plugins/elementor/modules/nested-accordion/widgets/nested-accordion.php'),
(2135, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-elements/base/widget-nested-base.php', 'wp-content/plugins/elementor/modules/nested-elements/base/widget-nested-base.php'),
(2136, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-elements/controls/control-nested-repeater.php', 'wp-content/plugins/elementor/modules/nested-elements/controls/control-nested-repeater.php'),
(2137, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-elements/module.php', 'wp-content/plugins/elementor/modules/nested-elements/module.php'),
(2138, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-tabs/module.php', 'wp-content/plugins/elementor/modules/nested-tabs/module.php'),
(2139, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/nested-tabs/widgets/nested-tabs.php', 'wp-content/plugins/elementor/modules/nested-tabs/widgets/nested-tabs.php'),
(2140, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notes/module.php', 'wp-content/plugins/elementor/modules/notes/module.php'),
(2141, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notifications/api.php', 'wp-content/plugins/elementor/modules/notifications/api.php'),
(2142, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notifications/module.php', 'wp-content/plugins/elementor/modules/notifications/module.php'),
(2143, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/notifications/options.php', 'wp-content/plugins/elementor/modules/notifications/options.php'),
(2144, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/page-templates/module.php', 'wp-content/plugins/elementor/modules/page-templates/module.php'),
(2145, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/page-templates/templates/canvas.php', 'wp-content/plugins/elementor/modules/page-templates/templates/canvas.php'),
(2146, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/page-templates/templates/header-footer.php', 'wp-content/plugins/elementor/modules/page-templates/templates/header-footer.php'),
(2147, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/performance-lab/module.php', 'wp-content/plugins/elementor/modules/performance-lab/module.php'),
(2148, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-item.php'),
(2149, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-template.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/base-promotion-template.php'),
(2150, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-code-promotion-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-code-promotion-item.php'),
(2151, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-fonts-promotion-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-fonts-promotion-item.php'),
(2152, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-icons-promotion-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/custom-icons-promotion-item.php'),
(2153, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/form-submissions-promotion-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/form-submissions-promotion-item.php'),
(2154, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/go-pro-promotion-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/go-pro-promotion-item.php'),
(2155, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/interfaces/promotion-menu-item.php'),
(2156, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/admin-menu-items/popups-promotion-item.php', 'wp-content/plugins/elementor/modules/promotions/admin-menu-items/popups-promotion-item.php'),
(2157, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/controls/promotion-control.php', 'wp-content/plugins/elementor/modules/promotions/controls/promotion-control.php'),
(2158, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/module.php', 'wp-content/plugins/elementor/modules/promotions/module.php'),
(2159, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/promotion-data.php', 'wp-content/plugins/elementor/modules/promotions/promotion-data.php'),
(2160, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/promotions/widgets/pro-widget-promotion.php', 'wp-content/plugins/elementor/modules/promotions/widgets/pro-widget-promotion.php'),
(2161, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/safe-mode/module.php', 'wp-content/plugins/elementor/modules/safe-mode/module.php'),
(2162, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/safe-mode/mu-plugin/elementor-safe-mode.php', 'wp-content/plugins/elementor/modules/safe-mode/mu-plugin/elementor-safe-mode.php'),
(2163, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/shapes/module.php', 'wp-content/plugins/elementor/modules/shapes/module.php'),
(2164, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/shapes/widgets/text-path.php', 'wp-content/plugins/elementor/modules/shapes/widgets/text-path.php'),
(2165, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/controller.php', 'wp-content/plugins/elementor/modules/site-navigation/data/controller.php'),
(2166, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/add-new-post.php', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/add-new-post.php'),
(2167, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/duplicate-post.php', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/duplicate-post.php'),
(2168, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/homepage.php', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/homepage.php'),
(2169, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/data/endpoints/recent-posts.php', 'wp-content/plugins/elementor/modules/site-navigation/data/endpoints/recent-posts.php'),
(2170, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/module.php', 'wp-content/plugins/elementor/modules/site-navigation/module.php'),
(2171, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/site-navigation/rest-fields/page-user-can.php', 'wp-content/plugins/elementor/modules/site-navigation/rest-fields/page-user-can.php'),
(2172, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/styleguide/controls/switcher.php', 'wp-content/plugins/elementor/modules/styleguide/controls/switcher.php'),
(2173, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/styleguide/module.php', 'wp-content/plugins/elementor/modules/styleguide/module.php'),
(2174, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/helpers/model-helper.php', 'wp-content/plugins/elementor/modules/system-info/helpers/model-helper.php'),
(2175, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/module.php', 'wp-content/plugins/elementor/modules/system-info/module.php'),
(2176, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/base-plugin.php', 'wp-content/plugins/elementor/modules/system-info/reporters/base-plugin.php'),
(2177, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/base.php', 'wp-content/plugins/elementor/modules/system-info/reporters/base.php'),
(2178, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/mu-plugins.php', 'wp-content/plugins/elementor/modules/system-info/reporters/mu-plugins.php'),
(2179, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/network-plugins.php', 'wp-content/plugins/elementor/modules/system-info/reporters/network-plugins.php'),
(2180, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/plugins.php', 'wp-content/plugins/elementor/modules/system-info/reporters/plugins.php'),
(2181, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/server.php', 'wp-content/plugins/elementor/modules/system-info/reporters/server.php'),
(2182, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/theme.php', 'wp-content/plugins/elementor/modules/system-info/reporters/theme.php'),
(2183, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/user.php', 'wp-content/plugins/elementor/modules/system-info/reporters/user.php'),
(2184, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/reporters/wordpress.php', 'wp-content/plugins/elementor/modules/system-info/reporters/wordpress.php'),
(2185, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/system-info-menu-item.php', 'wp-content/plugins/elementor/modules/system-info/system-info-menu-item.php'),
(2186, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/templates/html.php', 'wp-content/plugins/elementor/modules/system-info/templates/html.php'),
(2187, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/system-info/templates/raw.php', 'wp-content/plugins/elementor/modules/system-info/templates/raw.php'),
(2188, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/usage/module.php', 'wp-content/plugins/elementor/modules/usage/module.php'),
(2189, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/usage/settings-reporter.php', 'wp-content/plugins/elementor/modules/usage/settings-reporter.php'),
(2190, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/usage/usage-reporter.php', 'wp-content/plugins/elementor/modules/usage/usage-reporter.php'),
(2191, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wc-product-editor/module.php', 'wp-content/plugins/elementor/modules/wc-product-editor/module.php'),
(2192, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/web-cli/module.php', 'wp-content/plugins/elementor/modules/web-cli/module.php'),
(2193, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/cli-logger.php', 'wp-content/plugins/elementor/modules/wp-cli/cli-logger.php'),
(2194, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/command.php', 'wp-content/plugins/elementor/modules/wp-cli/command.php'),
(2195, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/library.php', 'wp-content/plugins/elementor/modules/wp-cli/library.php'),
(2196, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/module.php', 'wp-content/plugins/elementor/modules/wp-cli/module.php'),
(2197, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-cli/update.php', 'wp-content/plugins/elementor/modules/wp-cli/update.php'),
(2198, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/elementor-post-meta.php', 'wp-content/plugins/elementor/modules/wp-rest/classes/elementor-post-meta.php'),
(2199, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/elementor-settings.php', 'wp-content/plugins/elementor/modules/wp-rest/classes/elementor-settings.php'),
(2200, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/elementor-user-meta.php', 'wp-content/plugins/elementor/modules/wp-rest/classes/elementor-user-meta.php'),
(2201, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/classes/wp-post.php', 'wp-content/plugins/elementor/modules/wp-rest/classes/wp-post.php'),
(2202, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/modules/wp-rest/module.php', 'wp-content/plugins/elementor/modules/wp-rest/module.php'),
(2203, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/readme.txt', 'wp-content/plugins/elementor/readme.txt'),
(2204, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/run-on-linux.js', 'wp-content/plugins/elementor/run-on-linux.js'),
(2205, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/autoload.php', 'wp-content/plugins/elementor/vendor/autoload.php'),
(2206, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/ClassLoader.php', 'wp-content/plugins/elementor/vendor/composer/ClassLoader.php'),
(2207, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/InstalledVersions.php', 'wp-content/plugins/elementor/vendor/composer/InstalledVersions.php'),
(2208, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/LICENSE', 'wp-content/plugins/elementor/vendor/composer/LICENSE'),
(2209, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_classmap.php', 'wp-content/plugins/elementor/vendor/composer/autoload_classmap.php'),
(2210, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_namespaces.php', 'wp-content/plugins/elementor/vendor/composer/autoload_namespaces.php'),
(2211, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_psr4.php', 'wp-content/plugins/elementor/vendor/composer/autoload_psr4.php'),
(2212, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_real.php', 'wp-content/plugins/elementor/vendor/composer/autoload_real.php'),
(2213, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/autoload_static.php', 'wp-content/plugins/elementor/vendor/composer/autoload_static.php'),
(2214, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/installed.json', 'wp-content/plugins/elementor/vendor/composer/installed.json'),
(2215, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/installed.php', 'wp-content/plugins/elementor/vendor/composer/installed.php'),
(2216, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor/composer/platform_check.php', 'wp-content/plugins/elementor/vendor/composer/platform_check.php'),
(2217, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/composer.json', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/composer.json'),
(2218, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Serializable.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Serializable.php'),
(2219, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Signer.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Contracts/Signer.php'),
(2220, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/InvalidSignatureException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/InvalidSignatureException.php'),
(2221, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php'),
(2222, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Exceptions/PhpVersionNotSupportedException.php'),
(2223, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/SerializableClosure.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/SerializableClosure.php'),
(2224, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Native.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Native.php'),
(2225, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Signed.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Serializers/Signed.php'),
(2226, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Signers/Hmac.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Signers/Hmac.php'),
(2227, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureScope.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureScope.php'),
(2228, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureStream.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ClosureStream.php'),
(2229, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ReflectionClosure.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/ReflectionClosure.php'),
(2230, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/SelfReference.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/Support/SelfReference.php'),
(2231, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/UnsignedSerializableClosure.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/laravel/serializable-closure/src/UnsignedSerializableClosure.php'),
(2232, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/LICENSE', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/LICENSE'),
(2233, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/composer.json', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/composer.json'),
(2234, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/CallableResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/CallableResolver.php'),
(2235, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/InvocationException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/InvocationException.php'),
(2236, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotCallableException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotCallableException.php'),
(2237, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotEnoughParametersException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Exception/NotEnoughParametersException.php'),
(2238, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Invoker.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Invoker.php'),
(2239, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/InvokerInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/InvokerInterface.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(2240, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/AssociativeArrayResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/AssociativeArrayResolver.php'),
(2241, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/ParameterNameContainerResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/ParameterNameContainerResolver.php'),
(2242, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/TypeHintContainerResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/Container/TypeHintContainerResolver.php'),
(2243, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/DefaultValueResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/DefaultValueResolver.php'),
(2244, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/NumericArrayResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/NumericArrayResolver.php'),
(2245, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ParameterResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ParameterResolver.php'),
(2246, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ResolverChain.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/ResolverChain.php'),
(2247, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/TypeHintResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/ParameterResolver/TypeHintResolver.php'),
(2248, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Reflection/CallableReflection.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/invoker/src/Reflection/CallableReflection.php'),
(2249, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/LICENSE', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/LICENSE'),
(2250, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/composer.json', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/composer.json'),
(2251, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Inject.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Inject.php'),
(2252, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Injectable.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Annotation/Injectable.php'),
(2253, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/CompiledContainer.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/CompiledContainer.php'),
(2254, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Compiler.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Compiler.php'),
(2255, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/ObjectCreationCompiler.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/ObjectCreationCompiler.php'),
(2256, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/RequestedEntryHolder.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/RequestedEntryHolder.php'),
(2257, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Template.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/Template.php'),
(2258, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Container.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Container.php'),
(2259, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/ContainerBuilder.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/ContainerBuilder.php'),
(2260, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinition.php'),
(2261, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinitionExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ArrayDefinitionExtension.php'),
(2262, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/AutowireDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/AutowireDefinition.php'),
(2263, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/DecoratorDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/DecoratorDefinition.php'),
(2264, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Definition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Definition.php'),
(2265, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Dumper/ObjectDefinitionDumper.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Dumper/ObjectDefinitionDumper.php'),
(2266, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/EnvironmentVariableDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/EnvironmentVariableDefinition.php'),
(2267, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidAnnotation.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidAnnotation.php'),
(2268, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Exception/InvalidDefinition.php'),
(2269, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ExtendsPreviousDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ExtendsPreviousDefinition.php'),
(2270, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/FactoryDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/FactoryDefinition.php'),
(2271, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/AutowireDefinitionHelper.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/AutowireDefinitionHelper.php'),
(2272, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/CreateDefinitionHelper.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/CreateDefinitionHelper.php'),
(2273, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/DefinitionHelper.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/DefinitionHelper.php'),
(2274, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/FactoryDefinitionHelper.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Helper/FactoryDefinitionHelper.php'),
(2275, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/InstanceDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/InstanceDefinition.php'),
(2276, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/MethodInjection.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/MethodInjection.php'),
(2277, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/PropertyInjection.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition/PropertyInjection.php'),
(2278, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ObjectDefinition.php'),
(2279, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Reference.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Reference.php'),
(2280, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ArrayResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ArrayResolver.php'),
(2281, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DecoratorResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DecoratorResolver.php'),
(2282, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DefinitionResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/DefinitionResolver.php'),
(2283, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/EnvironmentVariableResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/EnvironmentVariableResolver.php'),
(2284, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/FactoryResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/FactoryResolver.php'),
(2285, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/InstanceInjector.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/InstanceInjector.php'),
(2286, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ObjectCreator.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ObjectCreator.php'),
(2287, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ParameterResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ParameterResolver.php'),
(2288, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ResolverDispatcher.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Resolver/ResolverDispatcher.php'),
(2289, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/SelfResolvingDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/SelfResolvingDefinition.php'),
(2290, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/AnnotationBasedAutowiring.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/AnnotationBasedAutowiring.php'),
(2291, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/Autowiring.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/Autowiring.php'),
(2292, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionArray.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionArray.php'),
(2293, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionFile.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionFile.php'),
(2294, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionNormalizer.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionNormalizer.php'),
(2295, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionSource.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/DefinitionSource.php'),
(2296, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/MutableDefinitionSource.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/MutableDefinitionSource.php'),
(2297, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/NoAutowiring.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/NoAutowiring.php'),
(2298, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/ReflectionBasedAutowiring.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/ReflectionBasedAutowiring.php'),
(2299, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceCache.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceCache.php'),
(2300, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceChain.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/Source/SourceChain.php'),
(2301, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/StringDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/StringDefinition.php'),
(2302, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ValueDefinition.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Definition/ValueDefinition.php'),
(2303, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/DependencyException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/DependencyException.php'),
(2304, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Factory/RequestedEntry.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Factory/RequestedEntry.php'),
(2305, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/FactoryInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/FactoryInterface.php'),
(2306, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/DefinitionParameterResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/DefinitionParameterResolver.php'),
(2307, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/FactoryParameterResolver.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Invoker/FactoryParameterResolver.php'),
(2308, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/NotFoundException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/NotFoundException.php'),
(2309, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Proxy/ProxyFactory.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Proxy/ProxyFactory.php'),
(2310, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/functions.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/functions.php'),
(2311, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/LICENSE', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/LICENSE'),
(2312, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/composer.json', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/composer.json'),
(2313, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/AnnotationException.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/AnnotationException.php'),
(2314, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpDocReader.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpDocReader.php'),
(2315, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/TokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/TokenParser.php'),
(2316, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/UseStatementParser.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/phpdoc-reader/src/PhpDocReader/PhpParser/UseStatementParser.php'),
(2317, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/LICENSE', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/LICENSE'),
(2318, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/composer.json', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/composer.json'),
(2319, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerExceptionInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerExceptionInterface.php'),
(2320, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/ContainerInterface.php'),
(2321, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/NotFoundExceptionInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/dependency-injection/psr/container/src/NotFoundExceptionInterface.php'),
(2322, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/LICENSE', 'wp-content/plugins/elementor/vendor_prefixed/twig/LICENSE'),
(2323, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/composer.json', 'wp-content/plugins/elementor/vendor_prefixed/twig/composer.json'),
(2324, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Attribute/YieldReady.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Attribute/YieldReady.php'),
(2325, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/CacheInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/CacheInterface.php'),
(2326, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ChainCache.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ChainCache.php'),
(2327, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/FilesystemCache.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/FilesystemCache.php'),
(2328, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/NullCache.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/NullCache.php'),
(2329, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ReadOnlyFilesystemCache.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Cache/ReadOnlyFilesystemCache.php'),
(2330, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Compiler.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Compiler.php'),
(2331, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Environment.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Environment.php'),
(2332, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/Error.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/Error.php'),
(2333, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/LoaderError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/LoaderError.php'),
(2334, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/RuntimeError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/RuntimeError.php'),
(2335, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/SyntaxError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Error/SyntaxError.php'),
(2336, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/ExpressionParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/ExpressionParser.php'),
(2337, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/AbstractExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/AbstractExtension.php'),
(2338, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/CoreExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/CoreExtension.php'),
(2339, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/DebugExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/DebugExtension.php'),
(2340, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/EscaperExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/EscaperExtension.php'),
(2341, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ExtensionInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ExtensionInterface.php'),
(2342, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/GlobalsInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/GlobalsInterface.php'),
(2343, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/OptimizerExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/OptimizerExtension.php'),
(2344, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ProfilerExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/ProfilerExtension.php'),
(2345, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/RuntimeExtensionInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/RuntimeExtensionInterface.php'),
(2346, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/SandboxExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/SandboxExtension.php'),
(2347, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StagingExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StagingExtension.php'),
(2348, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StringLoaderExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/StringLoaderExtension.php'),
(2349, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/YieldNotReadyExtension.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Extension/YieldNotReadyExtension.php'),
(2350, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/ExtensionSet.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/ExtensionSet.php'),
(2351, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/FileExtensionEscapingStrategy.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/FileExtensionEscapingStrategy.php'),
(2352, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Lexer.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Lexer.php'),
(2353, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ArrayLoader.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ArrayLoader.php'),
(2354, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ChainLoader.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/ChainLoader.php'),
(2355, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/FilesystemLoader.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/FilesystemLoader.php'),
(2356, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/LoaderInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Loader/LoaderInterface.php'),
(2357, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Markup.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Markup.php'),
(2358, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/AutoEscapeNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/AutoEscapeNode.php'),
(2359, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockNode.php'),
(2360, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockReferenceNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BlockReferenceNode.php'),
(2361, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BodyNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/BodyNode.php'),
(2362, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CaptureNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CaptureNode.php'),
(2363, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityCallNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityCallNode.php'),
(2364, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckSecurityNode.php'),
(2365, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckToStringNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/CheckToStringNode.php'),
(2366, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DeprecatedNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DeprecatedNode.php'),
(2367, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DoNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/DoNode.php'),
(2368, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/EmbedNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/EmbedNode.php'),
(2369, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AbstractExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AbstractExpression.php'),
(2370, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrayExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrayExpression.php'),
(2371, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrowFunctionExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ArrowFunctionExpression.php'),
(2372, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AssignNameExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/AssignNameExpression.php'),
(2373, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AbstractBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AbstractBinary.php'),
(2374, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AddBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AddBinary.php'),
(2375, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AndBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/AndBinary.php'),
(2376, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseAndBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseAndBinary.php'),
(2377, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseOrBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseOrBinary.php'),
(2378, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseXorBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/BitwiseXorBinary.php'),
(2379, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ConcatBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ConcatBinary.php'),
(2380, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/DivBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/DivBinary.php'),
(2381, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EndsWithBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EndsWithBinary.php'),
(2382, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EqualBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/EqualBinary.php'),
(2383, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/FloorDivBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/FloorDivBinary.php'),
(2384, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterBinary.php'),
(2385, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterEqualBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/GreaterEqualBinary.php'),
(2386, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasEveryBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasEveryBinary.php'),
(2387, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasSomeBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/HasSomeBinary.php'),
(2388, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/InBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/InBinary.php'),
(2389, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessBinary.php'),
(2390, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessEqualBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/LessEqualBinary.php'),
(2391, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MatchesBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MatchesBinary.php'),
(2392, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ModBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/ModBinary.php'),
(2393, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MulBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/MulBinary.php'),
(2394, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotEqualBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotEqualBinary.php'),
(2395, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotInBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/NotInBinary.php'),
(2396, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/OrBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/OrBinary.php'),
(2397, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/PowerBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/PowerBinary.php'),
(2398, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/RangeBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/RangeBinary.php'),
(2399, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SpaceshipBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SpaceshipBinary.php'),
(2400, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/StartsWithBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/StartsWithBinary.php'),
(2401, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SubBinary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Binary/SubBinary.php'),
(2402, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/BlockReferenceExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/BlockReferenceExpression.php'),
(2403, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/CallExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/CallExpression.php'),
(2404, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConditionalExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConditionalExpression.php'),
(2405, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConstantExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ConstantExpression.php'),
(2406, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/DefaultFilter.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/DefaultFilter.php'),
(2407, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/RawFilter.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Filter/RawFilter.php'),
(2408, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FilterExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FilterExpression.php'),
(2409, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FunctionExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/FunctionExpression.php'),
(2410, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/GetAttrExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/GetAttrExpression.php'),
(2411, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/InlinePrint.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/InlinePrint.php'),
(2412, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/MethodCallExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/MethodCallExpression.php'),
(2413, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NameExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NameExpression.php'),
(2414, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NullCoalesceExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/NullCoalesceExpression.php'),
(2415, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ParentExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/ParentExpression.php'),
(2416, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TempNameExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TempNameExpression.php'),
(2417, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/ConstantTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/ConstantTest.php'),
(2418, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DefinedTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DefinedTest.php'),
(2419, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DivisiblebyTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/DivisiblebyTest.php'),
(2420, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/EvenTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/EvenTest.php'),
(2421, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/NullTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/NullTest.php'),
(2422, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/OddTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/OddTest.php'),
(2423, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/SameasTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Test/SameasTest.php'),
(2424, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TestExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/TestExpression.php'),
(2425, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/AbstractUnary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/AbstractUnary.php'),
(2426, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NegUnary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NegUnary.php'),
(2427, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NotUnary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/NotUnary.php'),
(2428, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/PosUnary.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/Unary/PosUnary.php'),
(2429, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/VariadicExpression.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Expression/VariadicExpression.php'),
(2430, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/FlushNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/FlushNode.php'),
(2431, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForLoopNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForLoopNode.php'),
(2432, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ForNode.php'),
(2433, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IfNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IfNode.php'),
(2434, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ImportNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ImportNode.php'),
(2435, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IncludeNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/IncludeNode.php'),
(2436, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/MacroNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/MacroNode.php'),
(2437, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ModuleNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/ModuleNode.php'),
(2438, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NameDeprecation.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NameDeprecation.php'),
(2439, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Node.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/Node.php'),
(2440, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeCaptureInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeCaptureInterface.php'),
(2441, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeOutputInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/NodeOutputInterface.php'),
(2442, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/PrintNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/PrintNode.php'),
(2443, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SandboxNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SandboxNode.php'),
(2444, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SetNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/SetNode.php'),
(2445, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/TextNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/TextNode.php'),
(2446, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/WithNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Node/WithNode.php'),
(2447, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeTraverser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeTraverser.php'),
(2448, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/AbstractNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/AbstractNodeVisitor.php'),
(2449, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/EscaperNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/EscaperNodeVisitor.php'),
(2450, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php'),
(2451, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/NodeVisitorInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/NodeVisitorInterface.php'),
(2452, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/OptimizerNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/OptimizerNodeVisitor.php'),
(2453, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php'),
(2454, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SandboxNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/SandboxNodeVisitor.php'),
(2455, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/YieldNotReadyNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/NodeVisitor/YieldNotReadyNodeVisitor.php'),
(2456, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Parser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Parser.php'),
(2457, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BaseDumper.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BaseDumper.php'),
(2458, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BlackfireDumper.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/BlackfireDumper.php'),
(2459, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/HtmlDumper.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/HtmlDumper.php'),
(2460, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/TextDumper.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Dumper/TextDumper.php'),
(2461, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/EnterProfileNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/EnterProfileNode.php'),
(2462, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/LeaveProfileNode.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Node/LeaveProfileNode.php'),
(2463, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(2464, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Profile.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Profiler/Profile.php'),
(2465, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/core.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/core.php'),
(2466, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/debug.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/debug.php'),
(2467, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/escaper.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/escaper.php'),
(2468, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/string_loader.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Resources/string_loader.php'),
(2469, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Runtime/EscaperRuntime.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Runtime/EscaperRuntime.php'),
(2470, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/ContainerRuntimeLoader.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/ContainerRuntimeLoader.php'),
(2471, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/FactoryRuntimeLoader.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/FactoryRuntimeLoader.php'),
(2472, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/RuntimeLoaderInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/RuntimeLoader/RuntimeLoaderInterface.php'),
(2473, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityError.php'),
(2474, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFilterError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFilterError.php'),
(2475, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFunctionError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedFunctionError.php'),
(2476, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedMethodError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedMethodError.php'),
(2477, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedPropertyError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedPropertyError.php'),
(2478, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedTagError.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityNotAllowedTagError.php'),
(2479, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicy.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicy.php'),
(2480, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicyInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SecurityPolicyInterface.php'),
(2481, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SourcePolicyInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Sandbox/SourcePolicyInterface.php'),
(2482, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Source.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Source.php'),
(2483, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Template.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Template.php'),
(2484, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TemplateWrapper.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TemplateWrapper.php'),
(2485, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/IntegrationTestCase.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/IntegrationTestCase.php'),
(2486, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/NodeTestCase.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Test/NodeTestCase.php'),
(2487, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Token.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Token.php'),
(2488, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AbstractTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AbstractTokenParser.php'),
(2489, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ApplyTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ApplyTokenParser.php'),
(2490, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AutoEscapeTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/AutoEscapeTokenParser.php'),
(2491, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/BlockTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/BlockTokenParser.php'),
(2492, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DeprecatedTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DeprecatedTokenParser.php'),
(2493, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DoTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/DoTokenParser.php'),
(2494, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/EmbedTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/EmbedTokenParser.php'),
(2495, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ExtendsTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ExtendsTokenParser.php'),
(2496, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FlushTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FlushTokenParser.php'),
(2497, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ForTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ForTokenParser.php'),
(2498, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FromTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/FromTokenParser.php'),
(2499, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IfTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IfTokenParser.php'),
(2500, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ImportTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/ImportTokenParser.php'),
(2501, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IncludeTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/IncludeTokenParser.php'),
(2502, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/MacroTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/MacroTokenParser.php'),
(2503, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SandboxTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SandboxTokenParser.php'),
(2504, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SetTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/SetTokenParser.php'),
(2505, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/TokenParserInterface.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/TokenParserInterface.php'),
(2506, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/UseTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/UseTokenParser.php'),
(2507, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/WithTokenParser.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenParser/WithTokenParser.php'),
(2508, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenStream.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TokenStream.php'),
(2509, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFilter.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFilter.php'),
(2510, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFunction.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigFunction.php'),
(2511, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigTest.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/TwigTest.php'),
(2512, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/DeprecationCollector.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/DeprecationCollector.php'),
(2513, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/ReflectionCallable.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/ReflectionCallable.php'),
(2514, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/TemplateDirIterator.php', 'wp-content/plugins/elementor/vendor_prefixed/twig/src/Util/TemplateDirIterator.php'),
(2515, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js'),
(2516, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js.LICENSE.txt', 'wp-content/plugins/elementor-pro/assets/js/60745ddf42fde6647dbc.bundle.min.js.LICENSE.txt'),
(2517, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/98217e0c00e1f53421ef.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/98217e0c00e1f53421ef.bundle.js'),
(2518, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/admin.js', 'wp-content/plugins/elementor-pro/assets/js/admin.js'),
(2519, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/admin.min.js', 'wp-content/plugins/elementor-pro/assets/js/admin.min.js'),
(2520, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/animated-headline.d814d12739fd7c744896.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/animated-headline.d814d12739fd7c744896.bundle.js'),
(2521, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/animated-headline.ffb4bb4ce1b16b11446d.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/animated-headline.ffb4bb4ce1b16b11446d.bundle.min.js'),
(2522, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/app.js', 'wp-content/plugins/elementor-pro/assets/js/app.js'),
(2523, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/app.min.js', 'wp-content/plugins/elementor-pro/assets/js/app.min.js'),
(2524, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/archive-posts.2d3a4fa58002c7735240.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/archive-posts.2d3a4fa58002c7735240.bundle.js'),
(2525, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/archive-posts.80f1139e64eb8bd1a74a.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/archive-posts.80f1139e64eb8bd1a74a.bundle.min.js'),
(2526, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/b83b4e72565adbc65b6e.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/b83b4e72565adbc65b6e.bundle.min.js'),
(2527, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/carousel.49e271b0dd16dd95d00b.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/carousel.49e271b0dd16dd95d00b.bundle.js'),
(2528, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/carousel.9b02b45d7826c1c48f33.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/carousel.9b02b45d7826c1c48f33.bundle.min.js'),
(2529, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/code-highlight.28a979661569ddbbf60d.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/code-highlight.28a979661569ddbbf60d.bundle.min.js'),
(2530, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/code-highlight.bd9b459b2670f6512f56.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/code-highlight.bd9b459b2670f6512f56.bundle.js'),
(2531, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/countdown.14ae9e6521e5309f2b20.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/countdown.14ae9e6521e5309f2b20.bundle.js'),
(2532, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/countdown.b0ef6392ec4ff09ca2f2.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/countdown.b0ef6392ec4ff09ca2f2.bundle.min.js'),
(2533, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/custom-code.js', 'wp-content/plugins/elementor-pro/assets/js/custom-code.js'),
(2534, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/custom-code.min.js', 'wp-content/plugins/elementor-pro/assets/js/custom-code.min.js'),
(2535, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/e1314d8e113e32e00c20.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/e1314d8e113e32e00c20.bundle.js'),
(2536, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/editor.js', 'wp-content/plugins/elementor-pro/assets/js/editor.js'),
(2537, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/editor.min.js', 'wp-content/plugins/elementor-pro/assets/js/editor.min.js'),
(2538, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/elements-handlers.js', 'wp-content/plugins/elementor-pro/assets/js/elements-handlers.js'),
(2539, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js', 'wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js'),
(2540, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form-submission-admin.js', 'wp-content/plugins/elementor-pro/assets/js/form-submission-admin.js'),
(2541, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form-submission-admin.min.js', 'wp-content/plugins/elementor-pro/assets/js/form-submission-admin.min.js'),
(2542, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form.1161490412c4fa9ebfc6.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/form.1161490412c4fa9ebfc6.bundle.js'),
(2543, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/form.72b77b99d67b130634d2.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/form.72b77b99d67b130634d2.bundle.min.js'),
(2544, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/frontend.js', 'wp-content/plugins/elementor-pro/assets/js/frontend.js'),
(2545, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/frontend.min.js', 'wp-content/plugins/elementor-pro/assets/js/frontend.min.js'),
(2546, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/gallery.1573e391054ea0977a1f.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/gallery.1573e391054ea0977a1f.bundle.js'),
(2547, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/gallery.8ca9a354ce039d1ba641.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/gallery.8ca9a354ce039d1ba641.bundle.min.js'),
(2548, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/hotspot.6ab1751404c381bfe390.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/hotspot.6ab1751404c381bfe390.bundle.min.js'),
(2549, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/hotspot.d43ef85fb9e56c4414f4.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/hotspot.d43ef85fb9e56c4414f4.bundle.js'),
(2550, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js'),
(2551, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js.LICENSE.txt', 'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.99a5b769619f50a6cb60.bundle.min.js.LICENSE.txt'),
(2552, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/jszip.vendor.a3c65615c1de5560962d.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/jszip.vendor.a3c65615c1de5560962d.bundle.js'),
(2553, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/load-more.064e7e640e7ef9c3fc30.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/load-more.064e7e640e7ef9c3fc30.bundle.min.js'),
(2554, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/load-more.8f98bed743a24a6c0d3a.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/load-more.8f98bed743a24a6c0d3a.bundle.js'),
(2555, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-carousel.4e8fd6593adbba21698e.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/loop-carousel.4e8fd6593adbba21698e.bundle.min.js'),
(2556, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-carousel.8c8c442ebf9839e07d4e.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/loop-carousel.8c8c442ebf9839e07d4e.bundle.js'),
(2557, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.1b99c4c759d36bf88cb2.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.1b99c4c759d36bf88cb2.bundle.min.js'),
(2558, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.b7b52289dc112ded05c0.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/loop-filter-editor.b7b52289dc112ded05c0.bundle.js'),
(2559, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop.a9bed2dcd86eddf71249.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/loop.a9bed2dcd86eddf71249.bundle.min.js'),
(2560, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/loop.cfa59b67362d5bf08739.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/loop.cfa59b67362d5bf08739.bundle.js'),
(2561, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/lottie.565b778d23c04461c4ea.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/lottie.565b778d23c04461c4ea.bundle.min.js'),
(2562, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/lottie.630a998405ebf4420b6f.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/lottie.630a998405ebf4420b6f.bundle.js'),
(2563, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/media-carousel.a98799d9f5a454b751e1.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/media-carousel.a98799d9f5a454b751e1.bundle.js'),
(2564, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/media-carousel.aca2224ef13e6f999011.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/media-carousel.aca2224ef13e6f999011.bundle.min.js'),
(2565, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.d1546764ef2c2b02bcd4.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.d1546764ef2c2b02bcd4.bundle.min.js'),
(2566, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.de9dd6d5a71e58af98ef.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-editor.de9dd6d5a71e58af98ef.bundle.js'),
(2567, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.749b8c1dc8bd8c9b37d2.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.749b8c1dc8bd8c9b37d2.bundle.js'),
(2568, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.99000844c609182f2303.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/mega-menu-stretch-content.99000844c609182f2303.bundle.min.js'),
(2569, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu.6a41b17ca3362b2df95d.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/mega-menu.6a41b17ca3362b2df95d.bundle.js'),
(2570, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/mega-menu.e835faaf6e328f296a63.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/mega-menu.e835faaf6e328f296a63.bundle.min.js'),
(2571, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nav-menu.3347cc64f9b3d71f7f0c.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/nav-menu.3347cc64f9b3d71f7f0c.bundle.min.js'),
(2572, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nav-menu.ded2ef1815c81841b6b8.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/nav-menu.ded2ef1815c81841b6b8.bundle.js'),
(2573, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.04e1965a317cbb6d22df.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.04e1965a317cbb6d22df.bundle.js'),
(2574, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.d8367a1522af6556bd92.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel-editor.d8367a1522af6556bd92.bundle.min.js'),
(2575, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel.9145d6891784d5818672.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel.9145d6891784d5818672.bundle.min.js'),
(2576, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/nested-carousel.bd618e5f000147859de7.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/nested-carousel.bd618e5f000147859de7.bundle.js'),
(2577, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/173.min.js', 'wp-content/plugins/elementor-pro/assets/js/notes/173.min.js'),
(2578, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/173.min.js.LICENSE.txt', 'wp-content/plugins/elementor-pro/assets/js/notes/173.min.js.LICENSE.txt'),
(2579, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.js', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.js'),
(2580, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js'),
(2581, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js.LICENSE.txt', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app-initiator.min.js.LICENSE.txt'),
(2582, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app.js', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app.js'),
(2583, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes-app.min.js', 'wp-content/plugins/elementor-pro/assets/js/notes/notes-app.min.js'),
(2584, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes.js', 'wp-content/plugins/elementor-pro/assets/js/notes/notes.js'),
(2585, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js', 'wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js'),
(2586, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js.LICENSE.txt', 'wp-content/plugins/elementor-pro/assets/js/notes/notes.min.js.LICENSE.txt'),
(2587, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/notes/vendors-node_modules_radix-ui_react-alert-dialog_dist_index_module_js-node_modules_radix-ui_r-c71607.js', 'wp-content/plugins/elementor-pro/assets/js/notes/vendors-node_modules_radix-ui_react-alert-dialog_dist_index_module_js-node_modules_radix-ui_r-c71607.js'),
(2588, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.asset.php', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.asset.php'),
(2589, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.js', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.js'),
(2590, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.min.js', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.min.js'),
(2591, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.strings.js', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-documents-extended.strings.js'),
(2592, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.asset.php', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.asset.php'),
(2593, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.js', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.js'),
(2594, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.min.js', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.min.js'),
(2595, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.strings.js', 'wp-content/plugins/elementor-pro/assets/js/packages/editor-site-navigation-extended.strings.js'),
(2596, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/packages/loader.php', 'wp-content/plugins/elementor-pro/assets/js/packages/loader.php'),
(2597, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.69f365c96dc0120de70b.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.69f365c96dc0120de70b.bundle.min.js'),
(2598, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.930bfd9119ee62d5ccd6.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/page-transitions-editor.930bfd9119ee62d5ccd6.bundle.js'),
(2599, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions.js', 'wp-content/plugins/elementor-pro/assets/js/page-transitions.js'),
(2600, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/page-transitions.min.js', 'wp-content/plugins/elementor-pro/assets/js/page-transitions.min.js'),
(2601, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/paypal-button.0b0a646654a59ebd13a8.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/paypal-button.0b0a646654a59ebd13a8.bundle.js'),
(2602, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/paypal-button.3d0d5af7df85963df32c.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/paypal-button.3d0d5af7df85963df32c.bundle.min.js'),
(2603, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/popup.397c2882052136db7ee0.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/popup.397c2882052136db7ee0.bundle.js'),
(2604, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/popup.483b906ddaa1af17ff14.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/popup.483b906ddaa1af17ff14.bundle.min.js'),
(2605, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/portfolio.042905bde20a1afccada.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/portfolio.042905bde20a1afccada.bundle.min.js'),
(2606, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/portfolio.47c0bf4b3576c66f1b1a.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/portfolio.47c0bf4b3576c66f1b1a.bundle.js'),
(2607, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/posts.72468c8555693b196f98.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/posts.72468c8555693b196f98.bundle.js'),
(2608, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/posts.e33113a212454e383747.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/posts.e33113a212454e383747.bundle.min.js'),
(2609, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.js', 'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.js'),
(2610, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js', 'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js'),
(2611, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js.LICENSE.txt', 'wp-content/plugins/elementor-pro/assets/js/preloaded-elements-handlers.min.js.LICENSE.txt'),
(2612, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preview.js', 'wp-content/plugins/elementor-pro/assets/js/preview.js'),
(2613, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/preview.min.js', 'wp-content/plugins/elementor-pro/assets/js/preview.min.js'),
(2614, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.023d7d31fbf96c3dbdfc.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.023d7d31fbf96c3dbdfc.bundle.min.js'),
(2615, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.39fbaae6c856c483b4b4.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/product-add-to-cart.39fbaae6c856c483b4b4.bundle.js'),
(2616, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/progress-tracker.3424c0ac2b2c8da47033.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/progress-tracker.3424c0ac2b2c8da47033.bundle.js'),
(2617, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/progress-tracker.e19e2547639d7d9dac17.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/progress-tracker.e19e2547639d7d9dac17.bundle.min.js'),
(2618, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/qunit-tests.js', 'wp-content/plugins/elementor-pro/assets/js/qunit-tests.js'),
(2619, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/qunit-tests.min.js', 'wp-content/plugins/elementor-pro/assets/js/qunit-tests.min.js'),
(2620, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/screenshot.js', 'wp-content/plugins/elementor-pro/assets/js/screenshot.js'),
(2621, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/screenshot.min.js', 'wp-content/plugins/elementor-pro/assets/js/screenshot.min.js'),
(2622, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/search-form.416aa432fdfe2bcfe9b5.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/search-form.416aa432fdfe2bcfe9b5.bundle.js'),
(2623, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/search-form.6eb419c467197ca411a7.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/search-form.6eb419c467197ca411a7.bundle.min.js'),
(2624, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/share-buttons.81497e7fccd4fa77b6b9.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/share-buttons.81497e7fccd4fa77b6b9.bundle.min.js'),
(2625, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/share-buttons.c958afb760bce7436ba0.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/share-buttons.c958afb760bce7436ba0.bundle.js'),
(2626, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/slides.0a31b946f157107ba4a2.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/slides.0a31b946f157107ba4a2.bundle.js'),
(2627, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/slides.fb6b9afd278bb9c5e75b.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/slides.fb6b9afd278bb9c5e75b.bundle.min.js'),
(2628, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/social.2d2e44e8608690943f29.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/social.2d2e44e8608690943f29.bundle.min.js'),
(2629, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/social.68fec39648b9a03c6275.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/social.68fec39648b9a03c6275.bundle.js'),
(2630, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/stripe-button.0b77acd00b7163edd0ec.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/stripe-button.0b77acd00b7163edd0ec.bundle.js'),
(2631, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/stripe-button.2acbca466dfeb9585680.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/stripe-button.2acbca466dfeb9585680.bundle.min.js'),
(2632, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/table-of-contents.4c244acf62929782146e.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/table-of-contents.4c244acf62929782146e.bundle.min.js'),
(2633, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/table-of-contents.a6bbe930b65f39ccb74b.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/table-of-contents.a6bbe930b65f39ccb74b.bundle.js'),
(2634, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.9df78f10e131a7423313.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.9df78f10e131a7423313.bundle.min.js'),
(2635, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.f2f989f4cb7ee7582ee7.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/taxonomy-filter.f2f989f4cb7ee7582ee7.bundle.js'),
(2636, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/video-playlist.1eaa6f5cb62ea2d58265.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/video-playlist.1eaa6f5cb62ea2d58265.bundle.js'),
(2637, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/video-playlist.74fca1f2470fa6474595.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/video-playlist.74fca1f2470fa6474595.bundle.min.js'),
(2638, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js', 'wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.js'),
(2639, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js', 'wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js'),
(2640, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.07b1efa10b4a0c3db9f6.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.07b1efa10b4a0c3db9f6.bundle.js'),
(2641, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.fc30c6cb753d4098eff5.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-cart.fc30c6cb753d4098eff5.bundle.min.js'),
(2642, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.b18af78282979b6f74e4.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.b18af78282979b6f74e4.bundle.min.js'),
(2643, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.bf88689aec2ee294a5e8.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-checkout-page.bf88689aec2ee294a5e8.bundle.js'),
(2644, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.cecfa624e2d23a156519.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.cecfa624e2d23a156519.bundle.js'),
(2645, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.faa7b80e9ba9e5072070.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-menu-cart.faa7b80e9ba9e5072070.bundle.min.js'),
(2646, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.355b00c58fb73e92a0bb.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.355b00c58fb73e92a0bb.bundle.js'),
(2647, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.3ee10d01e625dad87f73.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-my-account.3ee10d01e625dad87f73.bundle.min.js'),
(2648, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.d803ba1deaf96eb007fc.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.d803ba1deaf96eb007fc.bundle.js'),
(2649, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.da27b22c491f7cbe9158.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-notices.da27b22c491f7cbe9158.bundle.min.js'),
(2650, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.40bd4441fdc065587324.bundle.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.40bd4441fdc065587324.bundle.js'),
(2651, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.46445ab1120a8c28c05c.bundle.min.js', 'wp-content/plugins/elementor-pro/assets/js/woocommerce-purchase-summary.46445ab1120a8c28c05c.bundle.min.js'),
(2652, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.js', 'wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.js'),
(2653, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.min.js', 'wp-content/plugins/elementor-pro/assets/lib/dom-to-image/js/dom-to-image.min.js'),
(2654, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/brands.js', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/brands.js'),
(2655, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/duotone.js', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/duotone.js'),
(2656, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/light.js', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/light.js'),
(2657, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/regular.js', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/regular.js'),
(2658, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/solid.js', 'wp-content/plugins/elementor-pro/assets/lib/font-awesome-pro/solid.js'),
(2659, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.js', 'wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.js'),
(2660, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.min.js', 'wp-content/plugins/elementor-pro/assets/lib/html2canvas/js/html2canvas.min.js'),
(2661, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.js', 'wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.js'),
(2662, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.min.js', 'wp-content/plugins/elementor-pro/assets/lib/instant-page/instant-page.min.js'),
(2663, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.js', 'wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.js'),
(2664, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js', 'wp-content/plugins/elementor-pro/assets/lib/lottie/lottie.min.js'),
(2665, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js', 'wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.js'),
(2666, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js', 'wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js'),
(2667, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.js', 'wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.js'),
(2668, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js', 'wp-content/plugins/elementor-pro/assets/lib/sticky/jquery.sticky.min.js'),
(2669, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/base-carousel-trait.php', 'wp-content/plugins/elementor-pro/base/base-carousel-trait.php'),
(2670, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/base-widget-trait.php', 'wp-content/plugins/elementor-pro/base/base-widget-trait.php'),
(2671, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/base-widget.php', 'wp-content/plugins/elementor-pro/base/base-widget.php'),
(2672, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/module-base.php', 'wp-content/plugins/elementor-pro/base/module-base.php'),
(2673, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/base/on-import-trait.php', 'wp-content/plugins/elementor-pro/base/on-import-trait.php'),
(2674, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/admin/admin.php', 'wp-content/plugins/elementor-pro/core/admin/admin.php'),
(2675, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/admin/canary-deployment.php', 'wp-content/plugins/elementor-pro/core/admin/canary-deployment.php'),
(2676, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/app.php', 'wp-content/plugins/elementor-pro/core/app/app.php'),
(2677, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/hooks/use-feature-lock.js', 'wp-content/plugins/elementor-pro/core/app/assets/js/hooks/use-feature-lock.js'),
(2678, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/index.js', 'wp-content/plugins/elementor-pro/core/app/assets/js/index.js'),
(2679, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/ui/connect-button.js', 'wp-content/plugins/elementor-pro/core/app/assets/js/ui/connect-button.js'),
(2680, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/assets/js/utils.js', 'wp-content/plugins/elementor-pro/core/app/assets/js/utils.js'),
(2681, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/module.php', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/module.php'),
(2682, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/export/templates.php', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/export/templates.php'),
(2683, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/import/templates.php', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/import/templates.php'),
(2684, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/revert/templates.php', 'wp-content/plugins/elementor-pro/core/app/modules/import-export/runners/revert/templates.php'),
(2685, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/kit-library/module.php', 'wp-content/plugins/elementor-pro/core/app/modules/kit-library/module.php'),
(2686, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/onboarding/module.php', 'wp-content/plugins/elementor-pro/core/app/modules/onboarding/module.php'),
(2687, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/indicator-bullet.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/indicator-bullet.js'),
(2688, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/preview-iframe.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/atoms/preview-iframe.js'),
(2689, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/base-context.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/base-context.js'),
(2690, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/conditions.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/conditions.js'),
(2691, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/models/condition.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/models/condition.js'),
(2692, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/services/conditions-config.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/services/conditions-config.js'),
(2693, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/templates.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/context/templates.js'),
(2694, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/conditions-config.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/conditions-config.js'),
(2695, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/index.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/index.js'),
(2696, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions-conflicts.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions-conflicts.js'),
(2697, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates-conditions.js'),
(2698, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/commands/templates.js'),
(2699, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/component.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/data/component.js'),
(2700, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/editor.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/editor.js'),
(2701, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/hooks/use-templates-screenshot.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/hooks/use-templates-screenshot.js'),
(2702, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/back-button.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/back-button.js'),
(2703, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-body.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-body.js'),
(2704, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-footer.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-footer.js'),
(2705, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-header.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-header.js'),
(2706, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-thumbnail.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template-thumbnail.js'),
(2707, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/molecules/site-template.js'),
(2708, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/organisms/site-templates.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/organisms/site-templates.js'),
(2709, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/add-new.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/add-new.js'),
(2710, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-conflicts.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-conflicts.js'),
(2711, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-name.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-name.js'),
(2712, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub-id.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub-id.js'),
(2713, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-sub.js'),
(2714, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-type.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/condition-type.js'),
(2715, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions-rows.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions-rows.js'),
(2716, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/conditions/conditions.js'),
(2717, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/import.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/import.js'),
(2718, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/template-type.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/template-type.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(2719, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/templates.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/pages/templates.js'),
(2720, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-delete.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-delete.js'),
(2721, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-rename.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialog-rename.js'),
(2722, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialogs-and-buttons.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/part-actions/dialogs-and-buttons.js'),
(2723, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/site-editor.js', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/assets/js/site-editor.js'),
(2724, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/controller.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/controller.php'),
(2725, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/base-endpoint.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/base-endpoint.php'),
(2726, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/conditions-config.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/conditions-config.php'),
(2727, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/template-types.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/template-types.php'),
(2728, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions-conflicts.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions-conflicts.php'),
(2729, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates-conditions.php'),
(2730, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/endpoints/templates.php'),
(2731, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/responses/lock-error-response.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/data/responses/lock-error-response.php'),
(2732, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/module.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/module.php'),
(2733, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/app/modules/site-editor/render-mode-template-preview.php', 'wp-content/plugins/elementor-pro/core/app/modules/site-editor/render-mode-template-preview.php'),
(2734, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/behaviors/feature-lock.php', 'wp-content/plugins/elementor-pro/core/behaviors/feature-lock.php'),
(2735, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/behaviors/temp-lock-behavior.php', 'wp-content/plugins/elementor-pro/core/behaviors/temp-lock-behavior.php'),
(2736, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/compatibility/compatibility.php', 'wp-content/plugins/elementor-pro/core/compatibility/compatibility.php'),
(2737, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/connect/apps/activate.php', 'wp-content/plugins/elementor-pro/core/connect/apps/activate.php'),
(2738, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/connect/manager.php', 'wp-content/plugins/elementor-pro/core/connect/manager.php'),
(2739, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/base-database-updater.php', 'wp-content/plugins/elementor-pro/core/database/base-database-updater.php'),
(2740, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/base-migration.php', 'wp-content/plugins/elementor-pro/core/database/base-migration.php'),
(2741, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/join-clause.php', 'wp-content/plugins/elementor-pro/core/database/join-clause.php'),
(2742, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/model-base.php', 'wp-content/plugins/elementor-pro/core/database/model-base.php'),
(2743, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/model-query-builder.php', 'wp-content/plugins/elementor-pro/core/database/model-query-builder.php'),
(2744, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/database/query-builder.php', 'wp-content/plugins/elementor-pro/core/database/query-builder.php'),
(2745, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/editor.php', 'wp-content/plugins/elementor-pro/core/editor/editor.php'),
(2746, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/notice-bar.php', 'wp-content/plugins/elementor-pro/core/editor/notice-bar.php'),
(2747, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/promotion.php', 'wp-content/plugins/elementor-pro/core/editor/promotion.php'),
(2748, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/editor/template.php', 'wp-content/plugins/elementor-pro/core/editor/template.php'),
(2749, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/action-base.php', 'wp-content/plugins/elementor-pro/core/integrations/actions/action-base.php'),
(2750, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/email/email-address.php', 'wp-content/plugins/elementor-pro/core/integrations/actions/email/email-address.php'),
(2751, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/email/email-message.php', 'wp-content/plugins/elementor-pro/core/integrations/actions/email/email-message.php'),
(2752, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/actions/email/email.php', 'wp-content/plugins/elementor-pro/core/integrations/actions/email/email.php'),
(2753, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/exceptions/action-failed-exception.php', 'wp-content/plugins/elementor-pro/core/integrations/exceptions/action-failed-exception.php'),
(2754, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/exceptions/action-validation-failed-exception.php', 'wp-content/plugins/elementor-pro/core/integrations/exceptions/action-validation-failed-exception.php'),
(2755, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/exceptions/exception-base.php', 'wp-content/plugins/elementor-pro/core/integrations/exceptions/exception-base.php'),
(2756, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/integrations/integrations-manager.php', 'wp-content/plugins/elementor-pro/core/integrations/integrations-manager.php'),
(2757, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/modules-manager.php', 'wp-content/plugins/elementor-pro/core/modules-manager.php'),
(2758, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/notifications/notification.php', 'wp-content/plugins/elementor-pro/core/notifications/notification.php'),
(2759, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/notifications/notifications-manager.php', 'wp-content/plugins/elementor-pro/core/notifications/notifications-manager.php'),
(2760, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/notifications/traits/notifiable.php', 'wp-content/plugins/elementor-pro/core/notifications/traits/notifiable.php'),
(2761, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/preview/preview.php', 'wp-content/plugins/elementor-pro/core/preview/preview.php'),
(2762, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/upgrade/manager.php', 'wp-content/plugins/elementor-pro/core/upgrade/manager.php'),
(2763, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/upgrade/upgrades.php', 'wp-content/plugins/elementor-pro/core/upgrade/upgrades.php'),
(2764, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/utils/collection.php', 'wp-content/plugins/elementor-pro/core/utils/collection.php'),
(2765, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/utils/registrar.php', 'wp-content/plugins/elementor-pro/core/utils/registrar.php'),
(2766, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/core/utils.php', 'wp-content/plugins/elementor-pro/core/utils.php'),
(2767, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/data/base/controller.php', 'wp-content/plugins/elementor-pro/data/base/controller.php'),
(2768, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/data/http-status.php', 'wp-content/plugins/elementor-pro/data/http-status.php'),
(2769, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/elementor-pro.php', 'wp-content/plugins/elementor-pro/elementor-pro.php'),
(2770, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/admin.php', 'wp-content/plugins/elementor-pro/license/admin.php'),
(2771, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/api.php', 'wp-content/plugins/elementor-pro/license/api.php'),
(2772, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/assets/js/admin.js', 'wp-content/plugins/elementor-pro/license/assets/js/admin.js'),
(2773, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/notices/trial-expired-notice.php', 'wp-content/plugins/elementor-pro/license/notices/trial-expired-notice.php'),
(2774, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/notices/trial-period-notice.php', 'wp-content/plugins/elementor-pro/license/notices/trial-period-notice.php'),
(2775, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/license/updater.php', 'wp-content/plugins/elementor-pro/license/updater.php'),
(2776, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/admin-top-bar/module.php', 'wp-content/plugins/elementor-pro/modules/admin-top-bar/module.php'),
(2777, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/animated-headline/module.php', 'wp-content/plugins/elementor-pro/modules/animated-headline/module.php'),
(2778, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/animated-headline/widgets/animated-headline.php', 'wp-content/plugins/elementor-pro/modules/animated-headline/widgets/animated-headline.php'),
(2779, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-menu-item.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-menu-item.php'),
(2780, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-promotion-menu-item.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-fonts-promotion-menu-item.php'),
(2781, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-menu-item.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-menu-item.php'),
(2782, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-promotion-menu-item.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/admin-menu-items/custom-icons-promotion-menu-item.php'),
(2783, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/custom-fonts.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/custom-fonts.php'),
(2784, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts/typekit-fonts.php'),
(2785, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts-manager.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/fonts-manager.php'),
(2786, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php'),
(2787, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/font-awesome-pro.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/font-awesome-pro.php'),
(2788, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontastic.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontastic.php'),
(2789, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontello.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/fontello.php'),
(2790, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icomoon.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icomoon.php'),
(2791, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icon-set-base.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/icon-sets/icon-set-base.php'),
(2792, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/templates.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/templates.php'),
(2793, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons-manager.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons-manager.php'),
(2794, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/classes/assets-base.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/classes/assets-base.php'),
(2795, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/classes/font-base.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/classes/font-base.php'),
(2796, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/assets-manager/module.php', 'wp-content/plugins/elementor-pro/modules/assets-manager/module.php'),
(2797, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/blockquote/module.php', 'wp-content/plugins/elementor-pro/modules/blockquote/module.php'),
(2798, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/blockquote/widgets/blockquote.php', 'wp-content/plugins/elementor-pro/modules/blockquote/widgets/blockquote.php'),
(2799, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/call-to-action/module.php', 'wp-content/plugins/elementor-pro/modules/call-to-action/module.php'),
(2800, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/call-to-action/widgets/call-to-action.php', 'wp-content/plugins/elementor-pro/modules/call-to-action/widgets/call-to-action.php'),
(2801, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/module.php', 'wp-content/plugins/elementor-pro/modules/carousel/module.php'),
(2802, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/base.php', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/base.php'),
(2803, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php'),
(2804, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/reviews.php', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/reviews.php'),
(2805, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/carousel/widgets/testimonial-carousel.php', 'wp-content/plugins/elementor-pro/modules/carousel/widgets/testimonial-carousel.php'),
(2806, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/code-highlight/module.php', 'wp-content/plugins/elementor-pro/modules/code-highlight/module.php'),
(2807, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/code-highlight/widgets/code-highlight.php', 'wp-content/plugins/elementor-pro/modules/code-highlight/widgets/code-highlight.php'),
(2808, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/compatibility-tag/compatibility-tag-component.php', 'wp-content/plugins/elementor-pro/modules/compatibility-tag/compatibility-tag-component.php'),
(2809, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/compatibility-tag/module.php', 'wp-content/plugins/elementor-pro/modules/compatibility-tag/module.php'),
(2810, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/countdown/module.php', 'wp-content/plugins/elementor-pro/modules/countdown/module.php'),
(2811, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/countdown/widgets/countdown.php', 'wp-content/plugins/elementor-pro/modules/countdown/widgets/countdown.php'),
(2812, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-attributes/module.php', 'wp-content/plugins/elementor-pro/modules/custom-attributes/module.php'),
(2813, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-menu-item.php', 'wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-menu-item.php'),
(2814, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-promotion-menu-item.php', 'wp-content/plugins/elementor-pro/modules/custom-code/admin-menu-items/custom-code-promotion-menu-item.php'),
(2815, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/custom-code-metabox.php', 'wp-content/plugins/elementor-pro/modules/custom-code/custom-code-metabox.php'),
(2816, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/document.php', 'wp-content/plugins/elementor-pro/modules/custom-code/document.php'),
(2817, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-code/module.php', 'wp-content/plugins/elementor-pro/modules/custom-code/module.php'),
(2818, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/custom-css/module.php', 'wp-content/plugins/elementor-pro/modules/custom-css/module.php'),
(2819, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/dynamic-value-provider.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/dynamic-value-provider.php'),
(2820, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/module.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/module.php'),
(2821, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-color.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-color.php'),
(2822, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-date-time.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-date-time.php'),
(2823, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-file.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-file.php'),
(2824, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-gallery.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-gallery.php'),
(2825, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-image.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-image.php'),
(2826, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-number.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-number.php'),
(2827, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-text.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-text.php'),
(2828, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/acf/tags/acf-url.php'),
(2829, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/module.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/module.php'),
(2830, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/dynamic-value-provider.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/dynamic-value-provider.php'),
(2831, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/module.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/module.php'),
(2832, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-base.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-base.php'),
(2833, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date-time.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date-time.php'),
(2834, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-date.php'),
(2835, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-gallery.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-gallery.php'),
(2836, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-image.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-image.php'),
(2837, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-numeric.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-numeric.php'),
(2838, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-text.php'),
(2839, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/pods/tags/pods-url.php'),
(2840, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-description.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-description.php'),
(2841, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-meta.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-meta.php'),
(2842, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-title.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-title.php'),
(2843, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/archive-url.php'),
(2844, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-info.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-info.php'),
(2845, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-meta.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-meta.php'),
(2846, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-name.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-name.php'),
(2847, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-profile-picture.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-profile-picture.php'),
(2848, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/author-url.php'),
(2849, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/data-tag.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/data-tag.php'),
(2850, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag-trait.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag-trait.php'),
(2851, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/base/tag.php'),
(2852, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-number.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-number.php'),
(2853, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/comments-url.php'),
(2854, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/contact-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/contact-url.php'),
(2855, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/current-date-time.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/current-date-time.php'),
(2856, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/featured-image-data.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/featured-image-data.php'),
(2857, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/internal-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/internal-url.php'),
(2858, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/lightbox.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/lightbox.php'),
(2859, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/page-title.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/page-title.php'),
(2860, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-custom-field.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-custom-field.php'),
(2861, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-date.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-date.php'),
(2862, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-excerpt.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-excerpt.php'),
(2863, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-featured-image.php'),
(2864, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-gallery.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-gallery.php'),
(2865, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-id.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-id.php'),
(2866, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-terms.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-terms.php'),
(2867, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-time.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-time.php'),
(2868, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-title.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-title.php'),
(2869, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/post-url.php'),
(2870, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/request-parameter.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/request-parameter.php'),
(2871, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/shortcode.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/shortcode.php'),
(2872, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-logo.php'),
(2873, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-tagline.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-tagline.php'),
(2874, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-title.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-title.php'),
(2875, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/site-url.php'),
(2876, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-info.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-info.php'),
(2877, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-profile-picture.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/tags/user-profile-picture.php'),
(2878, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/module.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/module.php'),
(2879, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-base.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-base.php'),
(2880, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-date.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-date.php'),
(2881, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-gallery.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-gallery.php'),
(2882, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-image.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-image.php'),
(2883, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-text.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-text.php'),
(2884, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-url.php', 'wp-content/plugins/elementor-pro/modules/dynamic-tags/toolset/tags/toolset-url.php'),
(2885, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/flip-box/module.php', 'wp-content/plugins/elementor-pro/modules/flip-box/module.php'),
(2886, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/flip-box/widgets/flip-box.php', 'wp-content/plugins/elementor-pro/modules/flip-box/widgets/flip-box.php'),
(2887, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/activecampaign.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/activecampaign.php'),
(2888, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/activity-log.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/activity-log.php'),
(2889, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/cf7db.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/cf7db.php'),
(2890, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/convertkit.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/convertkit.php'),
(2891, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/discord.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/discord.php'),
(2892, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/drip.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/drip.php'),
(2893, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/email.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/email.php'),
(2894, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/email2.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/email2.php'),
(2895, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/getresponse.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/getresponse.php'),
(2896, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailchimp.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailchimp.php'),
(2897, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailerlite.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailerlite.php'),
(2898, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet.php'),
(2899, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet3.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/mailpoet3.php'),
(2900, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/redirect.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/redirect.php'),
(2901, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/slack.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/slack.php'),
(2902, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/actions/webhook.php', 'wp-content/plugins/elementor-pro/modules/forms/actions/webhook.php'),
(2903, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/action-base.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/action-base.php'),
(2904, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/activecampaign-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/activecampaign-handler.php'),
(2905, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/ajax-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/ajax-handler.php'),
(2906, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/convertkit-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/convertkit-handler.php'),
(2907, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/drip-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/drip-handler.php'),
(2908, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/form-base.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/form-base.php'),
(2909, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/form-record.php'),
(2910, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/getresponse-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/getresponse-handler.php'),
(2911, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/honeypot-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/honeypot-handler.php'),
(2912, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/integration-base.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/integration-base.php'),
(2913, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/mailchimp-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/mailchimp-handler.php'),
(2914, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/mailerlite-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/mailerlite-handler.php'),
(2915, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-handler.php'),
(2916, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php'),
(2917, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/classes/rest-client.php', 'wp-content/plugins/elementor-pro/modules/forms/classes/rest-client.php'),
(2918, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/controls/fields-map.php', 'wp-content/plugins/elementor-pro/modules/forms/controls/fields-map.php'),
(2919, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/controls/fields-repeater.php', 'wp-content/plugins/elementor-pro/modules/forms/controls/fields-repeater.php'),
(2920, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/data/controller.php', 'wp-content/plugins/elementor-pro/modules/forms/data/controller.php'),
(2921, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/acceptance.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/acceptance.php'),
(2922, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/date.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/date.php'),
(2923, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/field-base.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/field-base.php'),
(2924, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/number.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/number.php'),
(2925, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/step.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/step.php'),
(2926, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/tel.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/tel.php'),
(2927, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/time.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/time.php'),
(2928, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/fields/upload.php', 'wp-content/plugins/elementor-pro/modules/forms/fields/upload.php'),
(2929, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/module.php', 'wp-content/plugins/elementor-pro/modules/forms/module.php'),
(2930, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/registrars/form-actions-registrar.php', 'wp-content/plugins/elementor-pro/modules/forms/registrars/form-actions-registrar.php'),
(2931, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/registrars/form-fields-registrar.php', 'wp-content/plugins/elementor-pro/modules/forms/registrars/form-fields-registrar.php'),
(2932, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/actions/save-to-database.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/actions/save-to-database.php'),
(2933, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-menu-item.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-menu-item.php'),
(2934, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-promotion-menu-item.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-promotion-menu-item.php'),
(2935, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/component.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/component.php'),
(2936, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/controller.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/controller.php'),
(2937, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/export.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/export.php'),
(2938, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/forms-index.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/forms-index.php'),
(2939, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/index.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/index.php'),
(2940, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/referer.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/referer.php'),
(2941, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/restore.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/endpoints/restore.php'),
(2942, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/forms-controller.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/forms-controller.php'),
(2943, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/data/responses/query-failed-response.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/data/responses/query-failed-response.php'),
(2944, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/entities/form-snapshot.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/entities/form-snapshot.php'),
(2945, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migration.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migration.php'),
(2946, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/base-migration.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/base-migration.php'),
(2947, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/fix-indexes.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/fix-indexes.php'),
(2948, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/initial.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/initial.php'),
(2949, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/referer-extra.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/migrations/referer-extra.php'),
(2950, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/query.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/query.php'),
(2951, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/database/repositories/form-snapshot-repository.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/database/repositories/form-snapshot-repository.php'),
(2952, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/export/csv-export.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/export/csv-export.php'),
(2953, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/submissions/personal-data.php', 'wp-content/plugins/elementor-pro/modules/forms/submissions/personal-data.php'),
(2954, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/widgets/form.php', 'wp-content/plugins/elementor-pro/modules/forms/widgets/form.php'),
(2955, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/forms/widgets/login.php', 'wp-content/plugins/elementor-pro/modules/forms/widgets/login.php'),
(2956, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/gallery/module.php', 'wp-content/plugins/elementor-pro/modules/gallery/module.php'),
(2957, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/gallery/widgets/gallery.php', 'wp-content/plugins/elementor-pro/modules/gallery/widgets/gallery.php'),
(2958, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/data/controller.php', 'wp-content/plugins/elementor-pro/modules/global-widget/data/controller.php'),
(2959, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/documents/widget.php', 'wp-content/plugins/elementor-pro/modules/global-widget/documents/widget.php'),
(2960, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/module.php', 'wp-content/plugins/elementor-pro/modules/global-widget/module.php'),
(2961, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/views/panel-template.php', 'wp-content/plugins/elementor-pro/modules/global-widget/views/panel-template.php'),
(2962, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/global-widget/widgets/global-widget.php', 'wp-content/plugins/elementor-pro/modules/global-widget/widgets/global-widget.php'),
(2963, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/hotspot/module.php', 'wp-content/plugins/elementor-pro/modules/hotspot/module.php'),
(2964, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/hotspot/widgets/hotspot.php', 'wp-content/plugins/elementor-pro/modules/hotspot/widgets/hotspot.php'),
(2965, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/classes/shortcode.php', 'wp-content/plugins/elementor-pro/modules/library/classes/shortcode.php'),
(2966, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/module.php', 'wp-content/plugins/elementor-pro/modules/library/module.php'),
(2967, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/widgets/template.php', 'wp-content/plugins/elementor-pro/modules/library/widgets/template.php'),
(2968, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/library/wp-widgets/elementor-library.php', 'wp-content/plugins/elementor-pro/modules/library/wp-widgets/elementor-library.php'),
(2969, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/assets/images/loop-item.svg', 'wp-content/plugins/elementor-pro/modules/loop-builder/assets/images/loop-item.svg'),
(2970, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/documents/loop.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/documents/loop.php'),
(2971, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-css-trait.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-css-trait.php'),
(2972, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-dynamic-css.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-dynamic-css.php'),
(2973, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-preview.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop-preview.php'),
(2974, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/files/css/loop.php'),
(2975, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/module.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/module.php'),
(2976, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-base.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-base.php'),
(2977, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-post.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/skins/skin-loop-post.php'),
(2978, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/traits/alternate-templates-trait.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/traits/alternate-templates-trait.php'),
(2979, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/views/cta-template.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/views/cta-template.php'),
(2980, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/widgets/base.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/widgets/base.php'),
(2981, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-carousel.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-carousel.php'),
(2982, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-grid.php', 'wp-content/plugins/elementor-pro/modules/loop-builder/widgets/loop-grid.php'),
(2983, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/controller.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/controller.php'),
(2984, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/base.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/base.php'),
(2985, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/get-post-type-taxonomies.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/get-post-type-taxonomies.php'),
(2986, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/refresh-loop.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/endpoints/refresh-loop.php'),
(2987, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/data/interfaces/endpoint.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/data/interfaces/endpoint.php'),
(2988, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/module.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/module.php'),
(2989, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/traits/hierarchical-taxonomy-trait.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/traits/hierarchical-taxonomy-trait.php'),
(2990, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/loop-filter/widgets/taxonomy-filter.php', 'wp-content/plugins/elementor-pro/modules/loop-filter/widgets/taxonomy-filter.php'),
(2991, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/lottie/module.php', 'wp-content/plugins/elementor-pro/modules/lottie/module.php'),
(2992, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/lottie/widgets/lottie.php', 'wp-content/plugins/elementor-pro/modules/lottie/widgets/lottie.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(2993, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/mega-menu/module.php', 'wp-content/plugins/elementor-pro/modules/mega-menu/module.php'),
(2994, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/mega-menu/traits/url-helper-trait.php', 'wp-content/plugins/elementor-pro/modules/mega-menu/traits/url-helper-trait.php'),
(2995, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/mega-menu/widgets/mega-menu.php', 'wp-content/plugins/elementor-pro/modules/mega-menu/widgets/mega-menu.php'),
(2996, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/motion-fx/controls-group.php', 'wp-content/plugins/elementor-pro/modules/motion-fx/controls-group.php'),
(2997, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/motion-fx/module.php', 'wp-content/plugins/elementor-pro/modules/motion-fx/module.php'),
(2998, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nav-menu/module.php', 'wp-content/plugins/elementor-pro/modules/nav-menu/module.php'),
(2999, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nav-menu/widgets/nav-menu.php', 'wp-content/plugins/elementor-pro/modules/nav-menu/widgets/nav-menu.php'),
(3000, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nested-carousel/module.php', 'wp-content/plugins/elementor-pro/modules/nested-carousel/module.php'),
(3001, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/nested-carousel/widgets/nested-carousel.php', 'wp-content/plugins/elementor-pro/modules/nested-carousel/widgets/nested-carousel.php'),
(3002, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/admin-bar.php', 'wp-content/plugins/elementor-pro/modules/notes/admin-bar.php'),
(3003, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/admin-page.php', 'wp-content/plugins/elementor-pro/modules/notes/admin-page.php'),
(3004, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/controller.php', 'wp-content/plugins/elementor-pro/modules/notes/data/controller.php'),
(3005, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/endpoints/read-status-endpoint.php', 'wp-content/plugins/elementor-pro/modules/notes/data/endpoints/read-status-endpoint.php'),
(3006, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/endpoints/summary-endpoint.php', 'wp-content/plugins/elementor-pro/modules/notes/data/endpoints/summary-endpoint.php'),
(3007, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/data/endpoints/users-endpoint.php', 'wp-content/plugins/elementor-pro/modules/notes/data/endpoints/users-endpoint.php'),
(3008, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-author-display-name.php', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-author-display-name.php'),
(3009, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-capabilities.php', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-capabilities.php'),
(3010, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-note-position.php', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-note-position.php'),
(3011, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-route-post-id.php', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/add-route-post-id.php'),
(3012, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/migrations/initial.php', 'wp-content/plugins/elementor-pro/modules/notes/database/migrations/initial.php'),
(3013, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/document.php', 'wp-content/plugins/elementor-pro/modules/notes/database/models/document.php'),
(3014, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/note-summary.php', 'wp-content/plugins/elementor-pro/modules/notes/database/models/note-summary.php'),
(3015, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/note.php', 'wp-content/plugins/elementor-pro/modules/notes/database/models/note.php'),
(3016, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/models/user.php', 'wp-content/plugins/elementor-pro/modules/notes/database/models/user.php'),
(3017, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/notes-database-updater.php', 'wp-content/plugins/elementor-pro/modules/notes/database/notes-database-updater.php'),
(3018, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/query/note-query-builder.php', 'wp-content/plugins/elementor-pro/modules/notes/database/query/note-query-builder.php'),
(3019, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/query/user-query-builder.php', 'wp-content/plugins/elementor-pro/modules/notes/database/query/user-query-builder.php'),
(3020, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/database/transformers/user-transformer.php', 'wp-content/plugins/elementor-pro/modules/notes/database/transformers/user-transformer.php'),
(3021, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/document-events.php', 'wp-content/plugins/elementor-pro/modules/notes/document-events.php'),
(3022, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/module.php', 'wp-content/plugins/elementor-pro/modules/notes/module.php'),
(3023, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/base-notes-notification.php', 'wp-content/plugins/elementor-pro/modules/notes/notifications/base-notes-notification.php'),
(3024, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/user-mentioned-notification.php', 'wp-content/plugins/elementor-pro/modules/notes/notifications/user-mentioned-notification.php'),
(3025, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/user-replied-notification.php', 'wp-content/plugins/elementor-pro/modules/notes/notifications/user-replied-notification.php'),
(3026, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/user-resolved-notification.php', 'wp-content/plugins/elementor-pro/modules/notes/notifications/user-resolved-notification.php'),
(3027, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/notifications/views/email.php', 'wp-content/plugins/elementor-pro/modules/notes/notifications/views/email.php'),
(3028, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/usage.php', 'wp-content/plugins/elementor-pro/modules/notes/usage.php'),
(3029, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/capabilities.php', 'wp-content/plugins/elementor-pro/modules/notes/user/capabilities.php'),
(3030, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/delete-user.php', 'wp-content/plugins/elementor-pro/modules/notes/user/delete-user.php'),
(3031, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/personal-data.php', 'wp-content/plugins/elementor-pro/modules/notes/user/personal-data.php'),
(3032, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/user/preferences.php', 'wp-content/plugins/elementor-pro/modules/notes/user/preferences.php'),
(3033, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/notes/utils.php', 'wp-content/plugins/elementor-pro/modules/notes/utils.php'),
(3034, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/page-transitions/module.php', 'wp-content/plugins/elementor-pro/modules/page-transitions/module.php'),
(3035, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php', 'wp-content/plugins/elementor-pro/modules/payments/classes/payment-button.php'),
(3036, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/classes/stripe-handler.php', 'wp-content/plugins/elementor-pro/modules/payments/classes/stripe-handler.php'),
(3037, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/module.php', 'wp-content/plugins/elementor-pro/modules/payments/module.php'),
(3038, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/widgets/paypal-button.php', 'wp-content/plugins/elementor-pro/modules/payments/widgets/paypal-button.php'),
(3039, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/payments/widgets/stripe-button.php', 'wp-content/plugins/elementor-pro/modules/payments/widgets/stripe-button.php'),
(3040, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-menu-item.php', 'wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-menu-item.php'),
(3041, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-promotion-menu-item.php', 'wp-content/plugins/elementor-pro/modules/popup/admin-menu-items/popups-promotion-menu-item.php'),
(3042, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/browsers.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/browsers.svg'),
(3043, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/devices.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/devices.svg'),
(3044, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/logged_in.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/logged_in.svg'),
(3045, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/page_views.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/page_views.svg'),
(3046, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/schedule.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/schedule.svg'),
(3047, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sessions.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sessions.svg'),
(3048, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sources.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/sources.svg'),
(3049, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/times.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/times.svg'),
(3050, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/url.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing/url.svg'),
(3051, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/timing-tab.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/timing-tab.svg'),
(3052, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/click.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/click.svg'),
(3053, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/exit_intent.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/exit_intent.svg'),
(3054, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/inactivity.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/inactivity.svg'),
(3055, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/page_load.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/page_load.svg'),
(3056, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling.svg'),
(3057, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling_to.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers/scrolling_to.svg'),
(3058, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers-tab.svg', 'wp-content/plugins/elementor-pro/modules/popup/assets/images/triggers-tab.svg'),
(3059, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/display-settings/base.php', 'wp-content/plugins/elementor-pro/modules/popup/display-settings/base.php'),
(3060, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/display-settings/timing.php', 'wp-content/plugins/elementor-pro/modules/popup/display-settings/timing.php'),
(3061, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/display-settings/triggers.php', 'wp-content/plugins/elementor-pro/modules/popup/display-settings/triggers.php'),
(3062, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/document.php', 'wp-content/plugins/elementor-pro/modules/popup/document.php'),
(3063, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/form-action.php', 'wp-content/plugins/elementor-pro/modules/popup/form-action.php'),
(3064, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/module.php', 'wp-content/plugins/elementor-pro/modules/popup/module.php'),
(3065, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/popup/tag.php', 'wp-content/plugins/elementor-pro/modules/popup/tag.php'),
(3066, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/data/controller.php', 'wp-content/plugins/elementor-pro/modules/posts/data/controller.php'),
(3067, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/module.php', 'wp-content/plugins/elementor-pro/modules/posts/module.php'),
(3068, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-base.php'),
(3069, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-cards.php', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-cards.php'),
(3070, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-classic.php', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-classic.php'),
(3071, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-content-base.php'),
(3072, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/skins/skin-full-content.php', 'wp-content/plugins/elementor-pro/modules/posts/skins/skin-full-content.php'),
(3073, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/traits/button-widget-trait.php', 'wp-content/plugins/elementor-pro/modules/posts/traits/button-widget-trait.php'),
(3074, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/traits/pagination-trait.php', 'wp-content/plugins/elementor-pro/modules/posts/traits/pagination-trait.php'),
(3075, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/widgets/portfolio.php', 'wp-content/plugins/elementor-pro/modules/posts/widgets/portfolio.php'),
(3076, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/widgets/posts-base.php', 'wp-content/plugins/elementor-pro/modules/posts/widgets/posts-base.php'),
(3077, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/posts/widgets/posts.php', 'wp-content/plugins/elementor-pro/modules/posts/widgets/posts.php'),
(3078, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/pricing/module.php', 'wp-content/plugins/elementor-pro/modules/pricing/module.php'),
(3079, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/pricing/widgets/price-list.php', 'wp-content/plugins/elementor-pro/modules/pricing/widgets/price-list.php'),
(3080, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/pricing/widgets/price-table.php', 'wp-content/plugins/elementor-pro/modules/pricing/widgets/price-table.php'),
(3081, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/progress-tracker/module.php', 'wp-content/plugins/elementor-pro/modules/progress-tracker/module.php'),
(3082, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/progress-tracker/widgets/progress-tracker.php', 'wp-content/plugins/elementor-pro/modules/progress-tracker/widgets/progress-tracker.php'),
(3083, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-post-query.php', 'wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-post-query.php'),
(3084, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-related-query.php', 'wp-content/plugins/elementor-pro/modules/query-control/classes/elementor-related-query.php'),
(3085, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-posts.php', 'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-posts.php'),
(3086, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-query.php', 'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-query.php'),
(3087, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-related.php', 'wp-content/plugins/elementor-pro/modules/query-control/controls/group-control-related.php'),
(3088, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/query.php', 'wp-content/plugins/elementor-pro/modules/query-control/controls/query.php'),
(3089, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/controls/template-query.php', 'wp-content/plugins/elementor-pro/modules/query-control/controls/template-query.php'),
(3090, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/query-control/module.php', 'wp-content/plugins/elementor-pro/modules/query-control/module.php'),
(3091, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/role-manager/module.php', 'wp-content/plugins/elementor-pro/modules/role-manager/module.php'),
(3092, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/screenshots/module.php', 'wp-content/plugins/elementor-pro/modules/screenshots/module.php'),
(3093, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/screenshots/render-mode-screenshot.php', 'wp-content/plugins/elementor-pro/modules/screenshots/render-mode-screenshot.php'),
(3094, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/screenshots/screenshot.php', 'wp-content/plugins/elementor-pro/modules/screenshots/screenshot.php'),
(3095, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/scroll-snap/module.php', 'wp-content/plugins/elementor-pro/modules/scroll-snap/module.php'),
(3096, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/share-buttons/module.php', 'wp-content/plugins/elementor-pro/modules/share-buttons/module.php'),
(3097, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/share-buttons/widgets/share-buttons.php', 'wp-content/plugins/elementor-pro/modules/share-buttons/widgets/share-buttons.php'),
(3098, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/slides/module.php', 'wp-content/plugins/elementor-pro/modules/slides/module.php'),
(3099, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/slides/widgets/slides.php', 'wp-content/plugins/elementor-pro/modules/slides/widgets/slides.php'),
(3100, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/classes/facebook-sdk-manager.php', 'wp-content/plugins/elementor-pro/modules/social/classes/facebook-sdk-manager.php'),
(3101, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/module.php', 'wp-content/plugins/elementor-pro/modules/social/module.php'),
(3102, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-button.php', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-button.php'),
(3103, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-comments.php', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-comments.php'),
(3104, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-embed.php', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-embed.php'),
(3105, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/social/widgets/facebook-page.php', 'wp-content/plugins/elementor-pro/modules/social/widgets/facebook-page.php'),
(3106, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/sticky/module.php', 'wp-content/plugins/elementor-pro/modules/sticky/module.php'),
(3107, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/table-of-contents/module.php', 'wp-content/plugins/elementor-pro/modules/table-of-contents/module.php'),
(3108, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/table-of-contents/widgets/table-of-contents.php', 'wp-content/plugins/elementor-pro/modules/table-of-contents/widgets/table-of-contents.php'),
(3109, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/admin-menu-items/theme-builder-menu-item.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/admin-menu-items/theme-builder-menu-item.php'),
(3110, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/api.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/api.php'),
(3111, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/assets/images/conditions-tab.svg', 'wp-content/plugins/elementor-pro/modules/theme-builder/assets/images/conditions-tab.svg'),
(3112, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-cache.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-cache.php'),
(3113, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-manager.php'),
(3114, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-repeater.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/conditions-repeater.php'),
(3115, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/control-media-preview.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/control-media-preview.php'),
(3116, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/locations-manager.php'),
(3117, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/preview-manager.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/preview-manager.php'),
(3118, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/template-conditions.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/template-conditions.php'),
(3119, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/templates-types-manager.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/templates-types-manager.php'),
(3120, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/classes/theme-support.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/classes/theme-support.php'),
(3121, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of-term.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of-term.php'),
(3122, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/any-child-of.php'),
(3123, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/archive.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/archive.php'),
(3124, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/author.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/author.php'),
(3125, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/by-author.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/by-author.php'),
(3126, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of-term.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of-term.php'),
(3127, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/child-of.php'),
(3128, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/condition-base.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/condition-base.php'),
(3129, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/date.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/date.php'),
(3130, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/front-page.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/front-page.php'),
(3131, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/general.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/general.php'),
(3132, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-sub-term.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-sub-term.php'),
(3133, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-taxonomy.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/in-taxonomy.php'),
(3134, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/not-found404.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/not-found404.php'),
(3135, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-archive.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-archive.php'),
(3136, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-by-author.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post-type-by-author.php'),
(3137, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/post.php'),
(3138, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/search.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/search.php'),
(3139, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/singular.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/singular.php'),
(3140, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/conditions/taxonomy.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/conditions/taxonomy.php'),
(3141, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive-single-base.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive-single-base.php'),
(3142, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/archive.php'),
(3143, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/error-404.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/error-404.php'),
(3144, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/footer.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/footer.php'),
(3145, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/header-footer-base.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/header-footer-base.php'),
(3146, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/header.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/header.php'),
(3147, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/search-results.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/search-results.php'),
(3148, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/section.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/section.php'),
(3149, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-base.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-base.php'),
(3150, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-page.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-page.php'),
(3151, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-post.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single-post.php'),
(3152, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/single.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/single.php'),
(3153, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-document.php'),
(3154, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-page-document.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-page-document.php'),
(3155, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-section-document.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/documents/theme-section-document.php'),
(3156, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/files/css/template.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/files/css/template.php'),
(3157, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/module.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/module.php'),
(3158, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/post-comments-skin-classic.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/post-comments-skin-classic.php'),
(3159, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-base.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-base.php'),
(3160, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-cards.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-cards.php'),
(3161, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-classic.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-classic.php'),
(3162, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-full-content.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/skins/posts-archive-skin-full-content.php'),
(3163, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/generate-press-theme-support.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/generate-press-theme-support.php'),
(3164, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/safe-mode-theme-support.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/theme-support/safe-mode-theme-support.php'),
(3165, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/comments-template.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/comments-template.php'),
(3166, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/panel-template.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/panel-template.php'),
(3167, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-footer.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-footer.php'),
(3168, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-header.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/views/theme-support-header.php'),
(3169, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-posts.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-posts.php'),
(3170, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-title.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/archive-title.php'),
(3171, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/page-title.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/page-title.php'),
(3172, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-content.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-content.php'),
(3173, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-excerpt.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-excerpt.php'),
(3174, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-featured-image.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-featured-image.php'),
(3175, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-title.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/post-title.php'),
(3176, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-logo.php'),
(3177, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-title.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/site-title.php'),
(3178, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-builder/widgets/title-widget-base.php', 'wp-content/plugins/elementor-pro/modules/theme-builder/widgets/title-widget-base.php'),
(3179, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/module.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/module.php'),
(3180, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/author-box.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/author-box.php'),
(3181, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/base.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/base.php'),
(3182, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/breadcrumbs.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/breadcrumbs.php'),
(3183, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-comments.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-comments.php'),
(3184, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-info.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-info.php'),
(3185, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-navigation.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/post-navigation.php'),
(3186, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/search-form.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/search-form.php'),
(3187, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/theme-elements/widgets/sitemap.php', 'wp-content/plugins/elementor-pro/modules/theme-elements/widgets/sitemap.php'),
(3188, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/usage/features-reporter.php', 'wp-content/plugins/elementor-pro/modules/usage/features-reporter.php'),
(3189, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/usage/integrations-reporter.php', 'wp-content/plugins/elementor-pro/modules/usage/integrations-reporter.php'),
(3190, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/usage/module.php', 'wp-content/plugins/elementor-pro/modules/usage/module.php'),
(3191, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/video-playlist/module.php', 'wp-content/plugins/elementor-pro/modules/video-playlist/module.php'),
(3192, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/video-playlist/widgets/video-playlist.php', 'wp-content/plugins/elementor-pro/modules/video-playlist/widgets/video-playlist.php'),
(3193, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/classes/base-products-renderer.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/classes/base-products-renderer.php'),
(3194, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/classes/current-query-renderer.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/classes/current-query-renderer.php'),
(3195, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/classes/products-renderer.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/classes/products-renderer.php'),
(3196, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-archive.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-archive.php'),
(3197, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-search.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/product-search.php'),
(3198, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/shop-page.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/shop-page.php'),
(3199, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/conditions/woocommerce.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/conditions/woocommerce.php'),
(3200, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-archive.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-archive.php'),
(3201, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-post.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product-post.php'),
(3202, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/documents/product.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/documents/product.php'),
(3203, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/module.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/module.php'),
(3204, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/settings/settings-woocommerce.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/settings/settings-woocommerce.php'),
(3205, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-classic.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-classic.php'),
(3206, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-loop-product.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/skins/skin-loop-product.php'),
(3207, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-data-tag.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-data-tag.php'),
(3208, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-tag.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/base-tag.php'),
(3209, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/category-image.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/category-image.php'),
(3210, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-content.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-content.php'),
(3211, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-gallery.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-gallery.php'),
(3212, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-image.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-image.php'),
(3213, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-price.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-price.php'),
(3214, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-rating.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-rating.php'),
(3215, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sale.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sale.php'),
(3216, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-short-description.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-short-description.php'),
(3217, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sku.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-sku.php'),
(3218, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-stock.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-stock.php'),
(3219, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-terms.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-terms.php'),
(3220, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-title.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/product-title.php'),
(3221, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/traits/tag-product-id.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/traits/tag-product-id.php'),
(3222, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/tags/woocommerce-add-to-cart.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/tags/woocommerce-add-to-cart.php'),
(3223, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/traits/product-id-trait.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/traits/product-id-trait.php'),
(3224, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/traits/products-trait.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/traits/products-trait.php'),
(3225, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates/cart/mini-cart.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/wc-templates/cart/mini-cart.php'),
(3226, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/add-to-cart.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/add-to-cart.php'),
(3227, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-description.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-description.php'),
(3228, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products-deprecated.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products-deprecated.php'),
(3229, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/archive-products.php'),
(3230, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/base-widget.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/base-widget.php'),
(3231, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/breadcrumb.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/breadcrumb.php'),
(3232, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/cart.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/cart.php'),
(3233, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/categories.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/categories.php'),
(3234, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/category-image.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/category-image.php'),
(3235, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/checkout.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/checkout.php'),
(3236, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/elements.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/elements.php'),
(3237, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/menu-cart.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/menu-cart.php'),
(3238, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/my-account.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/my-account.php'),
(3239, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/notices.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/notices.php'),
(3240, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-add-to-cart.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-add-to-cart.php'),
(3241, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-additional-information.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-additional-information.php'),
(3242, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-content.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-content.php'),
(3243, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-data-tabs.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-data-tabs.php'),
(3244, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-images.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-images.php'),
(3245, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-meta.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-meta.php'),
(3246, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-price.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-price.php'),
(3247, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-rating.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-rating.php'),
(3248, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-related.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-related.php'),
(3249, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-short-description.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-short-description.php'),
(3250, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-stock.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-stock.php'),
(3251, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-title.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-title.php'),
(3252, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-upsell.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/product-upsell.php'),
(3253, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-base.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-base.php'),
(3254, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-deprecated.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products-deprecated.php'),
(3255, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/products.php'),
(3256, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/purchase-summary.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/purchase-summary.php'),
(3257, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/woocommerce/widgets/single-elements.php', 'wp-content/plugins/elementor-pro/modules/woocommerce/widgets/single-elements.php'),
(3258, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/license-command.php', 'wp-content/plugins/elementor-pro/modules/wp-cli/license-command.php'),
(3259, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/module.php', 'wp-content/plugins/elementor-pro/modules/wp-cli/module.php'),
(3260, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/theme-builder.php', 'wp-content/plugins/elementor-pro/modules/wp-cli/theme-builder.php'),
(3261, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/modules/wp-cli/update.php', 'wp-content/plugins/elementor-pro/modules/wp-cli/update.php'),
(3262, '/home/binawebp/omsrislb.my/wp-content/plugins/elementor-pro/plugin.php', 'wp-content/plugins/elementor-pro/plugin.php'),
(3263, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/autoloader.php', 'wp-content/plugins/elementskit-lite/autoloader.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(3264, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/module-list.php', 'wp-content/plugins/elementskit-lite/compatibility/backward/module-list.php'),
(3265, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/plugin-class-backward-compatibility.php', 'wp-content/plugins/elementskit-lite/compatibility/backward/plugin-class-backward-compatibility.php'),
(3266, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/utils-backward-compablity.php', 'wp-content/plugins/elementskit-lite/compatibility/backward/utils-backward-compablity.php'),
(3267, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/walker-nav-menu-backward-compatiblity.php', 'wp-content/plugins/elementskit-lite/compatibility/backward/walker-nav-menu-backward-compatiblity.php'),
(3268, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/backward/widget-list.php', 'wp-content/plugins/elementskit-lite/compatibility/backward/widget-list.php'),
(3269, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/conflicts/init.php', 'wp-content/plugins/elementskit-lite/compatibility/conflicts/init.php'),
(3270, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/conflicts/scripts.php', 'wp-content/plugins/elementskit-lite/compatibility/conflicts/scripts.php'),
(3271, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/data-migration/settings-db.php', 'wp-content/plugins/elementskit-lite/compatibility/data-migration/settings-db.php'),
(3272, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/data-migration/translate-file.php', 'wp-content/plugins/elementskit-lite/compatibility/data-migration/translate-file.php'),
(3273, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/element-manager/init.php', 'wp-content/plugins/elementskit-lite/compatibility/element-manager/init.php'),
(3274, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/compatibility/wpml/init.php', 'wp-content/plugins/elementskit-lite/compatibility/wpml/init.php'),
(3275, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/config/module-list.php', 'wp-content/plugins/elementskit-lite/config/module-list.php'),
(3276, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/config/widget-list.php', 'wp-content/plugins/elementskit-lite/config/widget-list.php'),
(3277, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/activation-actions.php', 'wp-content/plugins/elementskit-lite/core/activation-actions.php'),
(3278, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/build-inline-scripts.php', 'wp-content/plugins/elementskit-lite/core/build-inline-scripts.php'),
(3279, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/build-modules.php', 'wp-content/plugins/elementskit-lite/core/build-modules.php'),
(3280, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/build-widgets.php', 'wp-content/plugins/elementskit-lite/core/build-widgets.php'),
(3281, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/config-list.php', 'wp-content/plugins/elementskit-lite/core/config-list.php'),
(3282, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/handler-api.php', 'wp-content/plugins/elementskit-lite/core/handler-api.php'),
(3283, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/core/handler-widget.php', 'wp-content/plugins/elementskit-lite/core/handler-widget.php'),
(3284, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/elementskit-lite.php', 'wp-content/plugins/elementskit-lite/elementskit-lite.php'),
(3285, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/helpers/utils.php', 'wp-content/plugins/elementskit-lite/helpers/utils.php'),
(3286, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-es-ES.po', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-es-ES.po'),
(3287, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-fr-FR.po', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-fr-FR.po'),
(3288, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-ru_RU.po', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-ru_RU.po'),
(3289, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv-SE.po', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv-SE.po'),
(3290, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv.po', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite-sv.po'),
(3291, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/languages/elementskit-lite.pot', 'wp-content/plugins/elementskit-lite/languages/elementskit-lite.pot'),
(3292, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/banner/banner.php', 'wp-content/plugins/elementskit-lite/libs/banner/banner.php'),
(3293, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/emailkit/assets/logo.svg', 'wp-content/plugins/elementskit-lite/libs/emailkit/assets/logo.svg'),
(3294, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/emailkit/assets/notification.svg', 'wp-content/plugins/elementskit-lite/libs/emailkit/assets/notification.svg'),
(3295, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/emailkit/emailkit.php', 'wp-content/plugins/elementskit-lite/libs/emailkit/emailkit.php'),
(3296, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/css/forms.css', 'wp-content/plugins/elementskit-lite/libs/forms/assets/css/forms.css'),
(3297, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/advanced-integrations.png', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/advanced-integrations.png'),
(3298, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/check-icon.svg', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/check-icon.svg'),
(3299, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/conditional-form.png', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/conditional-form.png'),
(3300, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/contact-form.png', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/contact-form.png'),
(3301, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/crm-integrations.png', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/crm-integrations.png'),
(3302, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/cross-icon.svg', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/cross-icon.svg'),
(3303, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/metform.svg', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/metform.svg'),
(3304, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/images/multistep-form.png', 'wp-content/plugins/elementskit-lite/libs/forms/assets/images/multistep-form.png'),
(3305, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/assets/js/forms.js', 'wp-content/plugins/elementskit-lite/libs/forms/assets/js/forms.js'),
(3306, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/forms.php', 'wp-content/plugins/elementskit-lite/libs/forms/forms.php'),
(3307, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/forms/pages/template.php', 'wp-content/plugins/elementskit-lite/libs/forms/pages/template.php'),
(3308, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-global.css', 'wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-global.css'),
(3309, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-style.css', 'wp-content/plugins/elementskit-lite/libs/framework/assets/css/admin-style.css'),
(3310, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard-before.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard-before.png'),
(3311, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/banner_dashboard.png'),
(3312, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/documentation-thumb.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/documentation-thumb.png'),
(3313, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/ekit_icon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/ekit_icon.svg'),
(3314, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/elements_kit_logo_black.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/elements_kit_logo_black.svg'),
(3315, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon.svg'),
(3316, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon_backup.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/favicon_backup.png'),
(3317, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/featured-request-thumb.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/featured-request-thumb.png'),
(3318, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu-active.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu-active.png'),
(3319, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon-menu.png'),
(3320, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/icon.svg'),
(3321, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/loader-krasi.gif', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/loader-krasi.gif'),
(3322, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/logo-ekit.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/logo-ekit.png'),
(3323, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/arrow-left.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/arrow-left.svg'),
(3324, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/check-icon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/check-icon.svg'),
(3325, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/congrats-shape.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/congrats-shape.png'),
(3326, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/crown-icon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/crown-icon.svg'),
(3327, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/emailkit-logo.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/emailkit-logo.png'),
(3328, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/featured.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/featured.svg'),
(3329, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/fundengine-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/fundengine-logo.svg'),
(3330, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/getgenie-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/getgenie-logo.svg'),
(3331, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/gutenkit-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/gutenkit-logo.svg'),
(3332, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/heart-icon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/heart-icon.svg'),
(3333, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/logo.svg'),
(3334, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/metform-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/metform-logo.svg'),
(3335, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.png'),
(3336, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-01.svg'),
(3337, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.png'),
(3338, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-02.svg'),
(3339, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.png'),
(3340, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-03.svg'),
(3341, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.png'),
(3342, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-04.svg'),
(3343, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.png'),
(3344, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-05.svg'),
(3345, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.png'),
(3346, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-06.svg'),
(3347, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-07.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-07.svg'),
(3348, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-08.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/module-icon-08.svg'),
(3349, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/popupkit-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/popupkit-logo.svg'),
(3350, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/rating-icon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/rating-icon.svg'),
(3351, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-01.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-01.png'),
(3352, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-02.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-02.png'),
(3353, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-03.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-03.png'),
(3354, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-04.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-04.png'),
(3355, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-05.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-05.png'),
(3356, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-06.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-06.png'),
(3357, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-07.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-07.png'),
(3358, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-08.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-08.png'),
(3359, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-09.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-09.png'),
(3360, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-10.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-10.png'),
(3361, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-11.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-11.png'),
(3362, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-12.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-12.png'),
(3363, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-13.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-13.png'),
(3364, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-14.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-14.png'),
(3365, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-15.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-15.png'),
(3366, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-16.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-16.png'),
(3367, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-17.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-17.png'),
(3368, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-18.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-18.png'),
(3369, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-19.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-19.png'),
(3370, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-20.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-20.png'),
(3371, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-21.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-21.png'),
(3372, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-22.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-22.png'),
(3373, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-23.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-23.png'),
(3374, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-24.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shape-24.png'),
(3375, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shopengine-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/shopengine-logo.svg'),
(3376, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/step-2-shape.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/step-2-shape.png'),
(3377, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/support-icon.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/support-icon.svg'),
(3378, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/tutorial-banner.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/tutorial-banner.png'),
(3379, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/ultimate-review-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/ultimate-review-logo.svg'),
(3380, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-fundraising-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-fundraising-logo.svg'),
(3381, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-social-logo.svg', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/onboard/wp-social-logo.svg'),
(3382, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/rate-now-thumb.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/rate-now-thumb.png'),
(3383, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/subscribed-thumb.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/subscribed-thumb.png'),
(3384, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/suport-thumb.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/suport-thumb.png'),
(3385, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/user-data-thumb.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/user-data-thumb.png'),
(3386, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/images/video-icon.png', 'wp-content/plugins/elementskit-lite/libs/framework/assets/images/video-icon.png'),
(3387, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/js/ekit-admin-core.js', 'wp-content/plugins/elementskit-lite/libs/framework/assets/js/ekit-admin-core.js'),
(3388, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/assets/js/frontend-script.js', 'wp-content/plugins/elementskit-lite/libs/framework/assets/js/frontend-script.js'),
(3389, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/attr.php', 'wp-content/plugins/elementskit-lite/libs/framework/attr.php'),
(3390, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/ajax.php', 'wp-content/plugins/elementskit-lite/libs/framework/classes/ajax.php'),
(3391, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/onboard-status.php', 'wp-content/plugins/elementskit-lite/libs/framework/classes/onboard-status.php'),
(3392, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-data-sender.php', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-data-sender.php'),
(3393, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-installer.php', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-installer.php'),
(3394, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-skin.php', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-skin.php'),
(3395, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-status.php', 'wp-content/plugins/elementskit-lite/libs/framework/classes/plugin-status.php'),
(3396, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/classes/utils.php', 'wp-content/plugins/elementskit-lite/libs/framework/classes/utils.php'),
(3397, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/color.php', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/color.php'),
(3398, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/date.php', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/date.php'),
(3399, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/hidden.php', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/hidden.php'),
(3400, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/radio.php', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/radio.php'),
(3401, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/switch.php', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/switch.php'),
(3402, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/controls/settings/text.php', 'wp-content/plugins/elementskit-lite/libs/framework/controls/settings/text.php'),
(3403, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/init.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/init.php'),
(3404, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/layout-onboard.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/layout-onboard.php'),
(3405, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/layout-settings.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/layout-settings.php'),
(3406, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/layout-user-consent-for-banner.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/layout-user-consent-for-banner.php'),
(3407, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-01.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-01.php'),
(3408, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-02.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-02.php'),
(3409, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-03.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-03.php'),
(3410, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-04.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-04.php'),
(3411, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-05.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-05.php'),
(3412, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-06.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/onboard-steps/step-06.php'),
(3413, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/dashboard.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/dashboard.php'),
(3414, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/modules.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/modules.php'),
(3415, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/usersettings.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/usersettings.php'),
(3416, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/widgets.php', 'wp-content/plugins/elementskit-lite/libs/framework/views/settings-sections/widgets.php'),
(3417, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/notice/notice.php', 'wp-content/plugins/elementskit-lite/libs/notice/notice.php'),
(3418, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/our-plugins/our-plugins.php', 'wp-content/plugins/elementskit-lite/libs/our-plugins/our-plugins.php'),
(3419, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/community.png', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/community.png'),
(3420, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/documentation.png', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/documentation.png'),
(3421, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/request.png', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/request.png'),
(3422, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/roadmaps.png', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/roadmaps.png'),
(3423, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/support.png', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/support.png'),
(3424, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/videos.png', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/assets/videos.png'),
(3425, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-awareness/pro-awareness.php', 'wp-content/plugins/elementskit-lite/libs/pro-awareness/pro-awareness.php'),
(3426, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-label/admin-notice.php', 'wp-content/plugins/elementskit-lite/libs/pro-label/admin-notice.php'),
(3427, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-label/init.php', 'wp-content/plugins/elementskit-lite/libs/pro-label/init.php'),
(3428, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/pro-label/views/modal.php', 'wp-content/plugins/elementskit-lite/libs/pro-label/views/modal.php'),
(3429, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/rating/rating.php', 'wp-content/plugins/elementskit-lite/libs/rating/rating.php'),
(3430, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/stories/stories.php', 'wp-content/plugins/elementskit-lite/libs/stories/stories.php'),
(3431, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/stories/views/template.php', 'wp-content/plugins/elementskit-lite/libs/stories/views/template.php'),
(3432, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template/loader.php', 'wp-content/plugins/elementskit-lite/libs/template/loader.php'),
(3433, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template/transformer.php', 'wp-content/plugins/elementskit-lite/libs/template/transformer.php'),
(3434, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/images/placeholder.9201fa54.png', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/images/placeholder.9201fa54.png'),
(3435, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library-rtl.css', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library-rtl.css'),
(3436, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.asset.php', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.asset.php'),
(3437, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.css', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.css'),
(3438, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.js', 'wp-content/plugins/elementskit-lite/libs/template-library/assets/library/editor-template-library.js'),
(3439, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/template-library/init.php', 'wp-content/plugins/elementskit-lite/libs/template-library/init.php'),
(3440, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/data-migration.php', 'wp-content/plugins/elementskit-lite/libs/xs-migration/data-migration.php'),
(3441, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/initiator.php', 'wp-content/plugins/elementskit-lite/libs/xs-migration/initiator.php'),
(3442, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/migration-contract.php', 'wp-content/plugins/elementskit-lite/libs/xs-migration/migration-contract.php'),
(3443, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/libs/xs-migration/migration.php', 'wp-content/plugins/elementskit-lite/libs/xs-migration/migration.php'),
(3444, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/ajax-select2-api.php', 'wp-content/plugins/elementskit-lite/modules/controls/ajax-select2-api.php'),
(3445, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/ajax-select2.php', 'wp-content/plugins/elementskit-lite/modules/controls/ajax-select2.php'),
(3446, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/css/imagechoose.css', 'wp-content/plugins/elementskit-lite/modules/controls/assets/css/imagechoose.css'),
(3447, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-editor.css', 'wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-editor.css'),
(3448, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-inspactor.css', 'wp-content/plugins/elementskit-lite/modules/controls/assets/css/widgetarea-inspactor.css'),
(3449, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/ajaxchoose.js', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/ajaxchoose.js'),
(3450, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/ekiticons.json', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/ekiticons.json'),
(3451, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/imagechoose.js', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/imagechoose.js'),
(3452, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-editor.js', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-editor.js'),
(3453, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-inspactor.js', 'wp-content/plugins/elementskit-lite/modules/controls/assets/js/widgetarea-inspactor.js'),
(3454, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/control-manager.php', 'wp-content/plugins/elementskit-lite/modules/controls/control-manager.php'),
(3455, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/image-choose.php', 'wp-content/plugins/elementskit-lite/modules/controls/image-choose.php'),
(3456, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/init.php', 'wp-content/plugins/elementskit-lite/modules/controls/init.php'),
(3457, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/widget-area-modal.php', 'wp-content/plugins/elementskit-lite/modules/controls/widget-area-modal.php'),
(3458, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/widget-area-utils.php', 'wp-content/plugins/elementskit-lite/modules/controls/widget-area-utils.php'),
(3459, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/controls/widget-area.php', 'wp-content/plugins/elementskit-lite/modules/controls/widget-area.php'),
(3460, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt-api.php', 'wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt-api.php'),
(3461, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt.php', 'wp-content/plugins/elementskit-lite/modules/dynamic-content/cpt.php'),
(3462, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/dynamic-content/init.php', 'wp-content/plugins/elementskit-lite/modules/dynamic-content/init.php'),
(3463, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/css/ekiticons.css', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/css/ekiticons.css'),
(3464, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/fonts/elementskit.woff', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/fonts/elementskit.woff'),
(3465, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/js/ekiticons.json', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/js/ekiticons.json'),
(3466, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/json/icons.json', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/assets/json/icons.json'),
(3467, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icon-list.php', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icon-list.php'),
(3468, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icons.php', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/icons.php'),
(3469, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/init.php', 'wp-content/plugins/elementskit-lite/modules/elementskit-icon-pack/init.php'),
(3470, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/activator.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/activator.php'),
(3471, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/admin-style.css', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/admin-style.css'),
(3472, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/select2.min.css', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/css/select2.min.css'),
(3473, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/admin-script.js', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/admin-script.js'),
(3474, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/select2.min.js', 'wp-content/plugins/elementskit-lite/modules/header-footer/assets/js/select2.min.js'),
(3475, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/cpt-api.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/cpt-api.php'),
(3476, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/cpt-hooks.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/cpt-hooks.php'),
(3477, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/cpt.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/cpt.php'),
(3478, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/init.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/init.php'),
(3479, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/astra.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/astra.php'),
(3480, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/bbtheme.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/bbtheme.php'),
(3481, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/generatepress.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/generatepress.php'),
(3482, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/genesis.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/genesis.php'),
(3483, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing-functions.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing-functions.php'),
(3484, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/my-listing.php'),
(3485, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/neve.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/neve.php'),
(3486, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/oceanwp.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/oceanwp.php'),
(3487, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/theme-support.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/theme-support.php'),
(3488, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/twenty-nineteen.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/theme-hooks/twenty-nineteen.php'),
(3489, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/views/modal-editor.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/views/modal-editor.php'),
(3490, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-footer.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-footer.php'),
(3491, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-header.php', 'wp-content/plugins/elementskit-lite/modules/header-footer/views/theme-support-header.php'),
(3492, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/ekit-layout-library.css', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/ekit-layout-library.css'),
(3493, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/preview.css', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/css/preview.css'),
(3494, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/banner.jpg', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/banner.jpg'),
(3495, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/info.svg', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/img/info.svg'),
(3496, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/assets/js/ekit-layout-library.js', 'wp-content/plugins/elementskit-lite/modules/layout-manager/assets/js/ekit-layout-library.js'),
(3497, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/init.php', 'wp-content/plugins/elementskit-lite/modules/layout-manager/init.php'),
(3498, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/layout-import-api.php', 'wp-content/plugins/elementskit-lite/modules/layout-manager/layout-import-api.php'),
(3499, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/layout-list-api.php', 'wp-content/plugins/elementskit-lite/modules/layout-manager/layout-list-api.php'),
(3500, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/layout-manager/library-source.php', 'wp-content/plugins/elementskit-lite/modules/layout-manager/library-source.php'),
(3501, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/api.php', 'wp-content/plugins/elementskit-lite/modules/megamenu/api.php'),
(3502, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/admin-style.css', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/admin-style.css'),
(3503, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/jquery.fonticonpicker.css', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/css/jquery.fonticonpicker.css'),
(3504, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.eot', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.eot'),
(3505, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.svg', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.svg'),
(3506, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.ttf', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.ttf'),
(3507, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.woff', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/fonts/iconpicker.woff'),
(3508, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/demo/logo.png', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/demo/logo.png'),
(3509, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/elementor-icon.png', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/images/elementor-icon.png'),
(3510, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/admin-script.js', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/admin-script.js'),
(3511, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/jquery.fonticonpicker.min.js', 'wp-content/plugins/elementskit-lite/modules/megamenu/assets/js/jquery.fonticonpicker.min.js'),
(3512, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/init.php', 'wp-content/plugins/elementskit-lite/modules/megamenu/init.php'),
(3513, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/options.php', 'wp-content/plugins/elementskit-lite/modules/megamenu/options.php'),
(3514, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/views/options-megamenu.php', 'wp-content/plugins/elementskit-lite/modules/megamenu/views/options-megamenu.php'),
(3515, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/views/options-menu-item.php', 'wp-content/plugins/elementskit-lite/modules/megamenu/views/options-menu-item.php'),
(3516, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/megamenu/walker-nav-menu.php', 'wp-content/plugins/elementskit-lite/modules/megamenu/walker-nav-menu.php'),
(3517, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/css/one-page-scroll.min.css', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/css/one-page-scroll.min.css'),
(3518, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/editor.js', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/editor.js'),
(3519, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/one-page-scroll.js', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/assets/js/one-page-scroll.js'),
(3520, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls-pro.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls-pro.php'),
(3521, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/extend-controls.php'),
(3522, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/init.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/init.php'),
(3523, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-dot-move.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-dot-move.php'),
(3524, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-in.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-in.php'),
(3525, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-out.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-fill-out.php'),
(3526, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-scale-up.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-scale-up.php'),
(3527, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-dot.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-dot.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(3528, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-simple.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke-simple.php'),
(3529, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-stroke.php'),
(3530, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-timeline.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/circle-timeline.php'),
(3531, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/icon.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/icon.php'),
(3532, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-fill.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-fill.php'),
(3533, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-grow.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-grow.php'),
(3534, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-move.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-move.php'),
(3535, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-shrink.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/line-shrink.php'),
(3536, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/square-scale-up.php', 'wp-content/plugins/elementskit-lite/modules/onepage-scroll/nav-styles/square-scale-up.php'),
(3537, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/api/common.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/api/common.php'),
(3538, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-common.css', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-common.css'),
(3539, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-editor.css', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/css/ekit-widget-builder-editor.css'),
(3540, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/no-image.png', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/no-image.png'),
(3541, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/transparent_bg.png', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/transparent_bg.png'),
(3542, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/wysiwyg.png', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/img/wysiwyg.png'),
(3543, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/assets/js/ekit-widget-builder-editor.js', 'wp-content/plugins/elementskit-lite/modules/widget-builder/assets/js/ekit-widget-builder-editor.js'),
(3544, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-animation.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-animation.php'),
(3545, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-background.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-background.php'),
(3546, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-border.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-border.php'),
(3547, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-box-shadow.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-box-shadow.php'),
(3548, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-choose.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-choose.php'),
(3549, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-code.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-code.php'),
(3550, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-color.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-color.php'),
(3551, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-date-time.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-date-time.php'),
(3552, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-dimensions.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-dimensions.php'),
(3553, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-font.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-font.php'),
(3554, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-gallery.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-gallery.php'),
(3555, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-hover.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-hover.php'),
(3556, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-icons.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-icons.php'),
(3557, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-dimensions.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-dimensions.php'),
(3558, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-size.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-image-size.php'),
(3559, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-input.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-input.php'),
(3560, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-media.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-media.php'),
(3561, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-number.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-number.php'),
(3562, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select.php'),
(3563, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select2.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-select2.php'),
(3564, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-slider.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-slider.php'),
(3565, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-switch.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-switch.php'),
(3566, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-area.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-area.php'),
(3567, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-shadow.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-text-shadow.php'),
(3568, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-typography.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-typography.php'),
(3569, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-url.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-url.php'),
(3570, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-wys.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/control-type-wys.php'),
(3571, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-base.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-base.php'),
(3572, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-contract.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-contract.php'),
(3573, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-factory.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/ct-factory.php'),
(3574, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/controls/widget-writer.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/controls/widget-writer.php'),
(3575, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/cpt.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/cpt.php'),
(3576, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.ttf', 'wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.ttf'),
(3577, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.woff', 'wp-content/plugins/elementskit-lite/modules/widget-builder/fonts/element-icons.woff'),
(3578, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/init.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/init.php'),
(3579, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/live-action.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/live-action.php'),
(3580, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/views/builder.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/views/builder.php'),
(3581, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/modules/widget-builder/widget-file.php', 'wp-content/plugins/elementskit-lite/modules/widget-builder/widget-file.php'),
(3582, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/plugin.php', 'wp-content/plugins/elementskit-lite/plugin.php'),
(3583, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/readme.txt', 'wp-content/plugins/elementskit-lite/readme.txt'),
(3584, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/traits/singleton.php', 'wp-content/plugins/elementskit-lite/traits/singleton.php'),
(3585, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/accordion/accordion-handler.php', 'wp-content/plugins/elementskit-lite/widgets/accordion/accordion-handler.php'),
(3586, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/accordion/accordion.php', 'wp-content/plugins/elementskit-lite/widgets/accordion/accordion.php'),
(3587, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top-handler.php', 'wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top-handler.php'),
(3588, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top.php', 'wp-content/plugins/elementskit-lite/widgets/back-to-top/back-to-top.php'),
(3589, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-1.png', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-1.png'),
(3590, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-2.png', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-2.png'),
(3591, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-3.png', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/assets/imagechoose/floating-date-3.png'),
(3592, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts-handler.php', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts-handler.php'),
(3593, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts.php', 'wp-content/plugins/elementskit-lite/widgets/blog-posts/blog-posts.php'),
(3594, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours-handler.php', 'wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours-handler.php'),
(3595, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours.php', 'wp-content/plugins/elementskit-lite/widgets/business-hours/business-hours.php'),
(3596, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/button/button-handler.php', 'wp-content/plugins/elementskit-lite/widgets/button/button-handler.php'),
(3597, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/button/button.php', 'wp-content/plugins/elementskit-lite/widgets/button/button.php'),
(3598, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms-handler.php', 'wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms-handler.php'),
(3599, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms.php', 'wp-content/plugins/elementskit-lite/widgets/caldera-forms/caldera-forms.php'),
(3600, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/category-list/category-list-handler.php', 'wp-content/plugins/elementskit-lite/widgets/category-list/category-list-handler.php'),
(3601, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/category-list/category-list.php', 'wp-content/plugins/elementskit-lite/widgets/category-list/category-list.php'),
(3602, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo-handler.php', 'wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo-handler.php'),
(3603, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo.php', 'wp-content/plugins/elementskit-lite/widgets/client-logo/client-logo.php'),
(3604, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7-handler.php', 'wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7-handler.php'),
(3605, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7.php', 'wp-content/plugins/elementskit-lite/widgets/contact-form7/contact-form7.php'),
(3606, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/1.png', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/1.png'),
(3607, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/2.png', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/2.png'),
(3608, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/3.png', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/3.png'),
(3609, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/4.png', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/4.png'),
(3610, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/5.png', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/5.png'),
(3611, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/6.png', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/assets/imagechoose/6.png'),
(3612, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer-handler.php', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer-handler.php'),
(3613, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer.php', 'wp-content/plugins/elementskit-lite/widgets/countdown-timer/countdown-timer.php'),
(3614, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps-handler.php', 'wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps-handler.php'),
(3615, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps.php', 'wp-content/plugins/elementskit-lite/widgets/drop-caps/drop-caps.php'),
(3616, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button-handler.php', 'wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button-handler.php'),
(3617, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button.php', 'wp-content/plugins/elementskit-lite/widgets/dual-button/dual-button.php'),
(3618, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/faq/faq-handler.php', 'wp-content/plugins/elementskit-lite/widgets/faq/faq-handler.php'),
(3619, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/faq/faq.php', 'wp-content/plugins/elementskit-lite/widgets/faq/faq.php'),
(3620, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms-handler.php', 'wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms-handler.php'),
(3621, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms.php', 'wp-content/plugins/elementskit-lite/widgets/fluent-forms/fluent-forms.php'),
(3622, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/funfact/funfact-handler.php', 'wp-content/plugins/elementskit-lite/widgets/funfact/funfact-handler.php'),
(3623, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/funfact/funfact.php', 'wp-content/plugins/elementskit-lite/widgets/funfact/funfact.php'),
(3624, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-info/header-info-handler.php', 'wp-content/plugins/elementskit-lite/widgets/header-info/header-info-handler.php'),
(3625, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-info/header-info.php', 'wp-content/plugins/elementskit-lite/widgets/header-info/header-info.php'),
(3626, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas-handler.php', 'wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas-handler.php'),
(3627, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas.php', 'wp-content/plugins/elementskit-lite/widgets/header-offcanvas/header-offcanvas.php'),
(3628, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-search/header-search-handler.php', 'wp-content/plugins/elementskit-lite/widgets/header-search/header-search-handler.php'),
(3629, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/header-search/header-search.php', 'wp-content/plugins/elementskit-lite/widgets/header-search/header-search.php'),
(3630, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/1.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/1.png'),
(3631, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/10.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/10.png'),
(3632, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/11.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/11.png'),
(3633, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/12.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/12.png'),
(3634, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/2.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/2.png'),
(3635, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/3.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/3.png'),
(3636, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/4.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/4.png'),
(3637, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/5.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/5.png'),
(3638, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/6.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/6.png'),
(3639, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/7.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/7.png'),
(3640, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/8.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/8.png'),
(3641, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/9.png', 'wp-content/plugins/elementskit-lite/widgets/heading/assets/imagechoose/9.png'),
(3642, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/heading-handler.php', 'wp-content/plugins/elementskit-lite/widgets/heading/heading-handler.php'),
(3643, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/heading/heading.php', 'wp-content/plugins/elementskit-lite/widgets/heading/heading.php'),
(3644, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box-handler.php', 'wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box-handler.php'),
(3645, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box.php', 'wp-content/plugins/elementskit-lite/widgets/icon-box/icon-box.php'),
(3646, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover-handler.php', 'wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover-handler.php'),
(3647, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover.php', 'wp-content/plugins/elementskit-lite/widgets/icon-hover/icon-hover.php'),
(3648, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/icon-hover/readme.txt', 'wp-content/plugins/elementskit-lite/widgets/icon-hover/readme.txt'),
(3649, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion-handler.php', 'wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion-handler.php'),
(3650, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion.php', 'wp-content/plugins/elementskit-lite/widgets/image-accordion/image-accordion.php'),
(3651, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-box/image-box-handler.php', 'wp-content/plugins/elementskit-lite/widgets/image-box/image-box-handler.php'),
(3652, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-box/image-box.php', 'wp-content/plugins/elementskit-lite/widgets/image-box/image-box.php'),
(3653, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison-handler.php', 'wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison-handler.php'),
(3654, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison.php', 'wp-content/plugins/elementskit-lite/widgets/image-comparison/image-comparison.php'),
(3655, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/editor.css', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/editor.css'),
(3656, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/font-awesome.min.css', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/font-awesome.min.css'),
(3657, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/odometer-theme-default.css', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/odometer-theme-default.css'),
(3658, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/responsive.css', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/responsive.css'),
(3659, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/rtl.css', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/rtl.css'),
(3660, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles-pro.css', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles-pro.css'),
(3661, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles.css', 'wp-content/plugins/elementskit-lite/widgets/init/assets/css/widget-styles.css'),
(3662, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/FontAwesome.otf', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/FontAwesome.otf'),
(3663, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/elementskit.woff', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/elementskit.woff'),
(3664, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.eot', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.eot'),
(3665, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.svg', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.svg'),
(3666, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.ttf', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.ttf'),
(3667, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff'),
(3668, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff2', 'wp-content/plugins/elementskit-lite/widgets/init/assets/fonts/fontawesome-webfont.woff2'),
(3669, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/ajax-loader.gif', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/ajax-loader.gif'),
(3670, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/arrow.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/arrow.png'),
(3671, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.png'),
(3672, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.svg', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/cross-out.svg'),
(3673, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/elementor-icon.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/elementor-icon.png'),
(3674, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/reactions_12_2017.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/reactions_12_2017.png'),
(3675, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc.png'),
(3676, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc_disabled.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_asc_disabled.png'),
(3677, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc.png'),
(3678, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc_disabled.png', 'wp-content/plugins/elementskit-lite/widgets/init/assets/img/sort_desc_disabled.png'),
(3679, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/animate-circle.min.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/animate-circle.min.js'),
(3680, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/chart.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/chart.js'),
(3681, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/datatables.min.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/datatables.min.js'),
(3682, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/elementor.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/elementor.js'),
(3683, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/gmaps.min.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/gmaps.min.js'),
(3684, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/goodshare.min.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/goodshare.min.js'),
(3685, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/odometer.min.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/odometer.min.js'),
(3686, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/assets/js/widget-scripts.js', 'wp-content/plugins/elementskit-lite/widgets/init/assets/js/widget-scripts.js'),
(3687, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/init/enqueue-scripts.php', 'wp-content/plugins/elementskit-lite/widgets/init/enqueue-scripts.php'),
(3688, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.init.js', 'wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.init.js'),
(3689, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.min.js', 'wp-content/plugins/elementskit-lite/widgets/lottie/assets/js/lottie.min.js'),
(3690, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/json-handler.php', 'wp-content/plugins/elementskit-lite/widgets/lottie/json-handler.php'),
(3691, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/lottie-handler.php', 'wp-content/plugins/elementskit-lite/widgets/lottie/lottie-handler.php'),
(3692, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/lottie/lottie.php', 'wp-content/plugins/elementskit-lite/widgets/lottie/lottie.php'),
(3693, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/classes/mail-chimp-rest.php', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/classes/mail-chimp-rest.php'),
(3694, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-api.php', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-api.php'),
(3695, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-handler.php', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp-handler.php'),
(3696, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp.php', 'wp-content/plugins/elementskit-lite/widgets/mail-chimp/mail-chimp.php'),
(3697, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-handler.php', 'wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-handler.php'),
(3698, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-walker.php', 'wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu-walker.php'),
(3699, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu.php', 'wp-content/plugins/elementskit-lite/widgets/nav-menu/nav-menu.php'),
(3700, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms-handler.php', 'wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms-handler.php'),
(3701, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms.php', 'wp-content/plugins/elementskit-lite/widgets/ninja-forms/ninja-forms.php'),
(3702, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/page-list/page-list-handler.php', 'wp-content/plugins/elementskit-lite/widgets/page-list/page-list-handler.php'),
(3703, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/page-list/page-list.php', 'wp-content/plugins/elementskit-lite/widgets/page-list/page-list.php'),
(3704, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/piechart/piechart-handler.php', 'wp-content/plugins/elementskit-lite/widgets/piechart/piechart-handler.php'),
(3705, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/piechart/piechart.php', 'wp-content/plugins/elementskit-lite/widgets/piechart/piechart.php'),
(3706, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid-handler.php', 'wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid-handler.php'),
(3707, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid.php', 'wp-content/plugins/elementskit-lite/widgets/post-grid/post-grid.php'),
(3708, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-list/post-list-handler.php', 'wp-content/plugins/elementskit-lite/widgets/post-list/post-list-handler.php'),
(3709, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-list/post-list.php', 'wp-content/plugins/elementskit-lite/widgets/post-list/post-list.php'),
(3710, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab-handler.php', 'wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab-handler.php'),
(3711, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab.php', 'wp-content/plugins/elementskit-lite/widgets/post-tab/post-tab.php'),
(3712, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/pricing/pricing-handler.php', 'wp-content/plugins/elementskit-lite/widgets/pricing/pricing-handler.php'),
(3713, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/pricing/pricing.php', 'wp-content/plugins/elementskit-lite/widgets/pricing/pricing.php'),
(3714, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar-handler.php', 'wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar-handler.php'),
(3715, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar.php', 'wp-content/plugins/elementskit-lite/widgets/progressbar/progressbar.php'),
(3716, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social/readme.txt', 'wp-content/plugins/elementskit-lite/widgets/social/readme.txt'),
(3717, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social/social-handler.php', 'wp-content/plugins/elementskit-lite/widgets/social/social-handler.php'),
(3718, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social/social.php', 'wp-content/plugins/elementskit-lite/widgets/social/social.php'),
(3719, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social-share/social-share-handler.php', 'wp-content/plugins/elementskit-lite/widgets/social-share/social-share-handler.php'),
(3720, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/social-share/social-share.php', 'wp-content/plugins/elementskit-lite/widgets/social-share/social-share.php'),
(3721, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-01.png', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-01.png'),
(3722, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-02.png', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-02.png'),
(3723, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-03.png', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-03.png'),
(3724, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-04.png', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-04.png'),
(3725, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-05.png', 'wp-content/plugins/elementskit-lite/widgets/tab/assets/imagechoose/tab-05.png'),
(3726, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/tab-handler.php', 'wp-content/plugins/elementskit-lite/widgets/tab/tab-handler.php'),
(3727, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tab/tab.php', 'wp-content/plugins/elementskit-lite/widgets/tab/tab.php'),
(3728, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress-handler.php', 'wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress-handler.php'),
(3729, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress.php', 'wp-content/plugins/elementskit-lite/widgets/tablepress/tablepress.php'),
(3730, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/team/parts/social-list.php', 'wp-content/plugins/elementskit-lite/widgets/team/parts/social-list.php'),
(3731, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/team/team-handler.php', 'wp-content/plugins/elementskit-lite/widgets/team/team-handler.php'),
(3732, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/team/team.php', 'wp-content/plugins/elementskit-lite/widgets/team/team.php'),
(3733, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/1.png', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/1.png'),
(3734, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/2.png', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/2.png'),
(3735, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/3.png', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/3.png'),
(3736, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/4.png', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/4.png'),
(3737, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/5.png', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/5.png'),
(3738, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/6.png', 'wp-content/plugins/elementskit-lite/widgets/testimonial/assets/imagechoose/6.png'),
(3739, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/common/link.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/common/link.php'),
(3740, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style1.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style1.php'),
(3741, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style2.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style2.php'),
(3742, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style3.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style3.php'),
(3743, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style4.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style4.php'),
(3744, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style5.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style5.php'),
(3745, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/style/style6.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/style/style6.php'),
(3746, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial-handler.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial-handler.php'),
(3747, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial.php', 'wp-content/plugins/elementskit-lite/widgets/testimonial/testimonial.php'),
(3748, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/video/parts/video-button.php', 'wp-content/plugins/elementskit-lite/widgets/video/parts/video-button.php'),
(3749, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/video/video-handler.php', 'wp-content/plugins/elementskit-lite/widgets/video/video-handler.php'),
(3750, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/video/video.php', 'wp-content/plugins/elementskit-lite/widgets/video/video.php'),
(3751, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms-handler.php', 'wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms-handler.php'),
(3752, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms.php', 'wp-content/plugins/elementskit-lite/widgets/we-forms/we-forms.php'),
(3753, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/widget-notice.php', 'wp-content/plugins/elementskit-lite/widgets/widget-notice.php'),
(3754, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms-handler.php', 'wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms-handler.php'),
(3755, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms.php', 'wp-content/plugins/elementskit-lite/widgets/wp-forms/wp-forms.php'),
(3756, '/home/binawebp/omsrislb.my/wp-content/plugins/elementskit-lite/wpml-config.xml', 'wp-content/plugins/elementskit-lite/wpml-config.xml'),
(3757, '/home/binawebp/omsrislb.my/wp-content/plugins/index.php', 'wp-content/plugins/index.php'),
(3758, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/admin.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/admin.css'),
(3759, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/btl-admin.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/btl-admin.css'),
(3760, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-btl.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-btl.css'),
(3761, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark-btl.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark-btl.css'),
(3762, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor-dark.css'),
(3763, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/editor.css'),
(3764, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/index.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/index.php'),
(3765, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/main.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/main.css'),
(3766, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/preview.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/preview.css'),
(3767, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/swiper.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/css/swiper.min.css'),
(3768, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ele-btl-preview-placeholder.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ele-btl-preview-placeholder.png'),
(3769, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-poopart-icon.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-poopart-icon.png'),
(3770, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-tm.svg', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/ooohboi-tm.svg'),
(3771, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/tpae.svg', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/tpae.svg'),
(3772, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdeisngkit-notice-logo.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdeisngkit-notice-logo.png'),
(3773, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdesignkit-product-logo.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/img/products/wdesignkit-product-logo.png'),
(3774, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton-min.js'),
(3775, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/butterbutton.js'),
(3776, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz-min.js'),
(3777, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/commentz.js'),
(3778, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras-min.js'),
(3779, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/container-extras.js'),
(3780, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz-min.js'),
(3781, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/counterz.js'),
(3782, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin-min.js'),
(3783, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-admin.js'),
(3784, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor-min.js'),
(3785, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ele-btl-editor.js'),
(3786, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/extend-repeater.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/extend-repeater.js'),
(3787, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider-min.js'),
(3788, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/glider.js'),
(3789, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri-min.js'),
(3790, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/harakiri.js'),
(3791, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator-min.js'),
(3792, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/hoveranimator.js'),
(3793, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/index.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/index.php'),
(3794, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/interactor.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/interactor.js'),
(3795, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor-min.js'),
(3796, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ob-steroids-editor.js'),
(3797, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator-min.js'),
(3798, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ohanimator.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(3799, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-libs-locomotion.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-libs-locomotion.js'),
(3800, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids-min.js'),
(3801, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/ooohboi-steroids.js'),
(3802, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive-min.js'),
(3803, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/perspektive.js'),
(3804, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph-min.js'),
(3805, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/photomorph.js'),
(3806, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart-min.js'),
(3807, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/poopart.js'),
(3808, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman-min.js'),
(3809, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/postman.js'),
(3810, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo-min.js'),
(3811, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/pseudo.js'),
(3812, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop-min.js'),
(3813, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/searchcop.js'),
(3814, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat-min.js'),
(3815, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/spacerat.js'),
(3816, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr-min.js'),
(3817, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/tabbr.js'),
(3818, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker-min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker-min.js'),
(3819, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/js/widgetstalker.js'),
(3820, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdesignkit-logo.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdesignkit-logo.png'),
(3821, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdkit-frame.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/images/wdkit-frame.png'),
(3822, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-logo.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-logo.css'),
(3823, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.css'),
(3824, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/assets/wdesignkit/ooohboi-wdkit-preview-popup.js'),
(3825, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/index.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/index.php'),
(3826, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-better-templates-library.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-better-templates-library.php'),
(3827, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-breaking-bad.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-breaking-bad.php'),
(3828, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-bullet.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-bullet.php'),
(3829, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-butter-button.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-butter-button.php'),
(3830, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-commentz.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-commentz.php'),
(3831, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-container-extras.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-container-extras.php'),
(3832, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-counterz.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-counterz.php'),
(3833, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-glider.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-glider.php'),
(3834, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-harakiri.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-harakiri.php'),
(3835, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-hover-animator.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-hover-animator.php'),
(3836, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-icobox.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-icobox.php'),
(3837, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-imbox.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-imbox.php'),
(3838, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-interactor.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-interactor.php'),
(3839, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-kontrolz.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-kontrolz.php'),
(3840, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-locomotion.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-locomotion.php'),
(3841, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-oh-animator.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-oh-animator.php'),
(3842, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlaiz.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlaiz.php'),
(3843, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlay-underlay.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-overlay-underlay.php'),
(3844, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-paginini.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-paginini.php'),
(3845, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-perspektive.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-perspektive.php'),
(3846, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photogiraffe.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photogiraffe.php'),
(3847, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photomorph.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-photomorph.php'),
(3848, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-postman.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-postman.php'),
(3849, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-pseudo.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-pseudo.php'),
(3850, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-searchcop.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-searchcop.php'),
(3851, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-shadough.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-shadough.php'),
(3852, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-spacerat.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-spacerat.php'),
(3853, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-tabbr.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-tabbr.php'),
(3854, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-teleporter.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-teleporter.php'),
(3855, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-typo.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-typo.php'),
(3856, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-videomasq.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-videomasq.php'),
(3857, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-widget-stalker.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/controls/ooohboi-widget-stalker.php'),
(3858, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/common-functions.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/common-functions.php'),
(3859, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/ace-loader.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/ace-loader.min.js'),
(3860, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite.png'),
(3861, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite@2x.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen-sprite@2x.png'),
(3862, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.jquery.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.jquery.min.js'),
(3863, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/chosen.min.css'),
(3864, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/ace-loader.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/ace-loader.js'),
(3865, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/chosen.jquery.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/chosen.jquery.js'),
(3866, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.finderSelect.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.finderSelect.js'),
(3867, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.fine-uploader.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.fine-uploader.js'),
(3868, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.interdependencies.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.interdependencies.js'),
(3869, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.css'),
(3870, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/jquery.minicolors.js'),
(3871, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-color-picker.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-color-picker.js'),
(3872, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-datepicker.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-datepicker.js'),
(3873, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-fine-uploader.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-fine-uploader.js'),
(3874, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-chosen.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-chosen.js'),
(3875, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-finderselect.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-finderselect.js'),
(3876, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-trumbowyg.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-jquery-trumbowyg.js'),
(3877, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-minicolors.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/loader-minicolors.js'),
(3878, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/scripts.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/scripts.js'),
(3879, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/styles.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/styles.css'),
(3880, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/sweetalert.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/sweetalert.min.js'),
(3881, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/wp-color-picker-alpha.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/dev/wp-color-picker-alpha.js'),
(3882, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ace.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ace.js'),
(3883, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-beautify.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-beautify.js'),
(3884, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-elastic_tabstops_lite.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-elastic_tabstops_lite.js'),
(3885, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-emmet.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-emmet.js'),
(3886, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-error_marker.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-error_marker.js'),
(3887, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-keybinding_menu.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-keybinding_menu.js'),
(3888, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-language_tools.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-language_tools.js'),
(3889, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-linking.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-linking.js'),
(3890, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-modelist.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-modelist.js'),
(3891, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-options.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-options.js'),
(3892, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-rtl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-rtl.js'),
(3893, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-searchbox.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-searchbox.js'),
(3894, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-settings_menu.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-settings_menu.js'),
(3895, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-spellcheck.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-spellcheck.js'),
(3896, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-split.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-split.js'),
(3897, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-static_highlight.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-static_highlight.js'),
(3898, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-statusbar.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-statusbar.js'),
(3899, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-textarea.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-textarea.js'),
(3900, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-themelist.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-themelist.js'),
(3901, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-whitespace.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/ext-whitespace.js'),
(3902, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-emacs.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-emacs.js'),
(3903, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-vim.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/keybinding-vim.js'),
(3904, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abap.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abap.js'),
(3905, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abc.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-abc.js'),
(3906, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-actionscript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-actionscript.js'),
(3907, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ada.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ada.js'),
(3908, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-apache_conf.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-apache_conf.js'),
(3909, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-applescript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-applescript.js'),
(3910, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asciidoc.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asciidoc.js'),
(3911, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-asl.js'),
(3912, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-assembly_x86.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-assembly_x86.js'),
(3913, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-autohotkey.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-autohotkey.js'),
(3914, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-batchfile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-batchfile.js'),
(3915, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-bro.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-bro.js'),
(3916, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c9search.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c9search.js'),
(3917, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c_cpp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-c_cpp.js'),
(3918, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cirru.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cirru.js'),
(3919, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-clojure.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-clojure.js'),
(3920, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cobol.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-cobol.js'),
(3921, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coffee.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coffee.js'),
(3922, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coldfusion.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-coldfusion.js'),
(3923, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csharp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csharp.js'),
(3924, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_document.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_document.js'),
(3925, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_orchestra.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_orchestra.js'),
(3926, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_score.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csound_score.js'),
(3927, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-csp.js'),
(3928, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-css.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-css.js'),
(3929, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-curly.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-curly.js'),
(3930, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-d.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-d.js'),
(3931, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dart.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dart.js'),
(3932, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-diff.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-diff.js'),
(3933, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-django.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-django.js'),
(3934, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dockerfile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dockerfile.js'),
(3935, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dot.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-dot.js'),
(3936, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-drools.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-drools.js'),
(3937, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-edifact.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-edifact.js'),
(3938, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-eiffel.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-eiffel.js'),
(3939, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ejs.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ejs.js'),
(3940, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elixir.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elixir.js'),
(3941, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elm.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-elm.js'),
(3942, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-erlang.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-erlang.js'),
(3943, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-forth.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-forth.js'),
(3944, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fortran.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fortran.js'),
(3945, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fsharp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-fsharp.js'),
(3946, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ftl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ftl.js'),
(3947, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gcode.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gcode.js'),
(3948, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gherkin.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gherkin.js'),
(3949, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gitignore.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gitignore.js'),
(3950, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-glsl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-glsl.js'),
(3951, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gobstones.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-gobstones.js'),
(3952, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-golang.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-golang.js'),
(3953, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-graphqlschema.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-graphqlschema.js'),
(3954, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-groovy.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-groovy.js'),
(3955, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haml.js'),
(3956, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-handlebars.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-handlebars.js'),
(3957, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell.js'),
(3958, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell_cabal.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haskell_cabal.js'),
(3959, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haxe.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-haxe.js'),
(3960, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-hjson.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-hjson.js'),
(3961, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html.js'),
(3962, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_elixir.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_elixir.js'),
(3963, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_ruby.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-html_ruby.js'),
(3964, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ini.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ini.js'),
(3965, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-io.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-io.js'),
(3966, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jack.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jack.js'),
(3967, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jade.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jade.js'),
(3968, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-java.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-java.js'),
(3969, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-javascript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-javascript.js'),
(3970, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-json.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-json.js'),
(3971, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsoniq.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsoniq.js'),
(3972, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsp.js'),
(3973, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jssm.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jssm.js'),
(3974, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsx.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-jsx.js'),
(3975, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-julia.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-julia.js'),
(3976, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-kotlin.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-kotlin.js'),
(3977, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-latex.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-latex.js'),
(3978, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-less.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-less.js'),
(3979, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-liquid.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-liquid.js'),
(3980, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lisp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lisp.js'),
(3981, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-livescript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-livescript.js'),
(3982, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-logiql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-logiql.js'),
(3983, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lsl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lsl.js'),
(3984, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lua.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lua.js'),
(3985, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-luapage.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-luapage.js'),
(3986, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lucene.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-lucene.js'),
(3987, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-makefile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-makefile.js'),
(3988, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-markdown.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-markdown.js'),
(3989, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mask.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mask.js'),
(3990, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-matlab.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-matlab.js'),
(3991, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-maze.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-maze.js'),
(3992, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mel.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mel.js'),
(3993, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mixal.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mixal.js'),
(3994, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mushcode.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mushcode.js'),
(3995, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mysql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-mysql.js'),
(3996, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nix.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nix.js'),
(3997, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nsis.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-nsis.js'),
(3998, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-objectivec.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-objectivec.js'),
(3999, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ocaml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ocaml.js'),
(4000, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pascal.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pascal.js'),
(4001, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-perl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-perl.js'),
(4002, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pgsql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pgsql.js'),
(4003, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php.js'),
(4004, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php_laravel_blade.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-php_laravel_blade.js'),
(4005, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pig.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-pig.js'),
(4006, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-plain_text.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-plain_text.js'),
(4007, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-powershell.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-powershell.js'),
(4008, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-praat.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-praat.js'),
(4009, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-prolog.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-prolog.js'),
(4010, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-properties.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-properties.js'),
(4011, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-protobuf.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-protobuf.js'),
(4012, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-puppet.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-puppet.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(4013, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-python.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-python.js'),
(4014, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-r.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-r.js'),
(4015, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-razor.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-razor.js'),
(4016, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rdoc.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rdoc.js'),
(4017, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-red.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-red.js'),
(4018, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-redshift.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-redshift.js'),
(4019, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rhtml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rhtml.js'),
(4020, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rst.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rst.js'),
(4021, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ruby.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-ruby.js'),
(4022, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rust.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-rust.js'),
(4023, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sass.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sass.js'),
(4024, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scad.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scad.js'),
(4025, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scala.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scala.js'),
(4026, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scheme.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scheme.js'),
(4027, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scss.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-scss.js'),
(4028, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sh.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sh.js'),
(4029, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sjs.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sjs.js'),
(4030, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-slim.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-slim.js'),
(4031, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-smarty.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-smarty.js'),
(4032, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-snippets.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-snippets.js'),
(4033, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-soy_template.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-soy_template.js'),
(4034, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-space.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-space.js'),
(4035, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sparql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sparql.js'),
(4036, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sql.js'),
(4037, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sqlserver.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-sqlserver.js'),
(4038, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-stylus.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-stylus.js'),
(4039, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-svg.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-svg.js'),
(4040, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-swift.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-swift.js'),
(4041, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tcl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tcl.js'),
(4042, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-terraform.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-terraform.js'),
(4043, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tex.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tex.js'),
(4044, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-text.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-text.js'),
(4045, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-textile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-textile.js'),
(4046, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-toml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-toml.js'),
(4047, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tsx.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-tsx.js'),
(4048, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-turtle.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-turtle.js'),
(4049, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-twig.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-twig.js'),
(4050, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-typescript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-typescript.js'),
(4051, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vala.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vala.js'),
(4052, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vbscript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vbscript.js'),
(4053, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-velocity.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-velocity.js'),
(4054, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-verilog.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-verilog.js'),
(4055, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vhdl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-vhdl.js'),
(4056, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-wollok.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-wollok.js'),
(4057, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xml.js'),
(4058, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xquery.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-xquery.js'),
(4059, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-yaml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/mode-yaml.js'),
(4060, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abap.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abap.js'),
(4061, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abc.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/abc.js'),
(4062, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/actionscript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/actionscript.js'),
(4063, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ada.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ada.js'),
(4064, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/apache_conf.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/apache_conf.js'),
(4065, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/applescript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/applescript.js'),
(4066, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asciidoc.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asciidoc.js'),
(4067, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/asl.js'),
(4068, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/assembly_x86.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/assembly_x86.js'),
(4069, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/autohotkey.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/autohotkey.js'),
(4070, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/batchfile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/batchfile.js'),
(4071, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/bro.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/bro.js'),
(4072, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c9search.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c9search.js'),
(4073, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c_cpp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/c_cpp.js'),
(4074, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cirru.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cirru.js'),
(4075, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/clojure.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/clojure.js'),
(4076, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cobol.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/cobol.js'),
(4077, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coffee.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coffee.js'),
(4078, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coldfusion.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/coldfusion.js'),
(4079, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csharp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csharp.js'),
(4080, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_document.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_document.js'),
(4081, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_orchestra.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_orchestra.js'),
(4082, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_score.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csound_score.js'),
(4083, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/csp.js'),
(4084, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/css.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/css.js'),
(4085, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/curly.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/curly.js'),
(4086, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/d.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/d.js'),
(4087, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dart.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dart.js'),
(4088, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/diff.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/diff.js'),
(4089, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/django.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/django.js'),
(4090, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dockerfile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dockerfile.js'),
(4091, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dot.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/dot.js'),
(4092, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/drools.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/drools.js'),
(4093, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/edifact.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/edifact.js'),
(4094, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/eiffel.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/eiffel.js'),
(4095, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ejs.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ejs.js'),
(4096, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elixir.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elixir.js'),
(4097, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elm.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/elm.js'),
(4098, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/erlang.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/erlang.js'),
(4099, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/forth.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/forth.js'),
(4100, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fortran.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fortran.js'),
(4101, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fsharp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/fsharp.js'),
(4102, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ftl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ftl.js'),
(4103, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gcode.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gcode.js'),
(4104, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gherkin.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gherkin.js'),
(4105, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gitignore.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gitignore.js'),
(4106, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/glsl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/glsl.js'),
(4107, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gobstones.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/gobstones.js'),
(4108, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/golang.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/golang.js'),
(4109, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/graphqlschema.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/graphqlschema.js'),
(4110, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/groovy.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/groovy.js'),
(4111, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haml.js'),
(4112, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/handlebars.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/handlebars.js'),
(4113, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell.js'),
(4114, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell_cabal.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haskell_cabal.js'),
(4115, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haxe.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/haxe.js'),
(4116, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/hjson.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/hjson.js'),
(4117, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html.js'),
(4118, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_elixir.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_elixir.js'),
(4119, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_ruby.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/html_ruby.js'),
(4120, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ini.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ini.js'),
(4121, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/io.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/io.js'),
(4122, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jack.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jack.js'),
(4123, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jade.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jade.js'),
(4124, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/java.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/java.js'),
(4125, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/javascript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/javascript.js'),
(4126, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/json.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/json.js'),
(4127, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsoniq.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsoniq.js'),
(4128, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsp.js'),
(4129, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jssm.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jssm.js'),
(4130, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsx.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/jsx.js'),
(4131, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/julia.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/julia.js'),
(4132, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/kotlin.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/kotlin.js'),
(4133, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/latex.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/latex.js'),
(4134, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/less.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/less.js'),
(4135, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/liquid.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/liquid.js'),
(4136, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lisp.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lisp.js'),
(4137, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/livescript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/livescript.js'),
(4138, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/logiql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/logiql.js'),
(4139, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lsl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lsl.js'),
(4140, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lua.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lua.js'),
(4141, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/luapage.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/luapage.js'),
(4142, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lucene.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/lucene.js'),
(4143, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/makefile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/makefile.js'),
(4144, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/markdown.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/markdown.js'),
(4145, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mask.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mask.js'),
(4146, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/matlab.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/matlab.js'),
(4147, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/maze.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/maze.js'),
(4148, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mel.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mel.js'),
(4149, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mixal.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mixal.js'),
(4150, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mushcode.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mushcode.js'),
(4151, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mysql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/mysql.js'),
(4152, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nix.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nix.js'),
(4153, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nsis.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/nsis.js'),
(4154, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/objectivec.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/objectivec.js'),
(4155, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ocaml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ocaml.js'),
(4156, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pascal.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pascal.js'),
(4157, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/perl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/perl.js'),
(4158, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pgsql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pgsql.js'),
(4159, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php.js'),
(4160, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php_laravel_blade.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/php_laravel_blade.js'),
(4161, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pig.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/pig.js'),
(4162, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/plain_text.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/plain_text.js'),
(4163, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/powershell.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/powershell.js'),
(4164, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/praat.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/praat.js'),
(4165, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/prolog.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/prolog.js'),
(4166, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/properties.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/properties.js'),
(4167, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/protobuf.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/protobuf.js'),
(4168, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/puppet.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/puppet.js'),
(4169, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/python.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/python.js'),
(4170, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/r.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/r.js'),
(4171, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/razor.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/razor.js'),
(4172, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rdoc.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rdoc.js'),
(4173, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/red.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/red.js'),
(4174, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/redshift.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/redshift.js'),
(4175, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rhtml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rhtml.js'),
(4176, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rst.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rst.js'),
(4177, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ruby.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/ruby.js'),
(4178, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rust.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/rust.js'),
(4179, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sass.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sass.js'),
(4180, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scad.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scad.js'),
(4181, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scala.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scala.js'),
(4182, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scheme.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scheme.js'),
(4183, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scss.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/scss.js'),
(4184, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sh.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sh.js'),
(4185, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sjs.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sjs.js'),
(4186, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/slim.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/slim.js'),
(4187, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/smarty.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/smarty.js'),
(4188, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/snippets.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/snippets.js'),
(4189, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/soy_template.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/soy_template.js'),
(4190, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/space.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/space.js'),
(4191, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sparql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sparql.js'),
(4192, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sql.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sql.js'),
(4193, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sqlserver.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/sqlserver.js'),
(4194, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/stylus.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/stylus.js'),
(4195, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/svg.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/svg.js'),
(4196, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/swift.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/swift.js'),
(4197, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tcl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tcl.js'),
(4198, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/terraform.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/terraform.js'),
(4199, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tex.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tex.js'),
(4200, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/text.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/text.js'),
(4201, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/textile.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/textile.js'),
(4202, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/toml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/toml.js'),
(4203, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tsx.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/tsx.js'),
(4204, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/turtle.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/turtle.js'),
(4205, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/twig.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/twig.js'),
(4206, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/typescript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/typescript.js'),
(4207, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vala.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vala.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(4208, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vbscript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vbscript.js'),
(4209, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/velocity.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/velocity.js'),
(4210, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/verilog.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/verilog.js'),
(4211, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vhdl.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/vhdl.js'),
(4212, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/wollok.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/wollok.js'),
(4213, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xml.js'),
(4214, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xquery.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/xquery.js'),
(4215, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/yaml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/snippets/yaml.js'),
(4216, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-ambiance.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-ambiance.js'),
(4217, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chaos.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chaos.js'),
(4218, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chrome.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-chrome.js'),
(4219, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds.js'),
(4220, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds_midnight.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-clouds_midnight.js'),
(4221, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-cobalt.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-cobalt.js'),
(4222, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-crimson_editor.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-crimson_editor.js'),
(4223, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dawn.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dawn.js'),
(4224, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dracula.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dracula.js'),
(4225, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dreamweaver.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-dreamweaver.js'),
(4226, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-eclipse.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-eclipse.js'),
(4227, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-github.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-github.js'),
(4228, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gob.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gob.js'),
(4229, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gruvbox.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-gruvbox.js'),
(4230, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-idle_fingers.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-idle_fingers.js'),
(4231, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-iplastic.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-iplastic.js'),
(4232, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-katzenmilch.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-katzenmilch.js'),
(4233, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kr_theme.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kr_theme.js'),
(4234, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kuroir.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-kuroir.js'),
(4235, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore.js'),
(4236, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore_soft.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-merbivore_soft.js'),
(4237, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-mono_industrial.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-mono_industrial.js'),
(4238, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-monokai.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-monokai.js'),
(4239, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-pastel_on_dark.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-pastel_on_dark.js'),
(4240, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_dark.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_dark.js'),
(4241, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_light.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-solarized_light.js'),
(4242, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-sqlserver.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-sqlserver.js'),
(4243, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-terminal.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-terminal.js'),
(4244, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-textmate.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-textmate.js'),
(4245, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow.js'),
(4246, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night.js'),
(4247, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_blue.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_blue.js'),
(4248, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_bright.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_bright.js'),
(4249, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_eighties.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-tomorrow_night_eighties.js'),
(4250, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-twilight.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-twilight.js'),
(4251, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-vibrant_ink.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-vibrant_ink.js'),
(4252, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-xcode.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/theme-xcode.js'),
(4253, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-coffee.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-coffee.js'),
(4254, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-css.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-css.js'),
(4255, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-html.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-html.js'),
(4256, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-javascript.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-javascript.js'),
(4257, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-json.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-json.js'),
(4258, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-lua.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-lua.js'),
(4259, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-php.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-php.js'),
(4260, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xml.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xml.js'),
(4261, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xquery.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/ace/worker-xquery.js'),
(4262, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/icons.svg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/icons.svg'),
(4263, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.base64.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.base64.min.js'),
(4264, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.css'),
(4265, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.colors.min.js'),
(4266, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontfamily.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontfamily.min.js'),
(4267, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontsize.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.fontsize.min.js'),
(4268, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.css'),
(4269, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.min.js'),
(4270, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.user.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/editors/trumbowyg/trumbowyg.user.min.css'),
(4271, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/fine-uploader-new.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/fine-uploader-new.min.css'),
(4272, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/FontAwesome.otf', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/FontAwesome.otf'),
(4273, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.css'),
(4274, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/font-awesome.min.css'),
(4275, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.eot', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.eot'),
(4276, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.svg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.svg'),
(4277, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.ttf', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.ttf'),
(4278, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff'),
(4279, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff2', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome-4.7.0/fontawesome-webfont.woff2'),
(4280, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/font-awesome.min.css'),
(4281, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/google-fonts.json', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/google-fonts.json'),
(4282, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/html5sortable.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/html5sortable.min.js'),
(4283, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/readme.txt', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/readme.txt'),
(4284, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_888888_40x100.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_888888_40x100.png'),
(4285, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_aaaaaa_40x100.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_0_aaaaaa_40x100.png'),
(4286, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_75_ffffff_40x100.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_flat_75_ffffff_40x100.png'),
(4287, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_25_e1f0f5_1x400.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_25_e1f0f5_1x400.png'),
(4288, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_55_444444_1x400.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_55_444444_1x400.png'),
(4289, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_65_ffffff_1x400.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_65_ffffff_1x400.png'),
(4290, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_75_dadada_1x400.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_glass_75_dadada_1x400.png'),
(4291, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),
(4292, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_inset-soft_95_fef1ec_1x100.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-bg_inset-soft_95_fef1ec_1x100.png'),
(4293, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_222222_256x240.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_222222_256x240.png'),
(4294, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_309bbf_256x240.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_309bbf_256x240.png'),
(4295, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_454545_256x240.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_454545_256x240.png'),
(4296, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_bf3030_256x240.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_bf3030_256x240.png'),
(4297, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_ffffff_256x240.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/images/ui-icons_ffffff_256x240.png'),
(4298, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.1.8.24.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.1.8.24.min.css'),
(4299, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery-ui.css'),
(4300, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.finderSelect.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.finderSelect.min.js'),
(4301, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.fine-uploader.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.fine-uploader.min.js'),
(4302, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.interdependencies.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.interdependencies.min.js'),
(4303, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.css'),
(4304, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.js'),
(4305, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/jquery.minicolors.png'),
(4306, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-color-picker.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-color-picker.min.js'),
(4307, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-datepicker.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-datepicker.min.js'),
(4308, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-fine-uploader.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-fine-uploader.min.js'),
(4309, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-chosen.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-chosen.min.js'),
(4310, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-finderselect.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-finderselect.min.js'),
(4311, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-trumbowyg.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-jquery-trumbowyg.min.js'),
(4312, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-minicolors.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/loader-minicolors.js'),
(4313, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/plugin.code.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/plugin.code.min.js'),
(4314, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/scripts.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/scripts.min.js'),
(4315, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/styles.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/styles.css'),
(4316, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/sweetalert.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/sweetalert.min.js'),
(4317, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/wp-color-picker-alpha.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/assets/wp-color-picker-alpha.min.js'),
(4318, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/disclamer.txt', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/disclamer.txt'),
(4319, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/exopite-simple-options-framework-class.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/exopite-simple-options-framework-class.php'),
(4320, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/accordion.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/accordion.php'),
(4321, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/ace_editor.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/ace_editor.php'),
(4322, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/attached.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/attached.php'),
(4323, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/backup.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/backup.php'),
(4324, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button.php'),
(4325, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button_bar.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/button_bar.php'),
(4326, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/card.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/card.php'),
(4327, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/checkbox.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/checkbox.php'),
(4328, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color.php'),
(4329, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color_wp.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/color_wp.php'),
(4330, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/content.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/content.php'),
(4331, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/date.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/date.php'),
(4332, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/editor.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/editor.php'),
(4333, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/fieldset.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/fieldset.php'),
(4334, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/gallery.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/gallery.php'),
(4335, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/group.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/group.php'),
(4336, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/hidden.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/hidden.php'),
(4337, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image.php'),
(4338, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image_select.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/image_select.php'),
(4339, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/index.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/index.php'),
(4340, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/meta.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/meta.php'),
(4341, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/notice.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/notice.php'),
(4342, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/number.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/number.php'),
(4343, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/password.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/password.php'),
(4344, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/radio.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/radio.php'),
(4345, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/range.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/range.php'),
(4346, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/select.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/select.php'),
(4347, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/switcher.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/switcher.php'),
(4348, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tab.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tab.php'),
(4349, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tap_list.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/tap_list.php'),
(4350, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/text.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/text.php'),
(4351, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/textarea.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/textarea.php'),
(4352, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/typography.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/typography.php'),
(4353, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/upload.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/upload.php'),
(4354, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/video.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields/video.php'),
(4355, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields-class.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/fields-class.php'),
(4356, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/index.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/index.php'),
(4357, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/lang/exopite-sof.pot', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/lang/exopite-sof.pot'),
(4358, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/multilang-class.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/multilang-class.php'),
(4359, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/sanitize-class.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/sanitize-class.php'),
(4360, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/upload-class.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/exopite-simple-options/upload-class.php'),
(4361, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/RemPro.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/RemPro.png'),
(4362, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library-on-off.jpg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library-on-off.jpg'),
(4363, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library.jpg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-local-library.jpg'),
(4364, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-wp-admin.jpg', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/btl-wp-admin.jpg'),
(4365, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/container-extras.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/container-extras.png'),
(4366, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/elementor-faulty-css.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/elementor-faulty-css.png'),
(4367, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/eps-banner.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/eps-banner.png'),
(4368, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider-renewed.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider-renewed.png'),
(4369, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/glider.png'),
(4370, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/oh-animator.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/oh-animator.png'),
(4371, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/ooohboi-poopart-icon.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/ooohboi-poopart-icon.png'),
(4372, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/paypal-donate.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/paypal-donate.png'),
(4373, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/postman.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/postman.png'),
(4374, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-bg-pattern.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-bg-pattern.png'),
(4375, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-header.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-header.png'),
(4376, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-icon-WP-admin.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-icon-WP-admin.png'),
(4377, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-new-interface.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sfe-new-interface.png'),
(4378, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/site-settings-news.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/site-settings-news.png'),
(4379, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sponsor-needed.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/sponsor-needed.png'),
(4380, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/tabbr2.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/tabbr2.png'),
(4381, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-js.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-js.png'),
(4382, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-option.png', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/img/three-option.png'),
(4383, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/inc/info/ob-landing.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/inc/info/ob-landing.php'),
(4384, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/dashboard/class-ob-more-products.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/dashboard/class-ob-more-products.php'),
(4385, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-notices-main.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-notices-main.php'),
(4386, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-install-notice.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-install-notice.php'),
(4387, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-preview-popup.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/includes/notices/class-ob-wdkit-preview-popup.php'),
(4388, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/index.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/index.php'),
(4389, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/anime/anime.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/anime/anime.min.js'),
(4390, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/barba/barba.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/barba/barba.min.js'),
(4391, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.css', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.css'),
(4392, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.js', 'wp-content/plugins/ooohboi-steroids-for-elementor/lib/locomotive_scroll/locomotive-scroll.min.js'),
(4393, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/ooohboi-steroids.php', 'wp-content/plugins/ooohboi-steroids-for-elementor/ooohboi-steroids.php'),
(4394, '/home/binawebp/omsrislb.my/wp-content/plugins/ooohboi-steroids-for-elementor/readme.txt', 'wp-content/plugins/ooohboi-steroids-for-elementor/readme.txt'),
(4395, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/autoload.php', 'wp-content/plugins/wordfence/crypto/vendor/autoload.php'),
(4396, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php'),
(4397, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php'),
(4398, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE', 'wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE'),
(4399, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php'),
(4400, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php'),
(4401, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php'),
(4402, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php'),
(4403, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php'),
(4404, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php'),
(4405, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/installed.json', 'wp-content/plugins/wordfence/crypto/vendor/composer/installed.json'),
(4406, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/installed.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/installed.php'),
(4407, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php', 'wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php'),
(4408, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE'),
(4409, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),
(4410, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),
(4411, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),
(4412, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php'),
(4413, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php'),
(4414, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php'),
(4415, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),
(4416, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),
(4417, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),
(4418, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),
(4419, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),
(4420, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php'),
(4421, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE'),
(4422, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php'),
(4423, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(4424, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json'),
(4425, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php'),
(4426, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php'),
(4427, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php'),
(4428, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php'),
(4429, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/ristretto255.php'),
(4430, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php'),
(4431, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/stream-xchacha20.php'),
(4432, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php'),
(4433, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php'),
(4434, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),
(4435, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),
(4436, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php'),
(4437, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php'),
(4438, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),
(4439, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),
(4440, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),
(4441, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),
(4442, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),
(4443, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php'),
(4444, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php'),
(4445, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php'),
(4446, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php'),
(4447, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php'),
(4448, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php'),
(4449, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php'),
(4450, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php'),
(4451, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php'),
(4452, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php'),
(4453, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php'),
(4454, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php'),
(4455, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php'),
(4456, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php'),
(4457, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php'),
(4458, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php'),
(4459, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php'),
(4460, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php'),
(4461, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php'),
(4462, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php'),
(4463, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),
(4464, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php'),
(4465, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php'),
(4466, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),
(4467, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),
(4468, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php'),
(4469, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php'),
(4470, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),
(4471, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php'),
(4472, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php'),
(4473, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php'),
(4474, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php'),
(4475, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php'),
(4476, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php'),
(4477, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php'),
(4478, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ristretto255.php'),
(4479, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php'),
(4480, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php'),
(4481, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php'),
(4482, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php'),
(4483, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php'),
(4484, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php'),
(4485, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php'),
(4486, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php'),
(4487, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php'),
(4488, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),
(4489, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php'),
(4490, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php'),
(4491, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),
(4492, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),
(4493, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),
(4494, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),
(4495, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),
(4496, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php'),
(4497, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php'),
(4498, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php'),
(4499, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php'),
(4500, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php'),
(4501, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php'),
(4502, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php'),
(4503, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php'),
(4504, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php'),
(4505, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php'),
(4506, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php'),
(4507, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php'),
(4508, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php'),
(4509, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php'),
(4510, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php'),
(4511, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php'),
(4512, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php'),
(4513, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php'),
(4514, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php'),
(4515, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php'),
(4516, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php', 'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php'),
(4517, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/activity-report-widget.1764778641.css', 'wp-content/plugins/wordfence/css/activity-report-widget.1764778641.css'),
(4518, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/diff.1764778641.css', 'wp-content/plugins/wordfence/css/diff.1764778641.css'),
(4519, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/fullLog.1764778641.css', 'wp-content/plugins/wordfence/css/fullLog.1764778641.css'),
(4520, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png', 'wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png'),
(4521, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png', 'wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png'),
(4522, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png', 'wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png'),
(4523, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png', 'wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png'),
(4524, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png', 'wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png'),
(4525, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png', 'wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png'),
(4526, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/iptraf.1764778641.css', 'wp-content/plugins/wordfence/css/iptraf.1764778641.css'),
(4527, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1764778641.css', 'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1764778641.css'),
(4528, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui.min.1764778641.css', 'wp-content/plugins/wordfence/css/jquery-ui.min.1764778641.css'),
(4529, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui.structure.min.1764778641.css', 'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1764778641.css'),
(4530, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/jquery-ui.theme.min.1764778641.css', 'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1764778641.css'),
(4531, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/care-global.1764778641.css', 'wp-content/plugins/wordfence/css/license/care-global.1764778641.css'),
(4532, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/care.1764778641.css', 'wp-content/plugins/wordfence/css/license/care.1764778641.css'),
(4533, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/free-global.1764778641.css', 'wp-content/plugins/wordfence/css/license/free-global.1764778641.css'),
(4534, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/free.1764778641.css', 'wp-content/plugins/wordfence/css/license/free.1764778641.css'),
(4535, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/premium-global.1764778641.css', 'wp-content/plugins/wordfence/css/license/premium-global.1764778641.css'),
(4536, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/premium.1764778641.css', 'wp-content/plugins/wordfence/css/license/premium.1764778641.css'),
(4537, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/response-global.1764778641.css', 'wp-content/plugins/wordfence/css/license/response-global.1764778641.css'),
(4538, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/response-variables.1764778641.css', 'wp-content/plugins/wordfence/css/license/response-variables.1764778641.css'),
(4539, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/license/response.1764778641.css', 'wp-content/plugins/wordfence/css/license/response.1764778641.css'),
(4540, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/main.1764778641.css', 'wp-content/plugins/wordfence/css/main.1764778641.css'),
(4541, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/phpinfo.1764778641.css', 'wp-content/plugins/wordfence/css/phpinfo.1764778641.css'),
(4542, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-adminbar.1764778641.css', 'wp-content/plugins/wordfence/css/wf-adminbar.1764778641.css'),
(4543, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-colorbox.1764778641.css', 'wp-content/plugins/wordfence/css/wf-colorbox.1764778641.css'),
(4544, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-font-awesome.1764778641.css', 'wp-content/plugins/wordfence/css/wf-font-awesome.1764778641.css'),
(4545, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-global.1764778641.css', 'wp-content/plugins/wordfence/css/wf-global.1764778641.css'),
(4546, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-ionicons.1764778641.css', 'wp-content/plugins/wordfence/css/wf-ionicons.1764778641.css'),
(4547, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-onboarding.1764778641.css', 'wp-content/plugins/wordfence/css/wf-onboarding.1764778641.css'),
(4548, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wf-roboto-font.1764778641.css', 'wp-content/plugins/wordfence/css/wf-roboto-font.1764778641.css'),
(4549, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wfselect2.min.1764778641.css', 'wp-content/plugins/wordfence/css/wfselect2.min.1764778641.css'),
(4550, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/css/wordfenceBox.1764778641.css', 'wp-content/plugins/wordfence/css/wordfenceBox.1764778641.css'),
(4551, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff', 'wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff'),
(4552, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/ionicons.woff', 'wp-content/plugins/wordfence/fonts/ionicons.woff'),
(4553, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff'),
(4554, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff'),
(4555, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff'),
(4556, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff'),
(4557, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff'),
(4558, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff'),
(4559, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff'),
(4560, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff'),
(4561, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff'),
(4562, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff', 'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff'),
(4563, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/2fa-whole.svg', 'wp-content/plugins/wordfence/images/2fa-whole.svg'),
(4564, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/2fa1.svg', 'wp-content/plugins/wordfence/images/2fa1.svg'),
(4565, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/2fa2.svg', 'wp-content/plugins/wordfence/images/2fa2.svg'),
(4566, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/audit-log-preview.png', 'wp-content/plugins/wordfence/images/audit-log-preview.png'),
(4567, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/back_disabled.jpg', 'wp-content/plugins/wordfence/images/back_disabled.jpg'),
(4568, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/back_enabled.jpg', 'wp-content/plugins/wordfence/images/back_enabled.jpg'),
(4569, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/blocking.svg', 'wp-content/plugins/wordfence/images/blocking.svg'),
(4570, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/button-grad-grey.png', 'wp-content/plugins/wordfence/images/button-grad-grey.png'),
(4571, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/checkbox.png', 'wp-content/plugins/wordfence/images/checkbox.png'),
(4572, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/flags.png', 'wp-content/plugins/wordfence/images/flags.png'),
(4573, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/forward_disabled.jpg', 'wp-content/plugins/wordfence/images/forward_disabled.jpg'),
(4574, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/forward_enabled.jpg', 'wp-content/plugins/wordfence/images/forward_enabled.jpg'),
(4575, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/help.png', 'wp-content/plugins/wordfence/images/help.png'),
(4576, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajax24.gif', 'wp-content/plugins/wordfence/images/icons/ajax24.gif'),
(4577, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajax3.gif', 'wp-content/plugins/wordfence/images/icons/ajax3.gif'),
(4578, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajaxRed16.gif', 'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),
(4579, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajaxScan.gif', 'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),
(4580, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif', 'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),
(4581, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/arrow_refresh.png', 'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),
(4582, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/bullet_yellow.png', 'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),
(4583, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check-care.svg', 'wp-content/plugins/wordfence/images/icons/check-care.svg'),
(4584, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check-premium.svg', 'wp-content/plugins/wordfence/images/icons/check-premium.svg'),
(4585, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check-response.svg', 'wp-content/plugins/wordfence/images/icons/check-response.svg'),
(4586, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/check.svg', 'wp-content/plugins/wordfence/images/icons/check.svg'),
(4587, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/email_go.png', 'wp-content/plugins/wordfence/images/icons/email_go.png'),
(4588, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/error128.png', 'wp-content/plugins/wordfence/images/icons/error128.png'),
(4589, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/magnifier.png', 'wp-content/plugins/wordfence/images/icons/magnifier.png'),
(4590, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/tick128.png', 'wp-content/plugins/wordfence/images/icons/tick128.png'),
(4591, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/warning128.png', 'wp-content/plugins/wordfence/images/icons/warning128.png'),
(4592, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/icons/working-indicator.gif', 'wp-content/plugins/wordfence/images/icons/working-indicator.gif'),
(4593, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/lightbox-controls.png', 'wp-content/plugins/wordfence/images/lightbox-controls.png'),
(4594, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/loading.gif', 'wp-content/plugins/wordfence/images/loading.gif'),
(4595, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/loading_background.png', 'wp-content/plugins/wordfence/images/loading_background.png'),
(4596, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/loading_large.gif', 'wp-content/plugins/wordfence/images/loading_large.gif'),
(4597, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logo.png', 'wp-content/plugins/wordfence/images/logo.png'),
(4598, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-care.svg', 'wp-content/plugins/wordfence/images/logos/shield-care.svg'),
(4599, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-free.svg', 'wp-content/plugins/wordfence/images/logos/shield-free.svg'),
(4600, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-premium.svg', 'wp-content/plugins/wordfence/images/logos/shield-premium.svg'),
(4601, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-response.svg', 'wp-content/plugins/wordfence/images/logos/shield-response.svg'),
(4602, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/logos/shield-white.svg', 'wp-content/plugins/wordfence/images/logos/shield-white.svg'),
(4603, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/options.svg', 'wp-content/plugins/wordfence/images/options.svg'),
(4604, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/ratelimiting.svg', 'wp-content/plugins/wordfence/images/ratelimiting.svg'),
(4605, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc.gif', 'wp-content/plugins/wordfence/images/sort_asc.gif'),
(4606, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc.png', 'wp-content/plugins/wordfence/images/sort_asc.png'),
(4607, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc_disabled.gif', 'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),
(4608, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_asc_disabled.png', 'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),
(4609, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_both.gif', 'wp-content/plugins/wordfence/images/sort_both.gif'),
(4610, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_both.png', 'wp-content/plugins/wordfence/images/sort_both.png'),
(4611, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc.gif', 'wp-content/plugins/wordfence/images/sort_desc.gif'),
(4612, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc.png', 'wp-content/plugins/wordfence/images/sort_desc.png'),
(4613, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc_disabled.gif', 'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),
(4614, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/sort_desc_disabled.png', 'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),
(4615, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/support.svg', 'wp-content/plugins/wordfence/images/support.svg'),
(4616, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/tools.svg', 'wp-content/plugins/wordfence/images/tools.svg'),
(4617, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wf-central-logo.svg', 'wp-content/plugins/wordfence/images/wf-central-logo.svg'),
(4618, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wf-error-badge.svg', 'wp-content/plugins/wordfence/images/wf-error-badge.svg'),
(4619, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wf-horizontal.svg', 'wp-content/plugins/wordfence/images/wf-horizontal.svg'),
(4620, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/images/wordfence-logo.svg', 'wp-content/plugins/wordfence/images/wordfence-logo.svg'),
(4621, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/index.php', 'wp-content/plugins/wordfence/index.php'),
(4622, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/admin.1764778641.js', 'wp-content/plugins/wordfence/js/admin.1764778641.js'),
(4623, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/admin.ajaxWatcher.1764778641.js', 'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1764778641.js'),
(4624, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/admin.liveTraffic.1764778641.js', 'wp-content/plugins/wordfence/js/admin.liveTraffic.1764778641.js'),
(4625, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/chart.umd.1764778641.js', 'wp-content/plugins/wordfence/js/chart.umd.1764778641.js'),
(4626, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/date.1764778641.js', 'wp-content/plugins/wordfence/js/date.1764778641.js'),
(4627, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1764778641.js', 'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1764778641.js'),
(4628, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.colorbox-min.1764778641.js', 'wp-content/plugins/wordfence/js/jquery.colorbox-min.1764778641.js'),
(4629, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.colorbox.1764778641.js', 'wp-content/plugins/wordfence/js/jquery.colorbox.1764778641.js'),
(4630, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.qrcode.min.1764778641.js', 'wp-content/plugins/wordfence/js/jquery.qrcode.min.1764778641.js'),
(4631, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/jquery.tmpl.min.1764778641.js', 'wp-content/plugins/wordfence/js/jquery.tmpl.min.1764778641.js'),
(4632, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/knockout-3.5.1.1764778641.js', 'wp-content/plugins/wordfence/js/knockout-3.5.1.1764778641.js'),
(4633, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfdashboard.1764778641.js', 'wp-content/plugins/wordfence/js/wfdashboard.1764778641.js'),
(4634, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfdropdown.1764778641.js', 'wp-content/plugins/wordfence/js/wfdropdown.1764778641.js'),
(4635, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfglobal.1764778641.js', 'wp-content/plugins/wordfence/js/wfglobal.1764778641.js'),
(4636, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfi18n.1764778641.js', 'wp-content/plugins/wordfence/js/wfi18n.1764778641.js'),
(4637, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfonboarding.1764778641.js', 'wp-content/plugins/wordfence/js/wfonboarding.1764778641.js'),
(4638, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfpopover.1764778641.js', 'wp-content/plugins/wordfence/js/wfpopover.1764778641.js'),
(4639, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/js/wfselect2.min.1764778641.js', 'wp-content/plugins/wordfence/js/wfselect2.min.1764778641.js'),
(4640, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/languages/wordfence.mo', 'wp-content/plugins/wordfence/languages/wordfence.mo'),
(4641, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/languages/wordfence.pot', 'wp-content/plugins/wordfence/languages/wordfence.pot'),
(4642, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/.htaccess', 'wp-content/plugins/wordfence/lib/.htaccess'),
(4643, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php', 'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),
(4644, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php', 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),
(4645, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php', 'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),
(4646, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php', 'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),
(4647, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/Diff.php', 'wp-content/plugins/wordfence/lib/Diff.php'),
(4648, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/IPTraf.php', 'wp-content/plugins/wordfence/lib/IPTraf.php'),
(4649, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/IPTrafList.php', 'wp-content/plugins/wordfence/lib/IPTrafList.php'),
(4650, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php', 'wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php'),
(4651, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversPreview.php', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversPreview.php'),
(4652, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreContent.php', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreContent.php'),
(4653, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreMultisite.php', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreMultisite.php'),
(4654, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreSite.php', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreSite.php'),
(4655, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreUser.php', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordPressCoreUser.php'),
(4656, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordfence.php', 'wp-content/plugins/wordfence/lib/audit-log/wfAuditLogObserversWordfence.php'),
(4657, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/compat.php', 'wp-content/plugins/wordfence/lib/compat.php'),
(4658, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),
(4659, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),
(4660, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),
(4661, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_countries.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),
(4662, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_ips.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),
(4663, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),
(4664, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_logins.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),
(4665, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),
(4666, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php', 'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),
(4667, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/diffResult.php', 'wp-content/plugins/wordfence/lib/diffResult.php'),
(4668, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_genericAlert.php', 'wp-content/plugins/wordfence/lib/email_genericAlert.php'),
(4669, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_newIssues.php', 'wp-content/plugins/wordfence/lib/email_newIssues.php'),
(4670, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_unlockRequest.php', 'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),
(4671, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php', 'wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php'),
(4672, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/flags.php', 'wp-content/plugins/wordfence/lib/flags.php'),
(4673, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/geoip.mmdb', 'wp-content/plugins/wordfence/lib/geoip.mmdb'),
(4674, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/live_activity.php', 'wp-content/plugins/wordfence/lib/live_activity.php'),
(4675, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_dashboard.php', 'wp-content/plugins/wordfence/lib/menu_dashboard.php'),
(4676, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_dashboard_options.php', 'wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),
(4677, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall.php', 'wp-content/plugins/wordfence/lib/menu_firewall.php'),
(4678, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_blocking.php', 'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),
(4679, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php', 'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),
(4680, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_waf.php', 'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),
(4681, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php', 'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),
(4682, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_install.php', 'wp-content/plugins/wordfence/lib/menu_install.php'),
(4683, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_options.php', 'wp-content/plugins/wordfence/lib/menu_options.php'),
(4684, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_scanner.php', 'wp-content/plugins/wordfence/lib/menu_scanner.php'),
(4685, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_scanner_credentials.php', 'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),
(4686, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_scanner_options.php', 'wp-content/plugins/wordfence/lib/menu_scanner_options.php'),
(4687, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_support.php', 'wp-content/plugins/wordfence/lib/menu_support.php'),
(4688, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools.php', 'wp-content/plugins/wordfence/lib/menu_tools.php'),
(4689, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_auditlog.php', 'wp-content/plugins/wordfence/lib/menu_tools_auditlog.php'),
(4690, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php', 'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),
(4691, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_importExport.php', 'wp-content/plugins/wordfence/lib/menu_tools_importExport.php'),
(4692, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php', 'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),
(4693, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php', 'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),
(4694, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_tools_whois.php', 'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),
(4695, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/menu_wordfence_central.php', 'wp-content/plugins/wordfence/lib/menu_wordfence_central.php'),
(4696, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/noc1.key', 'wp-content/plugins/wordfence/lib/noc1.key'),
(4697, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php'),
(4698, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php'),
(4699, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php'),
(4700, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php', 'wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php'),
(4701, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/sodium_compat_fast.php', 'wp-content/plugins/wordfence/lib/sodium_compat_fast.php'),
(4702, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/sysinfo.php', 'wp-content/plugins/wordfence/lib/sysinfo.php'),
(4703, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/viewFullActivityLog.php', 'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),
(4704, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wf503.php', 'wp-content/plugins/wordfence/lib/wf503.php'),
(4705, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAPI.php', 'wp-content/plugins/wordfence/lib/wfAPI.php'),
(4706, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfActivityReport.php', 'wp-content/plugins/wordfence/lib/wfActivityReport.php'),
(4707, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php', 'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),
(4708, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAlerts.php', 'wp-content/plugins/wordfence/lib/wfAlerts.php'),
(4709, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfAuditLog.php', 'wp-content/plugins/wordfence/lib/wfAuditLog.php'),
(4710, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBinaryList.php', 'wp-content/plugins/wordfence/lib/wfBinaryList.php'),
(4711, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBrowscap.php', 'wp-content/plugins/wordfence/lib/wfBrowscap.php'),
(4712, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBrowscapCache.php', 'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),
(4713, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfBulkCountries.php', 'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),
(4714, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCache.php', 'wp-content/plugins/wordfence/lib/wfCache.php'),
(4715, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCentralAPI.php', 'wp-content/plugins/wordfence/lib/wfCentralAPI.php'),
(4716, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCommonPasswords.php', 'wp-content/plugins/wordfence/lib/wfCommonPasswords.php'),
(4717, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfConfig.php', 'wp-content/plugins/wordfence/lib/wfConfig.php'),
(4718, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCrawl.php', 'wp-content/plugins/wordfence/lib/wfCrawl.php'),
(4719, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCredentialsController.php', 'wp-content/plugins/wordfence/lib/wfCredentialsController.php'),
(4720, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCrypt.php', 'wp-content/plugins/wordfence/lib/wfCrypt.php'),
(4721, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfCurlInterceptor.php', 'wp-content/plugins/wordfence/lib/wfCurlInterceptor.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(4722, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDB.php', 'wp-content/plugins/wordfence/lib/wfDB.php'),
(4723, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDashboard.php', 'wp-content/plugins/wordfence/lib/wfDashboard.php'),
(4724, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDateLocalization.php', 'wp-content/plugins/wordfence/lib/wfDateLocalization.php'),
(4725, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDeactivationOption.php', 'wp-content/plugins/wordfence/lib/wfDeactivationOption.php'),
(4726, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDiagnostic.php', 'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),
(4727, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfDirectoryIterator.php', 'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),
(4728, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfFileUtils.php', 'wp-content/plugins/wordfence/lib/wfFileUtils.php'),
(4729, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfHelperBin.php', 'wp-content/plugins/wordfence/lib/wfHelperBin.php'),
(4730, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfHelperString.php', 'wp-content/plugins/wordfence/lib/wfHelperString.php'),
(4731, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfI18n.php', 'wp-content/plugins/wordfence/lib/wfI18n.php'),
(4732, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIPWhitelist.php', 'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),
(4733, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfImportExportController.php', 'wp-content/plugins/wordfence/lib/wfImportExportController.php'),
(4734, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php', 'wp-content/plugins/wordfence/lib/wfInaccessibleDirectoryException.php'),
(4735, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfInvalidPathException.php', 'wp-content/plugins/wordfence/lib/wfInvalidPathException.php'),
(4736, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIpLocation.php', 'wp-content/plugins/wordfence/lib/wfIpLocation.php'),
(4737, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIpLocator.php', 'wp-content/plugins/wordfence/lib/wfIpLocator.php'),
(4738, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfIssues.php', 'wp-content/plugins/wordfence/lib/wfIssues.php'),
(4739, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfJWT.php', 'wp-content/plugins/wordfence/lib/wfJWT.php'),
(4740, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfLicense.php', 'wp-content/plugins/wordfence/lib/wfLicense.php'),
(4741, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfLockedOut.php', 'wp-content/plugins/wordfence/lib/wfLockedOut.php'),
(4742, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfLog.php', 'wp-content/plugins/wordfence/lib/wfLog.php'),
(4743, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php', 'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),
(4744, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfModuleController.php', 'wp-content/plugins/wordfence/lib/wfModuleController.php'),
(4745, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfNotification.php', 'wp-content/plugins/wordfence/lib/wfNotification.php'),
(4746, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfOnboardingController.php', 'wp-content/plugins/wordfence/lib/wfOnboardingController.php'),
(4747, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfPersistenceController.php', 'wp-content/plugins/wordfence/lib/wfPersistenceController.php'),
(4748, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfRESTAPI.php', 'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),
(4749, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScan.php', 'wp-content/plugins/wordfence/lib/wfScan.php'),
(4750, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanEngine.php', 'wp-content/plugins/wordfence/lib/wfScanEngine.php'),
(4751, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanEntrypoint.php', 'wp-content/plugins/wordfence/lib/wfScanEntrypoint.php'),
(4752, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFile.php', 'wp-content/plugins/wordfence/lib/wfScanFile.php'),
(4753, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFileLink.php', 'wp-content/plugins/wordfence/lib/wfScanFileLink.php'),
(4754, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFileListItem.php', 'wp-content/plugins/wordfence/lib/wfScanFileListItem.php'),
(4755, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanFileProperties.php', 'wp-content/plugins/wordfence/lib/wfScanFileProperties.php'),
(4756, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanMonitor.php', 'wp-content/plugins/wordfence/lib/wfScanMonitor.php'),
(4757, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfScanPath.php', 'wp-content/plugins/wordfence/lib/wfScanPath.php'),
(4758, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfSchema.php', 'wp-content/plugins/wordfence/lib/wfSchema.php'),
(4759, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfStyle.php', 'wp-content/plugins/wordfence/lib/wfStyle.php'),
(4760, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfSupportController.php', 'wp-content/plugins/wordfence/lib/wfSupportController.php'),
(4761, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfUnlockMsg.php', 'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),
(4762, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfUpdateCheck.php', 'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),
(4763, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfUtils.php', 'wp-content/plugins/wordfence/lib/wfUtils.php'),
(4764, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfVersionCheckController.php', 'wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),
(4765, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfVersionSupport.php', 'wp-content/plugins/wordfence/lib/wfVersionSupport.php'),
(4766, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfView.php', 'wp-content/plugins/wordfence/lib/wfView.php'),
(4767, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfViewResult.php', 'wp-content/plugins/wordfence/lib/wfViewResult.php'),
(4768, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wfWebsite.php', 'wp-content/plugins/wordfence/lib/wfWebsite.php'),
(4769, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceClass.php', 'wp-content/plugins/wordfence/lib/wordfenceClass.php'),
(4770, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceConstants.php', 'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),
(4771, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceHash.php', 'wp-content/plugins/wordfence/lib/wordfenceHash.php'),
(4772, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceScanner.php', 'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),
(4773, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/lib/wordfenceURLHoover.php', 'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),
(4774, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/license.txt', 'wp-content/plugins/wordfence/license.txt'),
(4775, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/.htaccess', 'wp-content/plugins/wordfence/models/.htaccess'),
(4776, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/block/wfBlock.php', 'wp-content/plugins/wordfence/models/block/wfBlock.php'),
(4777, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/block/wfRateLimit.php', 'wp-content/plugins/wordfence/models/block/wfRateLimit.php'),
(4778, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/common/wfTab.php', 'wp-content/plugins/wordfence/models/common/wfTab.php'),
(4779, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/firewall/wfFirewall.php', 'wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),
(4780, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/page/wfPage.php', 'wp-content/plugins/wordfence/models/page/wfPage.php'),
(4781, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/models/scanner/wfScanner.php', 'wp-content/plugins/wordfence/models/scanner/wfScanner.php'),
(4782, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/.htaccess', 'wp-content/plugins/wordfence/modules/login-security/classes/.htaccess'),
(4783, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php'),
(4784, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php'),
(4785, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php'),
(4786, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php'),
(4787, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php'),
(4788, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php'),
(4789, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php'),
(4790, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php'),
(4791, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php'),
(4792, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php'),
(4793, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php'),
(4794, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php'),
(4795, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php', 'wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php'),
(4796, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/2fainitializationdata.php'),
(4797, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php'),
(4798, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php'),
(4799, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php'),
(4800, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php'),
(4801, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php'),
(4802, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php'),
(4803, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php'),
(4804, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php'),
(4805, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/request.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/request.php'),
(4806, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/script.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/script.php'),
(4807, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php'),
(4808, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php'),
(4809, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php'),
(4810, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/style.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/style.php'),
(4811, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php'),
(4812, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php'),
(4813, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php'),
(4814, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php'),
(4815, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php'),
(4816, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/model/view.php', 'wp-content/plugins/wordfence/modules/login-security/classes/model/view.php'),
(4817, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/array.php'),
(4818, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/baseconversion.php'),
(4819, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/databaselock.php'),
(4820, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/lock.php'),
(4821, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/measuredstring.php'),
(4822, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/multisite.php'),
(4823, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/multisiteconfigurationextractor.php'),
(4824, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/nulllock.php'),
(4825, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/number.php'),
(4826, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/serialization.php'),
(4827, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/sleep.php'),
(4828, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php', 'wp-content/plugins/wordfence/modules/login-security/classes/utility/url.php'),
(4829, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/admin-global.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/admin-global.1764778641.css'),
(4830, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/admin.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/admin.1764778641.css'),
(4831, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/colorbox.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/colorbox.1764778641.css'),
(4832, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/embedded.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/embedded.1764778641.css'),
(4833, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1764778641.css'),
(4834, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/ionicons.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/ionicons.1764778641.css'),
(4835, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1764778641.css'),
(4836, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1764778641.css'),
(4837, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1764778641.css'),
(4838, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/login.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/login.1764778641.css'),
(4839, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1764778641.css', 'wp-content/plugins/wordfence/modules/login-security/css/woocommerce-account.1764778641.css'),
(4840, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/header.svg', 'wp-content/plugins/wordfence/modules/login-security/img/header.svg'),
(4841, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png', 'wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png'),
(4842, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/loading.gif', 'wp-content/plugins/wordfence/modules/login-security/img/loading.gif'),
(4843, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/loading_background.png', 'wp-content/plugins/wordfence/modules/login-security/img/loading_background.png'),
(4844, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/menu.svg', 'wp-content/plugins/wordfence/modules/login-security/img/menu.svg'),
(4845, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png'),
(4846, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png'),
(4847, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png'),
(4848, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png'),
(4849, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png'),
(4850, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png', 'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png'),
(4851, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/admin-global.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1764778641.js'),
(4852, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/admin.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/admin.1764778641.js'),
(4853, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/chart.umd.1764778641.js'),
(4854, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1764778641.js'),
(4855, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1764778641.js'),
(4856, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1764778641.js'),
(4857, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1764778641.js'),
(4858, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/js/login.1764778641.js', 'wp-content/plugins/wordfence/modules/login-security/js/login.1764778641.js'),
(4859, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/.htaccess', 'wp-content/plugins/wordfence/modules/login-security/views/.htaccess'),
(4860, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php', 'wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php'),
(4861, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php', 'wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php'),
(4862, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php', 'wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php'),
(4863, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php', 'wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php'),
(4864, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php', 'wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php'),
(4865, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/code.php', 'wp-content/plugins/wordfence/modules/login-security/views/manage/code.php'),
(4866, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php', 'wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php'),
(4867, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php', 'wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php'),
(4868, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php', 'wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php'),
(4869, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php', 'wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php'),
(4870, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php'),
(4871, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php'),
(4872, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php'),
(4873, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php'),
(4874, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php'),
(4875, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php'),
(4876, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php'),
(4877, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php'),
(4878, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php'),
(4879, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php'),
(4880, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php'),
(4881, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php'),
(4882, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php'),
(4883, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php'),
(4884, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php'),
(4885, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php'),
(4886, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php'),
(4887, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php', 'wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php'),
(4888, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/manage-embedded.php'),
(4889, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/manage.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/manage.php'),
(4890, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/page.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/page.php'),
(4891, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/permission-denied.php'),
(4892, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/role.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/role.php'),
(4893, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php'),
(4894, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/settings.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/settings.php'),
(4895, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php', 'wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php'),
(4896, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/settings/options.php', 'wp-content/plugins/wordfence/modules/login-security/views/settings/options.php'),
(4897, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php', 'wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php'),
(4898, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php', 'wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php'),
(4899, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php', 'wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php'),
(4900, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/readme.txt', 'wp-content/plugins/wordfence/readme.txt'),
(4901, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/tmp/.htaccess', 'wp-content/plugins/wordfence/tmp/.htaccess'),
(4902, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/.htaccess', 'wp-content/plugins/wordfence/vendor/.htaccess'),
(4903, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/autoload.php', 'wp-content/plugins/wordfence/vendor/autoload.php'),
(4904, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/ClassLoader.php', 'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),
(4905, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php', 'wp-content/plugins/wordfence/vendor/composer/InstalledVersions.php'),
(4906, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/LICENSE', 'wp-content/plugins/wordfence/vendor/composer/LICENSE'),
(4907, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php', 'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),
(4908, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php', 'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),
(4909, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php', 'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),
(4910, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_real.php', 'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),
(4911, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/autoload_static.php', 'wp-content/plugins/wordfence/vendor/composer/autoload_static.php'),
(4912, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/installed.json', 'wp-content/plugins/wordfence/vendor/composer/installed.json'),
(4913, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/composer/installed.php', 'wp-content/plugins/wordfence/vendor/composer/installed.php'),
(4914, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/ControlByte.php'),
(4915, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DataFieldParser.php'),
(4916, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Database.php'),
(4917, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/DatabaseMetadata.php'),
(4918, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Endianness.php'),
(4919, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/FormatException.php'),
(4920, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleIpVersionException.php'),
(4921, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IncompatibleVersionException.php'),
(4922, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidArgumentException.php'),
(4923, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidIpAddressException.php'),
(4924, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/InvalidOperationException.php'),
(4925, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/IoException.php'),
(4926, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbException.php'),
(4927, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/MmdbThrowable.php'),
(4928, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Exception/RuntimeMmdbException.php'),
(4929, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IntegerParser.php'),
(4930, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Io/FileHandle.php'),
(4931, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddress.php'),
(4932, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/IpAddressInterface.php'),
(4933, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/Node.php'),
(4934, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeReader.php'),
(4935, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php', 'wp-content/plugins/wordfence/vendor/wordfence/mmdb-reader/src/NodeRecord.php'),
(4936, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),
(4937, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),
(4938, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),
(4939, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/api.php'),
(4940, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),
(4941, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),
(4942, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php'),
(4943, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),
(4944, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),
(4945, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),
(4946, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),
(4947, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),
(4948, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),
(4949, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/shutdown.php'),
(4950, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),
(4951, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php'),
(4952, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),
(4953, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),
(4954, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),
(4955, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),
(4956, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php'),
(4957, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),
(4958, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),
(4959, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),
(4960, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),
(4961, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),
(4962, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php', 'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),
(4963, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/.htaccess', 'wp-content/plugins/wordfence/views/.htaccess'),
(4964, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/block-list.php', 'wp-content/plugins/wordfence/views/blocking/block-list.php'),
(4965, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/blocking-create.php', 'wp-content/plugins/wordfence/views/blocking/blocking-create.php'),
(4966, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/blocking-status.php', 'wp-content/plugins/wordfence/views/blocking/blocking-status.php'),
(4967, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/country-block-map.php', 'wp-content/plugins/wordfence/views/blocking/country-block-map.php'),
(4968, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/country-modal.php', 'wp-content/plugins/wordfence/views/blocking/country-modal.php'),
(4969, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php', 'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),
(4970, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php', 'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),
(4971, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php', 'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),
(4972, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/block-navigation-option.php', 'wp-content/plugins/wordfence/views/common/block-navigation-option.php'),
(4973, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/indeterminate-progress.php', 'wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),
(4974, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/license.php', 'wp-content/plugins/wordfence/views/common/license.php'),
(4975, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/modal-prompt.php', 'wp-content/plugins/wordfence/views/common/modal-prompt.php'),
(4976, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php', 'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),
(4977, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-help.php', 'wp-content/plugins/wordfence/views/common/page-help.php'),
(4978, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-tabbar.php', 'wp-content/plugins/wordfence/views/common/page-tabbar.php'),
(4979, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/page-title.php', 'wp-content/plugins/wordfence/views/common/page-title.php'),
(4980, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/section-subtitle.php', 'wp-content/plugins/wordfence/views/common/section-subtitle.php'),
(4981, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/section-title.php', 'wp-content/plugins/wordfence/views/common/section-title.php'),
(4982, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-circular.php', 'wp-content/plugins/wordfence/views/common/status-circular.php'),
(4983, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-critical.php', 'wp-content/plugins/wordfence/views/common/status-critical.php'),
(4984, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-detail.php', 'wp-content/plugins/wordfence/views/common/status-detail.php'),
(4985, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-tooltip.php', 'wp-content/plugins/wordfence/views/common/status-tooltip.php'),
(4986, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/status-warning.php', 'wp-content/plugins/wordfence/views/common/status-warning.php'),
(4987, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/common/unsubscribe.php', 'wp-content/plugins/wordfence/views/common/unsubscribe.php'),
(4988, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/global-status.php', 'wp-content/plugins/wordfence/views/dashboard/global-status.php'),
(4989, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/option-howgetips.php', 'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),
(4990, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-alert.php', 'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),
(4991, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php', 'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),
(4992, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php', 'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),
(4993, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-general.php', 'wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),
(4994, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-import.php', 'wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),
(4995, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-license.php', 'wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),
(4996, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php', 'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),
(4997, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php', 'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),
(4998, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/dashboard/status-renewing.php', 'wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),
(4999, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/diagnostics/text.php', 'wp-content/plugins/wordfence/views/diagnostics/text.php'),
(5000, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/gdpr/banner.php', 'wp-content/plugins/wordfence/views/gdpr/banner.php'),
(5001, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php', 'wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php'),
(5002, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php', 'wp-content/plugins/wordfence/views/offboarding/deactivation-prompt.php'),
(5003, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/banner.php', 'wp-content/plugins/wordfence/views/onboarding/banner.php'),
(5004, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php', 'wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php'),
(5005, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/fresh-install.php', 'wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),
(5006, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php', 'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),
(5007, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/overlay.php', 'wp-content/plugins/wordfence/views/onboarding/overlay.php'),
(5008, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/plugin-header.php', 'wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),
(5009, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/registration-prompt.php', 'wp-content/plugins/wordfence/views/onboarding/registration-prompt.php'),
(5010, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/onboarding/tour-overlay.php', 'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),
(5011, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/block-all-options-controls.php', 'wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),
(5012, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/block-controls.php', 'wp-content/plugins/wordfence/views/options/block-controls.php'),
(5013, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-label.php', 'wp-content/plugins/wordfence/views/options/option-label.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(5014, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-select.php', 'wp-content/plugins/wordfence/views/options/option-select.php'),
(5015, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-switch.php', 'wp-content/plugins/wordfence/views/options/option-switch.php'),
(5016, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-text.php', 'wp-content/plugins/wordfence/views/options/option-text.php'),
(5017, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-textarea.php', 'wp-content/plugins/wordfence/views/options/option-textarea.php'),
(5018, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php', 'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),
(5019, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-multiple.php', 'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),
(5020, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-segmented.php', 'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),
(5021, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-select.php', 'wp-content/plugins/wordfence/views/options/option-toggled-select.php'),
(5022, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-sub.php', 'wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),
(5023, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled-textarea.php', 'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),
(5024, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-toggled.php', 'wp-content/plugins/wordfence/views/options/option-toggled.php'),
(5025, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/option-token.php', 'wp-content/plugins/wordfence/views/options/option-token.php'),
(5026, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/options/options-title.php', 'wp-content/plugins/wordfence/views/options/options-title.php'),
(5027, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php', 'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),
(5028, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/reports/activity-report.php', 'wp-content/plugins/wordfence/views/reports/activity-report.php'),
(5029, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-base.php', 'wp-content/plugins/wordfence/views/scanner/issue-base.php'),
(5030, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php', 'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),
(5031, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php', 'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),
(5032, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php', 'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),
(5033, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php', 'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),
(5034, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-configReadable.php', 'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),
(5035, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php', 'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),
(5036, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php', 'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),
(5037, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php', 'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),
(5038, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php', 'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),
(5039, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php', 'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),
(5040, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-repair.php', 'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),
(5041, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php', 'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),
(5042, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php', 'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),
(5043, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-database.php', 'wp-content/plugins/wordfence/views/scanner/issue-database.php'),
(5044, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php', 'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),
(5045, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php', 'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),
(5046, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-file.php', 'wp-content/plugins/wordfence/views/scanner/issue-file.php'),
(5047, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php', 'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),
(5048, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-knownfile.php', 'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),
(5049, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php', 'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),
(5050, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php', 'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),
(5051, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php', 'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),
(5052, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php', 'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),
(5053, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php', 'wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php'),
(5054, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php', 'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),
(5055, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php', 'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),
(5056, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-timelimit.php', 'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),
(5057, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php', 'wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php'),
(5058, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfAssistantPresent.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfAssistantPresent.php'),
(5059, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),
(5060, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),
(5061, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),
(5062, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),
(5063, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),
(5064, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),
(5065, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php', 'wp-content/plugins/wordfence/views/scanner/issue-wfUpgradeError.php'),
(5066, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php', 'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),
(5067, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php', 'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),
(5068, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/no-issues.php', 'wp-content/plugins/wordfence/views/scanner/no-issues.php'),
(5069, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php', 'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),
(5070, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-advanced.php', 'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),
(5071, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-basic.php', 'wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),
(5072, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-general.php', 'wp-content/plugins/wordfence/views/scanner/options-group-general.php'),
(5073, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-performance.php', 'wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),
(5074, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php', 'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),
(5075, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-failed.php', 'wp-content/plugins/wordfence/views/scanner/scan-failed.php'),
(5076, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php', 'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),
(5077, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-progress-element.php', 'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),
(5078, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-progress.php', 'wp-content/plugins/wordfence/views/scanner/scan-progress.php'),
(5079, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-results.php', 'wp-content/plugins/wordfence/views/scanner/scan-results.php'),
(5080, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-scheduling.php', 'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),
(5081, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-starter.php', 'wp-content/plugins/wordfence/views/scanner/scan-starter.php'),
(5082, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scan-type.php', 'wp-content/plugins/wordfence/views/scanner/scan-type.php'),
(5083, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/scanner-status.php', 'wp-content/plugins/wordfence/views/scanner/scanner-status.php'),
(5084, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php', 'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),
(5085, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php', 'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),
(5086, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php', 'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),
(5087, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/scanner/site-cleaning.php', 'wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),
(5088, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tools/options-group-2fa.php', 'wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),
(5089, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tools/options-group-audit-log.php', 'wp-content/plugins/wordfence/views/tools/options-group-audit-log.php'),
(5090, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php', 'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),
(5091, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/tours/login-security.php', 'wp-content/plugins/wordfence/views/tours/login-security.php'),
(5092, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/unsupported-php/admin-message.php', 'wp-content/plugins/wordfence/views/unsupported-php/admin-message.php'),
(5093, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/unsupported-wp/admin-message.php', 'wp-content/plugins/wordfence/views/unsupported-wp/admin-message.php'),
(5094, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/user/disabled-application-passwords.php', 'wp-content/plugins/wordfence/views/user/disabled-application-passwords.php'),
(5095, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/debug.php', 'wp-content/plugins/wordfence/views/waf/debug.php'),
(5096, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/firewall-status.php', 'wp-content/plugins/wordfence/views/waf/firewall-status.php'),
(5097, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/option-rate-limit.php', 'wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),
(5098, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/option-rules.php', 'wp-content/plugins/wordfence/views/waf/option-rules.php'),
(5099, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/option-whitelist.php', 'wp-content/plugins/wordfence/views/waf/option-whitelist.php'),
(5100, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php', 'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),
(5101, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php', 'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),
(5102, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-brute-force.php', 'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),
(5103, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php', 'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),
(5104, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php', 'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),
(5105, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php', 'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),
(5106, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-install-manual.php', 'wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),
(5107, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-install-success.php', 'wp-content/plugins/wordfence/views/waf/waf-install-success.php'),
(5108, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-install.php', 'wp-content/plugins/wordfence/views/waf/waf-install.php'),
(5109, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php', 'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),
(5110, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php', 'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),
(5111, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/views/waf/waf-uninstall.php', 'wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),
(5112, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/.htaccess', 'wp-content/plugins/wordfence/waf/.htaccess'),
(5113, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php', 'wp-content/plugins/wordfence/waf/bootstrap.php'),
(5114, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/dummy.php', 'wp-content/plugins/wordfence/waf/dummy.php'),
(5115, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/entry.php', 'wp-content/plugins/wordfence/waf/pomo/entry.php'),
(5116, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/mo.php', 'wp-content/plugins/wordfence/waf/pomo/mo.php'),
(5117, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/plural-forms.php', 'wp-content/plugins/wordfence/waf/pomo/plural-forms.php'),
(5118, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/po.php', 'wp-content/plugins/wordfence/waf/pomo/po.php'),
(5119, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/streams.php', 'wp-content/plugins/wordfence/waf/pomo/streams.php'),
(5120, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/pomo/translations.php', 'wp-content/plugins/wordfence/waf/pomo/translations.php'),
(5121, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFBlockConstants.php', 'wp-content/plugins/wordfence/waf/wfWAFBlockConstants.php'),
(5122, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFBlockI18n.php', 'wp-content/plugins/wordfence/waf/wfWAFBlockI18n.php'),
(5123, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php', 'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),
(5124, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php', 'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),
(5125, '/home/binawebp/omsrislb.my/wp-content/plugins/wordfence/wordfence.php', 'wp-content/plugins/wordfence/wordfence.php'),
(5126, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/LICENSE.txt', 'wp-content/plugins/wp-optimize/LICENSE.txt'),
(5127, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wp-optimize-cache-commands.php', 'wp-content/plugins/wp-optimize/cache/class-wp-optimize-cache-commands.php'),
(5128, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wp-optimize-detect-cache-plugins.php', 'wp-content/plugins/wp-optimize/cache/class-wp-optimize-detect-cache-plugins.php'),
(5129, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wp-optimize-page-cache-preloader.php', 'wp-content/plugins/wp-optimize/cache/class-wp-optimize-page-cache-preloader.php'),
(5130, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-cache-config.php', 'wp-content/plugins/wp-optimize/cache/class-wpo-cache-config.php'),
(5131, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-cache-rules.php', 'wp-content/plugins/wp-optimize/cache/class-wpo-cache-rules.php'),
(5132, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php', 'wp-content/plugins/wp-optimize/cache/class-wpo-load-url-task.php'),
(5133, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/class-wpo-page-cache.php', 'wp-content/plugins/wp-optimize/cache/class-wpo-page-cache.php'),
(5134, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php', 'wp-content/plugins/wp-optimize/cache/file-based-page-cache-functions.php'),
(5135, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/cache/file-based-page-cache.php', 'wp-content/plugins/wp-optimize/cache/file-based-page-cache.php'),
(5136, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/changelog.txt', 'wp-content/plugins/wp-optimize/changelog.txt'),
(5137, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-custom-permalink-compatibility.php', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-custom-permalink-compatibility.php'),
(5138, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-page-builder-compatibility.php', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-page-builder-compatibility.php'),
(5139, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-polylang-compatibility.php', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-polylang-compatibility.php'),
(5140, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/compatibility/class-wpo-translatepress-compatibility.php', 'wp-content/plugins/wp-optimize/compatibility/class-wpo-translatepress-compatibility.php'),
(5141, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/admin-4-1-1.min.css', 'wp-content/plugins/wp-optimize/css/admin-4-1-1.min.css'),
(5142, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/admin.css', 'wp-content/plugins/wp-optimize/css/admin.css'),
(5143, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/smush-4-1-1.min.css', 'wp-content/plugins/wp-optimize/css/smush-4-1-1.min.css'),
(5144, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/smush.css', 'wp-content/plugins/wp-optimize/css/smush.css'),
(5145, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/sortable/sortable-4-1-1.min.css', 'wp-content/plugins/wp-optimize/css/sortable/sortable-4-1-1.min.css'),
(5146, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/sortable/sortable.css', 'wp-content/plugins/wp-optimize/css/sortable/sortable.css'),
(5147, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-admin-4-1-1.min.css', 'wp-content/plugins/wp-optimize/css/wp-optimize-admin-4-1-1.min.css'),
(5148, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-admin.css', 'wp-content/plugins/wp-optimize/css/wp-optimize-admin.css'),
(5149, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-global-4-1-1.min.css', 'wp-content/plugins/wp-optimize/css/wp-optimize-global-4-1-1.min.css'),
(5150, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/css/wp-optimize-global.css', 'wp-content/plugins/wp-optimize/css/wp-optimize-global.css'),
(5151, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/google-fonts.json', 'wp-content/plugins/wp-optimize/google-fonts.json'),
(5152, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/advanced.png', 'wp-content/plugins/wp-optimize/images/features/advanced.png'),
(5153, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/auto-optimize.png', 'wp-content/plugins/wp-optimize/images/features/auto-optimize.png'),
(5154, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png', 'wp-content/plugins/wp-optimize/images/features/automatic-clean-ups.png'),
(5155, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png', 'wp-content/plugins/wp-optimize/images/features/cache-vehicle-64x64.png'),
(5156, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/choice-n-flexibility.png', 'wp-content/plugins/wp-optimize/images/features/choice-n-flexibility.png'),
(5157, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/database-optimization-vehicle-64x64.png', 'wp-content/plugins/wp-optimize/images/features/database-optimization-vehicle-64x64.png'),
(5158, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png', 'wp-content/plugins/wp-optimize/images/features/displays-database-table-sta.png'),
(5159, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png', 'wp-content/plugins/wp-optimize/images/features/enables-disables-trackbacks.png'),
(5160, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png', 'wp-content/plugins/wp-optimize/images/features/enhanced-robustness.png'),
(5161, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/geolocation.png', 'wp-content/plugins/wp-optimize/images/features/geolocation.png'),
(5162, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png', 'wp-content/plugins/wp-optimize/images/features/image-compression-vehicle-64x64.png'),
(5163, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/lazy-load.png', 'wp-content/plugins/wp-optimize/images/features/lazy-load.png'),
(5164, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/logging-n-reporting.png', 'wp-content/plugins/wp-optimize/images/features/logging-n-reporting.png'),
(5165, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/more-settings.png', 'wp-content/plugins/wp-optimize/images/features/more-settings.png'),
(5166, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/multisite-support.png', 'wp-content/plugins/wp-optimize/images/features/multisite-support.png'),
(5167, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/number_of_weeks.png', 'wp-content/plugins/wp-optimize/images/features/number_of_weeks.png'),
(5168, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/optimization-preview.png', 'wp-content/plugins/wp-optimize/images/features/optimization-preview.png'),
(5169, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/optimize-individual.png', 'wp-content/plugins/wp-optimize/images/features/optimize-individual.png'),
(5170, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/premium-support.png', 'wp-content/plugins/wp-optimize/images/features/premium-support.png'),
(5171, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png', 'wp-content/plugins/wp-optimize/images/features/remove-unwanted-img.png'),
(5172, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/scheduling.png', 'wp-content/plugins/wp-optimize/images/features/scheduling.png'),
(5173, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/updraftcentral_logo.png', 'wp-content/plugins/wp-optimize/images/features/updraftcentral_logo.png'),
(5174, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png', 'wp-content/plugins/wp-optimize/images/features/updraftplus_logo.png'),
(5175, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/features/wp-cli.png', 'wp-content/plugins/wp-optimize/images/features/wp-cli.png'),
(5176, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/icon/wpo.png', 'wp-content/plugins/wp-optimize/images/icon/wpo.png'),
(5177, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/logo/udp_logo_small.png', 'wp-content/plugins/wp-optimize/images/logo/udp_logo_small.png'),
(5178, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png', 'wp-content/plugins/wp-optimize/images/logo/wpo_logo_small.png'),
(5179, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/black_friday.png', 'wp-content/plugins/wp-optimize/images/notices/black_friday.png'),
(5180, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png', 'wp-content/plugins/wp-optimize/images/notices/cache-video-preview.png'),
(5181, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png', 'wp-content/plugins/wp-optimize/images/notices/image-compression-video-preview.png'),
(5182, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/keyy_logo.png', 'wp-content/plugins/wp-optimize/images/notices/keyy_logo.png'),
(5183, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png', 'wp-content/plugins/wp-optimize/images/notices/logo-bg-notice.png'),
(5184, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/minify-video-preview.png', 'wp-content/plugins/wp-optimize/images/notices/minify-video-preview.png'),
(5185, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/new_year.png', 'wp-content/plugins/wp-optimize/images/notices/new_year.png'),
(5186, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_20.png', 'wp-content/plugins/wp-optimize/images/notices/sale_20.png'),
(5187, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_blackfriday_24.png', 'wp-content/plugins/wp-optimize/images/notices/sale_blackfriday_24.png'),
(5188, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_collection_24.png', 'wp-content/plugins/wp-optimize/images/notices/sale_collection_24.png'),
(5189, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_newyear_24.png', 'wp-content/plugins/wp-optimize/images/notices/sale_newyear_24.png'),
(5190, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_spring_24.png', 'wp-content/plugins/wp-optimize/images/notices/sale_spring_24.png'),
(5191, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/sale_summer_24.png', 'wp-content/plugins/wp-optimize/images/notices/sale_summer_24.png'),
(5192, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/spring.png', 'wp-content/plugins/wp-optimize/images/notices/spring.png'),
(5193, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/subscriben.png', 'wp-content/plugins/wp-optimize/images/notices/subscriben.png'),
(5194, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/summer.png', 'wp-content/plugins/wp-optimize/images/notices/summer.png'),
(5195, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/ud_smile.png', 'wp-content/plugins/wp-optimize/images/notices/ud_smile.png'),
(5196, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/updraft_logo.png', 'wp-content/plugins/wp-optimize/images/notices/updraft_logo.png'),
(5197, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/notices/wp_optimize_logo.png', 'wp-content/plugins/wp-optimize/images/notices/wp_optimize_logo.png'),
(5198, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/aios-logo-wide-sm.png', 'wp-content/plugins/wp-optimize/images/our-other-plugins/aios-logo-wide-sm.png'),
(5199, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/easy-updates-manager-sm.png', 'wp-content/plugins/wp-optimize/images/our-other-plugins/easy-updates-manager-sm.png'),
(5200, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/internal-link-juicer-logo-sm.png', 'wp-content/plugins/wp-optimize/images/our-other-plugins/internal-link-juicer-logo-sm.png'),
(5201, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/wp-overnight-sm.png', 'wp-content/plugins/wp-optimize/images/our-other-plugins/wp-overnight-sm.png'),
(5202, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/images/our-other-plugins/wpgetapi-sm.png', 'wp-content/plugins/wp-optimize/images/our-other-plugins/wpgetapi-sm.png'),
(5203, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php', 'wp-content/plugins/wp-optimize/includes/backward-compatibility-functions.php'),
(5204, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI-4-1-1.min.js', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI-4-1-1.min.js'),
(5205, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.js', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.js'),
(5206, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min-4-1-1.min.js', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min-4-1-1.min.js'),
(5207, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min.js', 'wp-content/plugins/wp-optimize/includes/blockui/jquery.blockUI.min.js'),
(5208, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-re-smush-it-task.php', 'wp-content/plugins/wp-optimize/includes/class-re-smush-it-task.php'),
(5209, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-abstract-logger.php'),
(5210, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-email-logger.php'),
(5211, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-file-logger.php'),
(5212, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-log-levels.php'),
(5213, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-logger-interface.php'),
(5214, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-logger.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-logger.php'),
(5215, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-php-logger.php'),
(5216, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-ring-logger.php'),
(5217, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager-commands.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager-commands.php'),
(5218, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-smush-manager.php'),
(5219, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php', 'wp-content/plugins/wp-optimize/includes/class-updraft-smush-task.php'),
(5220, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php', 'wp-content/plugins/wp-optimize/includes/class-updraftcentral-wp-optimize-commands.php'),
(5221, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimization.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimization.php'),
(5222, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector-cron.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector-cron.php'),
(5223, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-404-detector.php'),
(5224, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-admin.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-admin.php'),
(5225, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-browser-cache.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-browser-cache.php'),
(5226, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-commands.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-commands.php'),
(5227, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-database-information.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-database-information.php'),
(5228, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-delay-js.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-delay-js.php'),
(5229, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-gzip-compression.php'),
(5230, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-heartbeat.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-heartbeat.php'),
(5231, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-htaccess.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-htaccess.php'),
(5232, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-http-error-codes-trait.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-http-error-codes-trait.php'),
(5233, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-install-or-update-notice.php'),
(5234, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-notices.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-notices.php'),
(5235, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-options.php'),
(5236, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-performance.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-performance.php'),
(5237, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-preloader.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-preloader.php'),
(5238, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-server-information.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-server-information.php'),
(5239, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-system-status-report.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-system-status-report.php'),
(5240, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-table-management.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-table-management.php'),
(5241, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-transients-cache.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-transients-cache.php'),
(5242, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-updates.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-updates.php'),
(5243, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimize-utils.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimize-utils.php'),
(5244, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wp-optimizer.php', 'wp-content/plugins/wp-optimize/includes/class-wp-optimizer.php'),
(5245, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-activation.php', 'wp-content/plugins/wp-optimize/includes/class-wpo-activation.php'),
(5246, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-ajax.php', 'wp-content/plugins/wp-optimize/includes/class-wpo-ajax.php'),
(5247, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-deactivation.php', 'wp-content/plugins/wp-optimize/includes/class-wpo-deactivation.php'),
(5248, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-image-utils.php', 'wp-content/plugins/wp-optimize/includes/class-wpo-image-utils.php'),
(5249, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/class-wpo-uninstall.php', 'wp-content/plugins/wp-optimize/includes/class-wpo-uninstall.php'),
(5250, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/list-tables/class-wp-optimize-queries-list-table.php', 'wp-content/plugins/wp-optimize/includes/list-tables/class-wp-optimize-queries-list-table.php'),
(5251, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/tables/class-wp-optimize-table-404-detector.php', 'wp-content/plugins/wp-optimize/includes/tables/class-wp-optimize-table-404-detector.php'),
(5252, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/tables/interface-wp-optimize-table-interface.php', 'wp-content/plugins/wp-optimize/includes/tables/interface-wp-optimize-table-interface.php'),
(5253, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/includes/updraftcentral.php', 'wp-content/plugins/wp-optimize/includes/updraftcentral.php'),
(5254, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/index.html', 'wp-content/plugins/wp-optimize/index.html'),
(5255, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/blockUI-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/blockUI-4-1-1.min.js'),
(5256, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/blockUI.js', 'wp-content/plugins/wp-optimize/js/blockUI.js'),
(5257, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/cache-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/cache-4-1-1.min.js'),
(5258, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/cache.js', 'wp-content/plugins/wp-optimize/js/cache.js'),
(5259, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/delay-js-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/delay-js-4-1-1.min.js'),
(5260, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/delay-js.js', 'wp-content/plugins/wp-optimize/js/delay-js.js'),
(5261, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/LICENSE', 'wp-content/plugins/wp-optimize/js/handlebars/LICENSE'),
(5262, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.js', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.js'),
(5263, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.min.js', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.min.js'),
(5264, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.js'),
(5265, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js', 'wp-content/plugins/wp-optimize/js/handlebars/handlebars.runtime.min.js'),
(5266, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/heartbeat-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/heartbeat-4-1-1.min.js'),
(5267, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/heartbeat.js', 'wp-content/plugins/wp-optimize/js/heartbeat.js'),
(5268, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/jszip/LICENSE.markdown', 'wp-content/plugins/wp-optimize/js/jszip/LICENSE.markdown'),
(5269, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/jszip/jszip.js', 'wp-content/plugins/wp-optimize/js/jszip/jszip.js'),
(5270, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/jszip/jszip.min.js', 'wp-content/plugins/wp-optimize/js/jszip/jszip.min.js'),
(5271, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadAsync-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/loadAsync-4-1-1.min.js'),
(5272, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadAsync.js', 'wp-content/plugins/wp-optimize/js/loadAsync.js'),
(5273, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadCSS-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/loadCSS-4-1-1.min.js'),
(5274, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/loadCSS.js', 'wp-content/plugins/wp-optimize/js/loadCSS.js'),
(5275, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/minify-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/minify-4-1-1.min.js'),
(5276, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/minify.js', 'wp-content/plugins/wp-optimize/js/minify.js'),
(5277, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/modal-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/modal-4-1-1.min.js'),
(5278, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/modal.js', 'wp-content/plugins/wp-optimize/js/modal.js'),
(5279, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/queue-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/queue-4-1-1.min.js'),
(5280, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/queue.js', 'wp-content/plugins/wp-optimize/js/queue.js'),
(5281, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/send-command-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/send-command-4-1-1.min.js'),
(5282, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/send-command.js', 'wp-content/plugins/wp-optimize/js/send-command.js'),
(5283, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.js', 'wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.js'),
(5284, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.min.js', 'wp-content/plugins/wp-optimize/js/serialize-json/jquery.serializejson.min.js'),
(5285, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.js', 'wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.js'),
(5286, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.min.js', 'wp-content/plugins/wp-optimize/js/sortable/sortable.a11y.min.js'),
(5287, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.js', 'wp-content/plugins/wp-optimize/js/sortable/sortable.js'),
(5288, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/sortable/sortable.min.js', 'wp-content/plugins/wp-optimize/js/sortable/sortable.min.js'),
(5289, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/status-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/status-4-1-1.min.js'),
(5290, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/status.js', 'wp-content/plugins/wp-optimize/js/status.js'),
(5291, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpo-images-view-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/wpo-images-view-4-1-1.min.js'),
(5292, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpo-images-view.js', 'wp-content/plugins/wp-optimize/js/wpo-images-view.js'),
(5293, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpoadmin-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/wpoadmin-4-1-1.min.js'),
(5294, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wpoadmin.js', 'wp-content/plugins/wp-optimize/js/wpoadmin.js'),
(5295, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wposmush-4-1-1.min.js', 'wp-content/plugins/wp-optimize/js/wposmush-4-1-1.min.js'),
(5296, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/js/wposmush.js', 'wp-content/plugins/wp-optimize/js/wposmush.js'),
(5297, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/languages/wp-optimize.pot', 'wp-content/plugins/wp-optimize/languages/wp-optimize.pot'),
(5298, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-detect-minify-plugins.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-detect-minify-plugins.php'),
(5299, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-admin.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-admin.php'),
(5300, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-cache-functions.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-cache-functions.php'),
(5301, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-commands.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-commands.php'),
(5302, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-config.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-config.php'),
(5303, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-fonts.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-fonts.php'),
(5304, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-front-end.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-front-end.php'),
(5305, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-functions.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-functions.php'),
(5306, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-load-url-task.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-load-url-task.php'),
(5307, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-preloader.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-preloader.php'),
(5308, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-print.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify-print.php'),
(5309, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify.php', 'wp-content/plugins/wp-optimize/minify/class-wp-optimize-minify.php'),
(5310, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/attachments.php', 'wp-content/plugins/wp-optimize/optimizations/attachments.php'),
(5311, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/autodraft.php', 'wp-content/plugins/wp-optimize/optimizations/autodraft.php'),
(5312, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/commentmeta.php', 'wp-content/plugins/wp-optimize/optimizations/commentmeta.php'),
(5313, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/inactive-tags.php', 'wp-content/plugins/wp-optimize/optimizations/inactive-tags.php'),
(5314, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/optimizetables.php', 'wp-content/plugins/wp-optimize/optimizations/optimizetables.php'),
(5315, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/orphandata.php', 'wp-content/plugins/wp-optimize/optimizations/orphandata.php'),
(5316, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/orphanedtables.php', 'wp-content/plugins/wp-optimize/optimizations/orphanedtables.php'),
(5317, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/pingbacks.php', 'wp-content/plugins/wp-optimize/optimizations/pingbacks.php'),
(5318, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/postmeta.php', 'wp-content/plugins/wp-optimize/optimizations/postmeta.php'),
(5319, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/repairtables.php', 'wp-content/plugins/wp-optimize/optimizations/repairtables.php'),
(5320, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/revisions.php', 'wp-content/plugins/wp-optimize/optimizations/revisions.php'),
(5321, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/spam.php', 'wp-content/plugins/wp-optimize/optimizations/spam.php'),
(5322, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/trackbacks.php', 'wp-content/plugins/wp-optimize/optimizations/trackbacks.php'),
(5323, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/transient.php', 'wp-content/plugins/wp-optimize/optimizations/transient.php'),
(5324, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/trash.php', 'wp-content/plugins/wp-optimize/optimizations/trash.php'),
(5325, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/unapproved.php', 'wp-content/plugins/wp-optimize/optimizations/unapproved.php'),
(5326, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/optimizations/usermeta.php', 'wp-content/plugins/wp-optimize/optimizations/usermeta.php'),
(5327, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/plugin.json', 'wp-content/plugins/wp-optimize/plugin.json');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(5328, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/readme.txt', 'wp-content/plugins/wp-optimize/readme.txt'),
(5329, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/security.md', 'wp-content/plugins/wp-optimize/security.md'),
(5330, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-medialibrary-smush-column.php', 'wp-content/plugins/wp-optimize/templates/admin-medialibrary-smush-column.php'),
(5331, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-metabox-smush-settings.php', 'wp-content/plugins/wp-optimize/templates/admin-metabox-smush-settings.php'),
(5332, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php', 'wp-content/plugins/wp-optimize/templates/admin-metabox-smush.php'),
(5333, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-page-header-tabs.php', 'wp-content/plugins/wp-optimize/templates/admin-page-header-tabs.php'),
(5334, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/admin-page-header.php', 'wp-content/plugins/wp-optimize/templates/admin-page-header.php'),
(5335, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/browser-cache.php', 'wp-content/plugins/wp-optimize/templates/cache/browser-cache.php'),
(5336, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php', 'wp-content/plugins/wp-optimize/templates/cache/gzip-compression.php'),
(5337, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php', 'wp-content/plugins/wp-optimize/templates/cache/page-cache-advanced.php'),
(5338, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache-cloudflare-placeholder.php', 'wp-content/plugins/wp-optimize/templates/cache/page-cache-cloudflare-placeholder.php'),
(5339, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php', 'wp-content/plugins/wp-optimize/templates/cache/page-cache-preload.php'),
(5340, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/cache/page-cache.php', 'wp-content/plugins/wp-optimize/templates/cache/page-cache.php'),
(5341, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/optimizations-table.php', 'wp-content/plugins/wp-optimize/templates/database/optimizations-table.php'),
(5342, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/optimize-table.php', 'wp-content/plugins/wp-optimize/templates/database/optimize-table.php'),
(5343, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/settings-auto-cleanup.php', 'wp-content/plugins/wp-optimize/templates/database/settings-auto-cleanup.php'),
(5344, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/settings-general.php', 'wp-content/plugins/wp-optimize/templates/database/settings-general.php'),
(5345, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/settings.php', 'wp-content/plugins/wp-optimize/templates/database/settings.php'),
(5346, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/status-box-contents.php', 'wp-content/plugins/wp-optimize/templates/database/status-box-contents.php'),
(5347, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/table-analysis.php', 'wp-content/plugins/wp-optimize/templates/database/table-analysis.php'),
(5348, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/tables-body.php', 'wp-content/plugins/wp-optimize/templates/database/tables-body.php'),
(5349, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/tables-list-after.php', 'wp-content/plugins/wp-optimize/templates/database/tables-list-after.php'),
(5350, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/database/tables.php', 'wp-content/plugins/wp-optimize/templates/database/tables.php'),
(5351, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/handlebars-compiled-4-1-1.js', 'wp-content/plugins/wp-optimize/templates/handlebars-compiled-4-1-1.js'),
(5352, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/dimensions.php', 'wp-content/plugins/wp-optimize/templates/images/dimensions.php'),
(5353, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/lazyload.php', 'wp-content/plugins/wp-optimize/templates/images/lazyload.php'),
(5354, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/smush-details.php', 'wp-content/plugins/wp-optimize/templates/images/smush-details.php'),
(5355, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/smush-popup.php', 'wp-content/plugins/wp-optimize/templates/images/smush-popup.php'),
(5356, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/smush.php', 'wp-content/plugins/wp-optimize/templates/images/smush.php'),
(5357, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/images/unused.php', 'wp-content/plugins/wp-optimize/templates/images/unused.php'),
(5358, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/info-message.php', 'wp-content/plugins/wp-optimize/templates/info-message.php'),
(5359, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/advanced-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/advanced-tab.php'),
(5360, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/analytics-settings-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/analytics-settings-tab.php'),
(5361, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/asset-preload.php', 'wp-content/plugins/wp-optimize/templates/minify/asset-preload.php'),
(5362, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/cached-file-log.php', 'wp-content/plugins/wp-optimize/templates/minify/cached-file-log.php'),
(5363, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/cached-file.php', 'wp-content/plugins/wp-optimize/templates/minify/cached-file.php'),
(5364, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/css-settings-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/css-settings-tab.php'),
(5365, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/font-settings-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/font-settings-tab.php'),
(5366, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/html-settings-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/html-settings-tab.php'),
(5367, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/js-settings-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/js-settings-tab.php'),
(5368, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/preload-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/preload-tab.php'),
(5369, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/settings-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/settings-tab.php'),
(5370, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/minify/status-tab.php', 'wp-content/plugins/wp-optimize/templates/minify/status-tab.php'),
(5371, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/modal.php', 'wp-content/plugins/wp-optimize/templates/modal.php'),
(5372, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/cache-notice.php', 'wp-content/plugins/wp-optimize/templates/notices/cache-notice.php'),
(5373, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/horizontal-notice.php', 'wp-content/plugins/wp-optimize/templates/notices/horizontal-notice.php'),
(5374, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php', 'wp-content/plugins/wp-optimize/templates/notices/install-or-update-notice.php'),
(5375, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php', 'wp-content/plugins/wp-optimize/templates/notices/thanks-for-using-main-dash.php'),
(5376, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/pages-menu.php', 'wp-content/plugins/wp-optimize/templates/pages-menu.php'),
(5377, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/performance/404-detector.php', 'wp-content/plugins/wp-optimize/templates/performance/404-detector.php'),
(5378, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/performance/site-health.php', 'wp-content/plugins/wp-optimize/templates/performance/site-health.php'),
(5379, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/may-also-like.php', 'wp-content/plugins/wp-optimize/templates/settings/may-also-like.php'),
(5380, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-export-import.php', 'wp-content/plugins/wp-optimize/templates/settings/settings-export-import.php'),
(5381, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-general.php', 'wp-content/plugins/wp-optimize/templates/settings/settings-general.php'),
(5382, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-logging.php', 'wp-content/plugins/wp-optimize/templates/settings/settings-logging.php'),
(5383, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php', 'wp-content/plugins/wp-optimize/templates/settings/settings-trackback-and-comments.php'),
(5384, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/settings.php', 'wp-content/plugins/wp-optimize/templates/settings/settings.php'),
(5385, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/support-and-faqs.php', 'wp-content/plugins/wp-optimize/templates/settings/support-and-faqs.php'),
(5386, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/settings/system-status.php', 'wp-content/plugins/wp-optimize/templates/settings/system-status.php'),
(5387, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/status/status-page-ajax.php', 'wp-content/plugins/wp-optimize/templates/status/status-page-ajax.php'),
(5388, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/status/status-page.php', 'wp-content/plugins/wp-optimize/templates/status/status-page.php'),
(5389, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/templates/take-a-backup.php', 'wp-content/plugins/wp-optimize/templates/take-a-backup.php'),
(5390, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/autoload.php', 'wp-content/plugins/wp-optimize/vendor/autoload.php'),
(5391, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/cssmin', 'wp-content/plugins/wp-optimize/vendor/bin/cssmin'),
(5392, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/minifycss', 'wp-content/plugins/wp-optimize/vendor/bin/minifycss'),
(5393, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/minifyjs', 'wp-content/plugins/wp-optimize/vendor/bin/minifyjs'),
(5394, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/bin/plessc', 'wp-content/plugins/wp-optimize/vendor/bin/plessc'),
(5395, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php', 'wp-content/plugins/wp-optimize/vendor/composer/ClassLoader.php'),
(5396, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/InstalledVersions.php', 'wp-content/plugins/wp-optimize/vendor/composer/InstalledVersions.php'),
(5397, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/LICENSE', 'wp-content/plugins/wp-optimize/vendor/composer/LICENSE'),
(5398, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_classmap.php'),
(5399, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_files.php', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_files.php'),
(5400, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_namespaces.php'),
(5401, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_psr4.php'),
(5402, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_real.php'),
(5403, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/autoload_static.php', 'wp-content/plugins/wp-optimize/vendor/composer/autoload_static.php'),
(5404, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/include_paths.php', 'wp-content/plugins/wp-optimize/vendor/composer/include_paths.php'),
(5405, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/installed.json', 'wp-content/plugins/wp-optimize/vendor/composer/installed.json'),
(5406, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/composer/installed.php', 'wp-content/plugins/wp-optimize/vendor/composer/installed.php'),
(5407, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/LICENSE', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/LICENSE'),
(5408, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/AbstractVault.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/AbstractVault.php'),
(5409, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Directive.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Directive.php'),
(5410, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Environment.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Environment.php'),
(5411, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/AuthentificationException.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/AuthentificationException.php'),
(5412, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/InvalidParameterException.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/InvalidParameterException.php'),
(5413, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/NotSupportedException.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Exception/NotSupportedException.php'),
(5414, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/HttpAuth.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/HttpAuth.php'),
(5415, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Key.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Key.php'),
(5416, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/Facades/HttpAuth.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/Facades/HttpAuth.php'),
(5417, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/HttpAuthServiceProvider.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Laravel/HttpAuthServiceProvider.php'),
(5418, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthentification.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthentification.php'),
(5419, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthorization.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/HttpAuthorization.php'),
(5420, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/NullToken.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/NullToken.php'),
(5421, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthDigest.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthDigest.php'),
(5422, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthUser.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/PhpAuthUser.php'),
(5423, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/RedirectHttpAuthorization.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Token/RedirectHttpAuthorization.php'),
(5424, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/TokenInterface.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/TokenInterface.php'),
(5425, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/BasicVault.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/BasicVault.php'),
(5426, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/DigestVault.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/DigestVault.php'),
(5427, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/config/config.php', 'wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/config/config.php'),
(5428, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/LICENSE', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/LICENSE'),
(5429, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessc.inc.php', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessc.inc.php'),
(5430, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessify.inc.php', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/lessify.inc.php'),
(5431, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/package.sh', 'wp-content/plugins/wp-optimize/vendor/marcusschwarz/lesserphp/package.sh'),
(5432, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/LICENSE', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/LICENSE'),
(5433, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_after.txt', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_after.txt'),
(5434, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_before.txt', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_before.txt'),
(5435, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/keywords_reserved.txt'),
(5436, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators.txt', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators.txt'),
(5437, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_after.txt', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_after.txt'),
(5438, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_before.txt', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/data/js/operators_before.txt'),
(5439, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/ruleset.xml', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/ruleset.xml'),
(5440, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/CSS.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/CSS.php'),
(5441, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exception.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exception.php'),
(5442, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/BasicException.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/BasicException.php'),
(5443, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/FileImportException.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/FileImportException.php'),
(5444, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/IOException.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Exceptions/IOException.php'),
(5445, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/JS.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/JS.php'),
(5446, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Minify.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/minify/src/Minify.php'),
(5447, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/LICENSE', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/LICENSE'),
(5448, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/Converter.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/Converter.php'),
(5449, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/ConverterInterface.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/ConverterInterface.php'),
(5450, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/NoConverter.php', 'wp-content/plugins/wp-optimize/vendor/matthiasmullie/path-converter/src/NoConverter.php'),
(5451, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/LICENSE', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/LICENSE'),
(5452, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/DateTimeImmutable.php'),
(5453, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ErrorHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ErrorHandler.php'),
(5454, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php'),
(5455, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php'),
(5456, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ElasticsearchFormatter.php'),
(5457, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php'),
(5458, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php'),
(5459, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php'),
(5460, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php'),
(5461, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php'),
(5462, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php'),
(5463, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php'),
(5464, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php'),
(5465, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogmaticFormatter.php'),
(5466, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php'),
(5467, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php'),
(5468, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php'),
(5469, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php'),
(5470, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php'),
(5471, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php'),
(5472, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php'),
(5473, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php'),
(5474, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php'),
(5475, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php'),
(5476, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php'),
(5477, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php'),
(5478, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php'),
(5479, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php'),
(5480, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php'),
(5481, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php'),
(5482, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php'),
(5483, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php'),
(5484, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticaHandler.php'),
(5485, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ElasticsearchHandler.php'),
(5486, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php'),
(5487, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FallbackGroupHandler.php'),
(5488, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php'),
(5489, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php'),
(5490, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php'),
(5491, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php'),
(5492, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php'),
(5493, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php'),
(5494, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php'),
(5495, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php'),
(5496, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php'),
(5497, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php'),
(5498, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php'),
(5499, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php'),
(5500, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Handler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Handler.php'),
(5501, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php'),
(5502, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php'),
(5503, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php'),
(5504, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php'),
(5505, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php'),
(5506, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php'),
(5507, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/LogmaticHandler.php'),
(5508, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php'),
(5509, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php'),
(5510, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php'),
(5511, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php'),
(5512, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php'),
(5513, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php'),
(5514, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NoopHandler.php'),
(5515, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php'),
(5516, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/OverflowHandler.php'),
(5517, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php'),
(5518, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessHandler.php'),
(5519, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php'),
(5520, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php'),
(5521, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php'),
(5522, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php'),
(5523, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php'),
(5524, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RedisPubSubHandler.php'),
(5525, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php'),
(5526, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php'),
(5527, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php'),
(5528, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SendGridHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SendGridHandler.php'),
(5529, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php'),
(5530, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php'),
(5531, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php'),
(5532, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php'),
(5533, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SqsHandler.php'),
(5534, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php'),
(5535, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php'),
(5536, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php'),
(5537, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php'),
(5538, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php'),
(5539, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TelegramBotHandler.php'),
(5540, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php'),
(5541, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WebRequestRecognizerTrait.php'),
(5542, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php'),
(5543, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php'),
(5544, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Logger.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Logger.php'),
(5545, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php'),
(5546, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/HostnameProcessor.php'),
(5547, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php'),
(5548, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php'),
(5549, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php'),
(5550, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php'),
(5551, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php'),
(5552, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php'),
(5553, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php'),
(5554, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php'),
(5555, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php'),
(5556, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php'),
(5557, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php'),
(5558, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Registry.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Registry.php'),
(5559, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ResettableInterface.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/ResettableInterface.php'),
(5560, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/SignalHandler.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/SignalHandler.php'),
(5561, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Utils.php', 'wp-content/plugins/wp-optimize/vendor/monolog/monolog/src/Monolog/Utils.php'),
(5562, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/CHANGELOG.md', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/CHANGELOG.md'),
(5563, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/LICENSE.txt', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/LICENSE.txt'),
(5564, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/phpunit.xml', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/phpunit.xml'),
(5565, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/JSMin.php'),
(5566, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedCommentException.php'),
(5567, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedRegExpException.php'),
(5568, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/src/JSMin/UnterminatedStringException.php'),
(5569, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/web/index.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/jsmin-php/web/index.php'),
(5570, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/LICENSE.txt', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/LICENSE.txt'),
(5571, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/bootstrap.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/bootstrap.php'),
(5572, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/_index.js', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/_index.js'),
(5573, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm.js', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm.js'),
(5574, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm2.js', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/bm2.js'),
(5575, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/index.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/index.php'),
(5576, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/ocCheck.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/ocCheck.php'),
(5577, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/rewriteTest.js', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/rewriteTest.js'),
(5578, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/test.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/builder/test.php'),
(5579, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/config-test.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/config-test.php'),
(5580, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/config.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/config.php'),
(5581, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/example.index.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/example.index.php'),
(5582, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/groupsConfig.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/groupsConfig.php'),
(5583, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/index.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/index.php'),
(5584, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/ConditionalGet.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/ConditionalGet.php'),
(5585, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/Encoder.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/HTTP/Encoder.php'),
(5586, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/App.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/App.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(5587, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Build.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Build.php'),
(5588, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/Compressor.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/Compressor.php'),
(5589, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/UriRewriter.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS/UriRewriter.php'),
(5590, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSS.php'),
(5591, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSSmin.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CSSmin.php'),
(5592, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APC.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APC.php'),
(5593, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APCu.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/APCu.php'),
(5594, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/File.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/File.php'),
(5595, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Memcache.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Memcache.php'),
(5596, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Null.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/Null.php'),
(5597, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/WinCache.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/WinCache.php'),
(5598, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/XCache.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/XCache.php'),
(5599, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/ZendPlatform.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Cache/ZendPlatform.php'),
(5600, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CacheInterface.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CacheInterface.php'),
(5601, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ClosureCompiler.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ClosureCompiler.php'),
(5602, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CommentPreserver.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/CommentPreserver.php'),
(5603, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Config.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Config.php'),
(5604, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Base.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Base.php'),
(5605, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Files.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Files.php'),
(5606, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Groups.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Groups.php'),
(5607, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/MinApp.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/MinApp.php'),
(5608, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Page.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Controller/Page.php'),
(5609, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ControllerInterface.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ControllerInterface.php'),
(5610, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/DebugDetector.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/DebugDetector.php'),
(5611, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Env.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Env.php'),
(5612, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML/Helper.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML/Helper.php'),
(5613, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/HTML.php'),
(5614, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ImportProcessor.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ImportProcessor.php'),
(5615, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/ClosureCompiler.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/ClosureCompiler.php'),
(5616, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/JShrink.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/JS/JShrink.php'),
(5617, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/LessCssSource.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/LessCssSource.php'),
(5618, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Lines.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Lines.php'),
(5619, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Logger/LegacyHandler.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Logger/LegacyHandler.php'),
(5620, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/NailgunClosureCompiler.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/NailgunClosureCompiler.php'),
(5621, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Packer.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Packer.php'),
(5622, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ScssCssSource.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ScssCssSource.php'),
(5623, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ServeConfiguration.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/ServeConfiguration.php'),
(5624, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/Factory.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/Factory.php'),
(5625, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/FactoryException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source/FactoryException.php'),
(5626, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/Source.php'),
(5627, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceInterface.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceInterface.php'),
(5628, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceSet.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/SourceSet.php'),
(5629, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/YUICompressor.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify/YUICompressor.php'),
(5630, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/Minify.php'),
(5631, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli/Arg.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli/Arg.php'),
(5632, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/lib/MrClay/Cli.php'),
(5633, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.css', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.css'),
(5634, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.js', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.js'),
(5635, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.less', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-test.less'),
(5636, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-testinc.less', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/quick-testinc.less'),
(5637, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/server-info.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/server-info.php'),
(5638, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/gen.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/gen.php'),
(5639, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/lib.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/static/lib.php'),
(5640, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/minify/utils.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/minify/utils.php'),
(5641, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/LICENSE', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/LICENSE'),
(5642, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/BadMethodCallException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/BadMethodCallException.php'),
(5643, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Container.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Container.php'),
(5644, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/FactoryUncallableException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/FactoryUncallableException.php'),
(5645, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/NotFoundException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/NotFoundException.php'),
(5646, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Pimple.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/Pimple.php'),
(5647, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/ValueUnresolvableException.php', 'wp-content/plugins/wp-optimize/vendor/mrclay/props-dic/src/Props/ValueUnresolvableException.php'),
(5648, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/AUTHORS', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/AUTHORS'),
(5649, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/BACKERS.md', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/BACKERS.md'),
(5650, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/LICENSE', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/LICENSE'),
(5651, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/README.md', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/README.md'),
(5652, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/appveyor.yml', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/appveyor.yml'),
(5653, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/composer.json', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/composer.json'),
(5654, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php'),
(5655, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php'),
(5656, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php'),
(5657, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php'),
(5658, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php'),
(5659, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php'),
(5660, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php'),
(5661, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php'),
(5662, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php'),
(5663, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php'),
(5664, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php'),
(5665, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php'),
(5666, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php'),
(5667, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php'),
(5668, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/X509.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/File/X509.php'),
(5669, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php'),
(5670, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php'),
(5671, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php'),
(5672, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php'),
(5673, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php'),
(5674, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php'),
(5675, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php'),
(5676, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php'),
(5677, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php'),
(5678, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf', 'wp-content/plugins/wp-optimize/vendor/phpseclib/phpseclib/phpseclib/openssl.cnf'),
(5679, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/LICENSE', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/LICENSE'),
(5680, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/README.rst', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/README.rst'),
(5681, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Container.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Container.php'),
(5682, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php'),
(5683, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php'),
(5684, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php'),
(5685, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php'),
(5686, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/Container.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/Container.php'),
(5687, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php'),
(5688, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceIterator.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceIterator.php'),
(5689, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php'),
(5690, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php'),
(5691, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/NonInvokable.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/NonInvokable.php'),
(5692, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/PimpleServiceProvider.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/PimpleServiceProvider.php'),
(5693, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php'),
(5694, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php'),
(5695, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php'),
(5696, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ContainerTest.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ContainerTest.php'),
(5697, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ServiceLocatorTest.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ServiceLocatorTest.php'),
(5698, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/ServiceIteratorTest.php', 'wp-content/plugins/wp-optimize/vendor/pimple/pimple/src/Pimple/Tests/ServiceIteratorTest.php'),
(5699, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/LICENSE', 'wp-content/plugins/wp-optimize/vendor/psr/container/LICENSE'),
(5700, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerExceptionInterface.php', 'wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerExceptionInterface.php'),
(5701, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerInterface.php', 'wp-content/plugins/wp-optimize/vendor/psr/container/src/ContainerInterface.php'),
(5702, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/container/src/NotFoundExceptionInterface.php', 'wp-content/plugins/wp-optimize/vendor/psr/container/src/NotFoundExceptionInterface.php'),
(5703, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/LICENSE', 'wp-content/plugins/wp-optimize/vendor/psr/log/LICENSE'),
(5704, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/AbstractLogger.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/AbstractLogger.php'),
(5705, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/InvalidArgumentException.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/InvalidArgumentException.php'),
(5706, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LogLevel.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LogLevel.php'),
(5707, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareInterface.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareInterface.php'),
(5708, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareTrait.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerAwareTrait.php'),
(5709, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerInterface.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerInterface.php'),
(5710, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerTrait.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/LoggerTrait.php'),
(5711, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/NullLogger.php', 'wp-content/plugins/wp-optimize/vendor/psr/log/Psr/Log/NullLogger.php'),
(5712, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/LICENSE', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/LICENSE'),
(5713, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/README.md', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/README.md'),
(5714, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/composer.json', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/composer.json'),
(5715, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpstan.neon', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpstan.neon'),
(5716, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist'),
(5717, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist.bak', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/phpunit.xml.dist.bak'),
(5718, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Availability.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Availability.php'),
(5719, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallback.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallback.php'),
(5720, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallbackNoMercy.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ExecWithFallbackNoMercy.php'),
(5721, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/POpen.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/POpen.php'),
(5722, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Passthru.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/Passthru.php'),
(5723, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ProcOpen.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ProcOpen.php'),
(5724, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ShellExec.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/src/ShellExec.php'),
(5725, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/test.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/exec-with-fallback/test.php'),
(5726, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/LICENSE', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/LICENSE'),
(5727, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/README.md', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/README.md'),
(5728, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/composer.json', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/composer.json'),
(5729, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/phpcs-ruleset.xml', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/phpcs-ruleset.xml'),
(5730, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExists.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExists.php'),
(5731, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExistsUsingExec.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/FileExistsUsingExec.php'),
(5732, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/PathValidator.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/file-util/src/PathValidator.php'),
(5733, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/LICENSE', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/LICENSE'),
(5734, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpcs-ruleset.xml', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpcs-ruleset.xml'),
(5735, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpstan.neon', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/phpstan.neon'),
(5736, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/AbstractDetector.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/AbstractDetector.php'),
(5737, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/ExifImageType.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/ExifImageType.php'),
(5738, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/FInfo.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/FInfo.php'),
(5739, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/GetImageSize.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/GetImageSize.php'),
(5740, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/MimeContentType.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/MimeContentType.php'),
(5741, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/SignatureSniffer.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/SignatureSniffer.php'),
(5742, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/Stack.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/Detectors/Stack.php'),
(5743, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/GuessFromExtension.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/GuessFromExtension.php'),
(5744, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/ImageMimeTypeGuesser.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/ImageMimeTypeGuesser.php'),
(5745, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/MimeMap.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-guesser/src/MimeMap.php'),
(5746, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/LICENSE', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/LICENSE'),
(5747, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/README.md', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/README.md'),
(5748, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/composer.json', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/composer.json'),
(5749, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpcs-ruleset.xml', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpcs-ruleset.xml'),
(5750, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpunit.xml.dist', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/phpunit.xml.dist'),
(5751, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/src/ImageMimeTypeSniffer.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/image-mime-type-sniffer/src/ImageMimeTypeSniffer.php'),
(5752, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/LICENSE', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/LICENSE'),
(5753, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/README.md', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/README.md'),
(5754, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/composer.json', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/composer.json'),
(5755, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/phpcs-ruleset.xml', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/phpcs-ruleset.xml'),
(5756, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/src/LocateBinaries.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/locate-binaries/src/LocateBinaries.php'),
(5757, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/LICENSE', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/LICENSE'),
(5758, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpcs-ruleset.xml', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpcs-ruleset.xml'),
(5759, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpunit-with-coverage.xml.dist', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/phpunit-with-coverage.xml.dist'),
(5760, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/ConverterFactory.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/ConverterFactory.php'),
(5761, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/AbstractConverter.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/AbstractConverter.php'),
(5762, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/AutoQualityTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/AutoQualityTrait.php'),
(5763, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/DestinationPreparationTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/DestinationPreparationTrait.php'),
(5764, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/LoggerTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/LoggerTrait.php'),
(5765, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/OptionsTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/OptionsTrait.php'),
(5766, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/WarningLoggerTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits/WarningLoggerTrait.php'),
(5767, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CloudConverterTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CloudConverterTrait.php'),
(5768, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CurlTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/CurlTrait.php'),
(5769, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/EncodingAutoTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/EncodingAutoTrait.php'),
(5770, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/ExecTrait.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits/ExecTrait.php'),
(5771, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Cwebp.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Cwebp.php'),
(5772, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Ewww.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Ewww.php'),
(5773, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/FFMpeg.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/FFMpeg.php'),
(5774, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gd.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gd.php'),
(5775, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gmagick.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Gmagick.php'),
(5776, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GmagickBinary.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GmagickBinary.php'),
(5777, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GraphicsMagick.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/GraphicsMagick.php'),
(5778, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImageMagick.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImageMagick.php'),
(5779, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Imagick.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Imagick.php'),
(5780, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImagickBinary.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/ImagickBinary.php'),
(5781, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Stack.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Stack.php'),
(5782, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Vips.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Vips.php'),
(5783, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Wpc.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Converters/Wpc.php'),
(5784, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConversionSkippedException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConversionSkippedException.php'),
(5785, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/InvalidApiKeyException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/InvalidApiKeyException.php'),
(5786, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/SystemRequirementsNotMetException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational/SystemRequirementsNotMetException.php'),
(5787, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperationalException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperationalException.php'),
(5788, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFileException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFileException.php'),
(5789, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFolderException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems/CreateDestinationFolderException.php'),
(5790, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblemsException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblemsException.php'),
(5791, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/ConverterNotFoundException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/ConverterNotFoundException.php'),
(5792, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/InvalidImageTypeException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/InvalidImageTypeException.php'),
(5793, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/TargetNotFoundException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput/TargetNotFoundException.php'),
(5794, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInputException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInputException.php'),
(5795, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailedException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailedException.php'),
(5796, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/JpegQualityDetector.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/JpegQualityDetector.php'),
(5797, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/PhpIniSizes.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Convert/Helpers/PhpIniSizes.php'),
(5798, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/InvalidImageTypeException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/InvalidImageTypeException.php'),
(5799, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/TargetNotFoundException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput/TargetNotFoundException.php'),
(5800, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInputException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInputException.php'),
(5801, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/SanityException.txt', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/SanityException.txt'),
(5802, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/WebPConvertException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Exceptions/WebPConvertException.php'),
(5803, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/InputValidator.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/InputValidator.php'),
(5804, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/MimeType.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/MimeType.php'),
(5805, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/PathChecker.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/PathChecker.php'),
(5806, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/Sanitize.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/Sanitize.php'),
(5807, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/SanityCheck.txt', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Helpers/SanityCheck.txt'),
(5808, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BaseLogger.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BaseLogger.php'),
(5809, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BufferLogger.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/BufferLogger.php'),
(5810, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/EchoLogger.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Loggers/EchoLogger.php'),
(5811, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/ArrayOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/ArrayOption.php'),
(5812, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/BooleanOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/BooleanOption.php'),
(5813, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionTypeException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionTypeException.php'),
(5814, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionValueException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/InvalidOptionValueException.php'),
(5815, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/OptionNotFoundException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Exceptions/OptionNotFoundException.php'),
(5816, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/GhostOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/GhostOption.php'),
(5817, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOption.php'),
(5818, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOrNullOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/IntegerOrNullOption.php'),
(5819, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/MetadataOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/MetadataOption.php'),
(5820, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Option.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Option.php'),
(5821, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/OptionFactory.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/OptionFactory.php'),
(5822, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Options.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/Options.php'),
(5823, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/QualityOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/QualityOption.php'),
(5824, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveArrayOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveArrayOption.php'),
(5825, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveStringOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/SensitiveStringOption.php'),
(5826, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/StringOption.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Options/StringOption.php'),
(5827, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Exceptions/ServeFailedException.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Exceptions/ServeFailedException.php'),
(5828, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Header.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Header.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(5829, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Report.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/Report.php'),
(5830, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebP.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebP.php'),
(5831, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebPWithErrorHandling.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeConvertedWebPWithErrorHandling.php'),
(5832, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeFile.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/Serve/ServeFile.php'),
(5833, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/WebPConvert.php', 'wp-content/plugins/wp-optimize/vendor/rosell-dk/webp-convert/src/WebPConvert.php'),
(5834, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/CHANGELOG.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/CHANGELOG.md'),
(5835, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/Debug.php', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/Debug.php'),
(5836, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlDocument.php', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlDocument.php'),
(5837, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlElement.php', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlElement.php'),
(5838, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlNode.php', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlNode.php'),
(5839, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlWeb.php', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/HtmlWeb.php'),
(5840, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/LICENSE', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/LICENSE'),
(5841, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/README.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/README.md'),
(5842, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.json', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.json'),
(5843, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.lock', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/composer.lock'),
(5844, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/constants.php', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/constants.php'),
(5845, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/disable.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/disable.md'),
(5846, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/enable.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/enable.md'),
(5847, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/index.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/index.md'),
(5848, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log.md'),
(5849, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log_once.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/log_once.md'),
(5850, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/setDebugHandler.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/Debug/setDebugHandler.md'),
(5851, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__call.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__call.md'),
(5852, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__construct.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__construct.md'),
(5853, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__debugInfo.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__debugInfo.md'),
(5854, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__destruct.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__destruct.md'),
(5855, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__get.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__get.md'),
(5856, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__toString.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/__toString.md'),
(5857, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/as_text_node.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/as_text_node.md'),
(5858, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/childNodes.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/childNodes.md'),
(5859, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_skip.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_skip.md'),
(5860, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until.md'),
(5861, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until_char.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/copy_until_char.md'),
(5862, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createElement.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createElement.md'),
(5863, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createTextNode.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/createTextNode.md'),
(5864, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/dump.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/dump.md'),
(5865, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/expect.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/expect.md'),
(5866, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/find.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/find.md'),
(5867, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/firstChild.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/firstChild.md'),
(5868, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementById.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementById.md'),
(5869, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementByTagName.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementByTagName.md'),
(5870, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsById.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsById.md'),
(5871, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsByTagName.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/getElementsByTagName.md'),
(5872, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/index.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/index.md'),
(5873, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/lastChild.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/lastChild.md'),
(5874, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/link_nodes.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/link_nodes.md'),
(5875, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/load.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/load.md'),
(5876, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/loadFile.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/loadFile.md'),
(5877, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse.md'),
(5878, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_attr.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_attr.md'),
(5879, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_charset.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/parse_charset.md'),
(5880, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/prepare.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/prepare.md'),
(5881, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/read_tag.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/read_tag.md'),
(5882, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_callback.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_callback.md'),
(5883, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_noise.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/remove_noise.md'),
(5884, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/restore_noise.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/restore_noise.md'),
(5885, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/save.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/save.md'),
(5886, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/search_noise.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/search_noise.md'),
(5887, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/set_callback.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlDocument/set_callback.md'),
(5888, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__call.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__call.md'),
(5889, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__construct.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__construct.md'),
(5890, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__debugInfo.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__debugInfo.md'),
(5891, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__destruct.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__destruct.md'),
(5892, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__get.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__get.md'),
(5893, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__isset.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__isset.md'),
(5894, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__set.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__set.md'),
(5895, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__toString.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__toString.md'),
(5896, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__unset.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/__unset.md'),
(5897, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/addClass.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/addClass.md'),
(5898, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/appendChild.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/appendChild.md'),
(5899, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/childNodes.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/childNodes.md'),
(5900, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/clear.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/clear.md'),
(5901, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/convert_text.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/convert_text.md'),
(5902, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/definitions.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/definitions.md'),
(5903, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump.md'),
(5904, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump_node.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/dump_node.md'),
(5905, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/expect.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/expect.md'),
(5906, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find.md'),
(5907, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find_ancestor_tag.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/find_ancestor_tag.md'),
(5908, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/firstChild.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/firstChild.md'),
(5909, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAllAttributes.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAllAttributes.md'),
(5910, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAttribute.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getAttribute.md'),
(5911, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementById.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementById.md'),
(5912, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementByTagName.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementByTagName.md'),
(5913, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsById.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsById.md'),
(5914, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsByTagName.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/getElementsByTagName.md'),
(5915, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/get_display_size.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/get_display_size.md'),
(5916, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasAttribute.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasAttribute.md'),
(5917, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasChildNodes.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasChildNodes.md'),
(5918, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasClass.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasClass.md'),
(5919, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/index.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/index.md'),
(5920, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/innertext.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/innertext.md'),
(5921, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_block_element.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_block_element.md'),
(5922, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_utf8.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/is_utf8.md'),
(5923, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/lastChild.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/lastChild.md'),
(5924, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/makeup.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/makeup.md'),
(5925, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/match.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/match.md'),
(5926, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nextSibling.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nextSibling.md'),
(5927, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nodeName.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/nodeName.md'),
(5928, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/outertext.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/outertext.md'),
(5929, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parent.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parent.md'),
(5930, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parentNode.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parentNode.md'),
(5931, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parse_selector.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/parse_selector.md'),
(5932, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/previousSibling.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/previousSibling.md'),
(5933, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/remove.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/remove.md'),
(5934, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeAttribute.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeAttribute.md'),
(5935, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeChild.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeChild.md'),
(5936, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeClass.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeClass.md'),
(5937, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/save.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/save.md'),
(5938, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/seek.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/seek.md'),
(5939, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/setAttribute.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/setAttribute.md'),
(5940, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/text.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/text.md'),
(5941, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/xmltext.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/xmltext.md'),
(5942, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/constants.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/constants.md'),
(5943, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/css/extra.css', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/css/extra.css'),
(5944, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/accessing-element-attributes.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/accessing-element-attributes.md'),
(5945, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/adding-nodes.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/adding-nodes.md'),
(5946, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/creating-dom-objects.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/creating-dom-objects.md'),
(5947, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/customizing-parsing-behavior.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/customizing-parsing-behavior.md'),
(5948, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/finding-html-elements.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/finding-html-elements.md'),
(5949, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/saving-dom-objects.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/saving-dom-objects.md'),
(5950, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/traversing-dom-tree.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/traversing-dom-tree.md'),
(5951, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/faq/0001.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/faq/0001.md'),
(5952, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/index.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/index.md'),
(5953, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/quick-start.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/quick-start.md'),
(5954, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/requirements.md', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/requirements.md'),
(5955, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/mkdocs.yml', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/mkdocs.yml'),
(5956, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/simple_html_dom.php', 'wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/simple_html_dom.php'),
(5957, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-notices/updraft-notices.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-notices/updraft-notices.php'),
(5958, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-rpc/class-udrpc.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-rpc/class-udrpc.php'),
(5959, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/class-updraft-semaphore.php'),
(5960, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-semaphore/test.php'),
(5961, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager-commands.php'),
(5962, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-manager.php'),
(5963, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-meta.php'),
(5964, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task-options.php'),
(5965, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-task.php'),
(5966, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/common-libs/src/updraft-tasks/class-updraft-tasks-activation.php'),
(5967, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/README.md', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/README.md'),
(5968, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/bootstrap.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/bootstrap.php'),
(5969, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/automatic-upgrader-skin-compatibility.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/automatic-upgrader-skin-compatibility.php'),
(5970, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-automatic-upgrader-skin.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-automatic-upgrader-skin.php'),
(5971, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-updraftcentral-wp-upgrader.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/classes/class-updraftcentral-wp-upgrader.php'),
(5972, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/commands.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/commands.php'),
(5973, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/css/central.css', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/css/central.css'),
(5974, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/factory.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/factory.php'),
(5975, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/host.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/host.php'),
(5976, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/ud-logo.png', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/ud-logo.png'),
(5977, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/udlogo-rotating.gif', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/images/udlogo-rotating.gif'),
(5978, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/js/central.js', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/js/central.js'),
(5979, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/listener.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/listener.php'),
(5980, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/analytics.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/analytics.php'),
(5981, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/comments.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/comments.php'),
(5982, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/core.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/core.php'),
(5983, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/media.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/media.php'),
(5984, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/pages.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/pages.php'),
(5985, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/plugin.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/plugin.php'),
(5986, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/posts.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/posts.php'),
(5987, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/theme.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/theme.php'),
(5988, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/updates.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/updates.php'),
(5989, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/users.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/modules/users.php'),
(5990, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/translations-central.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/translations-central.php'),
(5991, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/updraftplus.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/updraftplus.php'),
(5992, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/wp-optimize.php', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/central/wp-optimize.php'),
(5993, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/composer.json', 'wp-content/plugins/wp-optimize/vendor/team-updraft/lib-central/composer.json'),
(5994, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/index.php', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/index.php'),
(5995, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/scripts.js', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/scripts.js'),
(5996, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/styles.css', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/styles.css'),
(5997, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/css/bootstrap.min.css', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/css/bootstrap.min.css'),
(5998, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/js/bootstrap.min.js', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/bootstrap/js/bootstrap.min.js'),
(5999, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/jquery-1.12.4.min.js', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/jquery-1.12.4.min.js'),
(6000, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/less-1.7.5.min.js', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/gui/third-party/less-1.7.5.min.js'),
(6001, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Colors.php', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Colors.php'),
(6002, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Command.php', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Command.php'),
(6003, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Minifier.php', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Minifier.php'),
(6004, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Utils.php', 'wp-content/plugins/wp-optimize/vendor/tubalmartin/cssmin/src/Utils.php'),
(6005, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp-images.php', 'wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp-images.php'),
(6006, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp.php', 'wp-content/plugins/wp-optimize/webp/class-wp-optimize-webp.php'),
(6007, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-htaccess-capabilities.php', 'wp-content/plugins/wp-optimize/webp/class-wpo-htaccess-capabilities.php'),
(6008, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-server-info.php', 'wp-content/plugins/wp-optimize/webp/class-wpo-server-info.php'),
(6009, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-alter-html.php', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-alter-html.php'),
(6010, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-convert.php', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-convert.php'),
(6011, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-self-test.php', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-self-test.php'),
(6012, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-test-run.php', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-test-run.php'),
(6013, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/webp/class-wpo-webp-utils.php', 'wp-content/plugins/wp-optimize/webp/class-wpo-webp-utils.php'),
(6014, '/home/binawebp/omsrislb.my/wp-content/plugins/wp-optimize/wp-optimize.php', 'wp-content/plugins/wp-optimize/wp-optimize.php'),
(6015, '/home/binawebp/omsrislb.my/wp-content/advanced-cache.php', 'wp-content/advanced-cache.php'),
(6016, '/home/binawebp/omsrislb.my/wp-content/ai1wm-backups/index.html', 'wp-content/ai1wm-backups/index.html'),
(6017, '/home/binawebp/omsrislb.my/wp-content/ai1wm-backups/index.php', 'wp-content/ai1wm-backups/index.php'),
(6018, '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/index.html', 'wp-content/backuply/backups-0uelYu/index.html'),
(6019, '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/index.php', 'wp-content/backuply/backups-0uelYu/index.php'),
(6020, '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/tmp/index.html', 'wp-content/backuply/backups-0uelYu/tmp/index.html'),
(6021, '/home/binawebp/omsrislb.my/wp-content/backuply/backups-0uelYu/tmp/index.php', 'wp-content/backuply/backups-0uelYu/tmp/index.php'),
(6022, '/home/binawebp/omsrislb.my/wp-content/backuply/backups_info-0uelYu/index.html', 'wp-content/backuply/backups_info-0uelYu/index.html'),
(6023, '/home/binawebp/omsrislb.my/wp-content/backuply/backups_info-0uelYu/index.php', 'wp-content/backuply/backups_info-0uelYu/index.php'),
(6024, '/home/binawebp/omsrislb.my/wp-content/backuply/index.html', 'wp-content/backuply/index.html'),
(6025, '/home/binawebp/omsrislb.my/wp-content/backuply/index.php', 'wp-content/backuply/index.php'),
(6026, '/home/binawebp/omsrislb.my/wp-content/backuply/status_key.php', 'wp-content/backuply/status_key.php'),
(6027, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/index.php', 'wp-content/cache/wpo-cache/index.php'),
(6028, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/about/index.html', 'wp-content/cache/wpo-cache/omsrislb.my/about/index.html'),
(6029, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/about/index.php', 'wp-content/cache/wpo-cache/omsrislb.my/about/index.php'),
(6030, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/about/mobile.index.html', 'wp-content/cache/wpo-cache/omsrislb.my/about/mobile.index.html'),
(6031, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.html', 'wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.html'),
(6032, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.php', 'wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/index.php'),
(6033, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/mobile.index.html', 'wp-content/cache/wpo-cache/omsrislb.my/category/uncategorized/mobile.index.html'),
(6034, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/contact/index.html', 'wp-content/cache/wpo-cache/omsrislb.my/contact/index.html'),
(6035, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/contact/index.php', 'wp-content/cache/wpo-cache/omsrislb.my/contact/index.php'),
(6036, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/contact/mobile.index.html', 'wp-content/cache/wpo-cache/omsrislb.my/contact/mobile.index.html'),
(6037, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/index.html', 'wp-content/cache/wpo-cache/omsrislb.my/index.html'),
(6038, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/index.php', 'wp-content/cache/wpo-cache/omsrislb.my/index.php'),
(6039, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/mobile.index.html', 'wp-content/cache/wpo-cache/omsrislb.my/mobile.index.html'),
(6040, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.html', 'wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.html'),
(6041, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.php', 'wp-content/cache/wpo-cache/omsrislb.my/sample-page/index.php'),
(6042, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/sample-page/mobile.index.html', 'wp-content/cache/wpo-cache/omsrislb.my/sample-page/mobile.index.html'),
(6043, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/services/index.html', 'wp-content/cache/wpo-cache/omsrislb.my/services/index.html'),
(6044, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/services/index.php', 'wp-content/cache/wpo-cache/omsrislb.my/services/index.php'),
(6045, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/services/mobile.index.html', 'wp-content/cache/wpo-cache/omsrislb.my/services/mobile.index.html'),
(6046, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.html', 'wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.html'),
(6047, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.php', 'wp-content/cache/wpo-cache/omsrislb.my/testimonials/index.php'),
(6048, '/home/binawebp/omsrislb.my/wp-content/cache/wpo-cache/omsrislb.my/testimonials/mobile.index.html', 'wp-content/cache/wpo-cache/omsrislb.my/testimonials/mobile.index.html'),
(6049, '/home/binawebp/omsrislb.my/wp-content/index.php', 'wp-content/index.php'),
(6050, '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/images/facebook.svg', 'wp-content/maintenance/assets/images/facebook.svg'),
(6051, '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/images/instagram.svg', 'wp-content/maintenance/assets/images/instagram.svg'),
(6052, '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/images/twitter.svg', 'wp-content/maintenance/assets/images/twitter.svg'),
(6053, '/home/binawebp/omsrislb.my/wp-content/maintenance/assets/timer.js', 'wp-content/maintenance/assets/timer.js'),
(6054, '/home/binawebp/omsrislb.my/wp-content/maintenance/template.phtml', 'wp-content/maintenance/template.phtml'),
(6055, '/home/binawebp/omsrislb.my/wp-content/maintenance.php', 'wp-content/maintenance.php'),
(6056, '/home/binawebp/omsrislb.my/wp-content/mu-plugins/sso.php', 'wp-content/mu-plugins/sso.php'),
(6057, '/home/binawebp/omsrislb.my/wp-content/themes/index.php', 'wp-content/themes/index.php'),
(6058, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold-Italic.woff2'),
(6059, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Bold.woff2'),
(6060, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular-Italic.woff2'),
(6061, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/DMSans-Regular.woff2'),
(6062, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/dm-sans/LICENSE.txt', 'wp-content/themes/twentytwentythree/assets/fonts/dm-sans/LICENSE.txt'),
(6063, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Bold.woff2'),
(6064, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Italic.woff2'),
(6065, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Light.woff2'),
(6066, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/IBMPlexMono-Regular.woff2'),
(6067, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/OFL.txt', 'wp-content/themes/twentytwentythree/assets/fonts/ibm-plex-mono/OFL.txt'),
(6068, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf', 'wp-content/themes/twentytwentythree/assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf'),
(6069, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/inter/LICENSE.txt', 'wp-content/themes/twentytwentythree/assets/fonts/inter/LICENSE.txt'),
(6070, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/LICENSE.md', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/LICENSE.md'),
(6071, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2'),
(6072, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2'),
(6073, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2'),
(6074, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2', 'wp-content/themes/twentytwentythree/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2'),
(6075, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/comments.html', 'wp-content/themes/twentytwentythree/parts/comments.html'),
(6076, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/footer.html', 'wp-content/themes/twentytwentythree/parts/footer.html'),
(6077, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/header.html', 'wp-content/themes/twentytwentythree/parts/header.html'),
(6078, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/parts/post-meta.html', 'wp-content/themes/twentytwentythree/parts/post-meta.html'),
(6079, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/call-to-action.php', 'wp-content/themes/twentytwentythree/patterns/call-to-action.php'),
(6080, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/footer-default.php', 'wp-content/themes/twentytwentythree/patterns/footer-default.php'),
(6081, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-404.php', 'wp-content/themes/twentytwentythree/patterns/hidden-404.php'),
(6082, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-comments.php', 'wp-content/themes/twentytwentythree/patterns/hidden-comments.php'),
(6083, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-heading.php', 'wp-content/themes/twentytwentythree/patterns/hidden-heading.php'),
(6084, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/hidden-no-results.php', 'wp-content/themes/twentytwentythree/patterns/hidden-no-results.php'),
(6085, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/patterns/post-meta.php', 'wp-content/themes/twentytwentythree/patterns/post-meta.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(6086, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/readme.txt', 'wp-content/themes/twentytwentythree/readme.txt'),
(6087, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/screenshot.png', 'wp-content/themes/twentytwentythree/screenshot.png'),
(6088, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/style.css', 'wp-content/themes/twentytwentythree/style.css'),
(6089, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/aubergine.json', 'wp-content/themes/twentytwentythree/styles/aubergine.json'),
(6090, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/block-out.json', 'wp-content/themes/twentytwentythree/styles/block-out.json'),
(6091, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/canary.json', 'wp-content/themes/twentytwentythree/styles/canary.json'),
(6092, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/electric.json', 'wp-content/themes/twentytwentythree/styles/electric.json'),
(6093, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/grapes.json', 'wp-content/themes/twentytwentythree/styles/grapes.json'),
(6094, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/marigold.json', 'wp-content/themes/twentytwentythree/styles/marigold.json'),
(6095, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/pilgrimage.json', 'wp-content/themes/twentytwentythree/styles/pilgrimage.json'),
(6096, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/pitch.json', 'wp-content/themes/twentytwentythree/styles/pitch.json'),
(6097, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/sherbet.json', 'wp-content/themes/twentytwentythree/styles/sherbet.json'),
(6098, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/styles/whisper.json', 'wp-content/themes/twentytwentythree/styles/whisper.json'),
(6099, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/404.html', 'wp-content/themes/twentytwentythree/templates/404.html'),
(6100, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/archive.html', 'wp-content/themes/twentytwentythree/templates/archive.html'),
(6101, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/blank.html', 'wp-content/themes/twentytwentythree/templates/blank.html'),
(6102, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/blog-alternative.html', 'wp-content/themes/twentytwentythree/templates/blog-alternative.html'),
(6103, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/home.html', 'wp-content/themes/twentytwentythree/templates/home.html'),
(6104, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/index.html', 'wp-content/themes/twentytwentythree/templates/index.html'),
(6105, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/page.html', 'wp-content/themes/twentytwentythree/templates/page.html'),
(6106, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/search.html', 'wp-content/themes/twentytwentythree/templates/search.html'),
(6107, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/templates/single.html', 'wp-content/themes/twentytwentythree/templates/single.html'),
(6108, '/home/binawebp/omsrislb.my/wp-content/themes/twentytwentythree/theme.json', 'wp-content/themes/twentytwentythree/theme.json'),
(6109, '/home/binawebp/omsrislb.my/wp-content/uploads/elementor/screenshots/index.html', 'wp-content/uploads/elementor/screenshots/index.html'),
(6110, '/home/binawebp/omsrislb.my/wp-content/uploads/wpforms/cache/index.html', 'wp-content/uploads/wpforms/cache/index.html'),
(6111, '/home/binawebp/omsrislb.my/wp-content/uploads/wpo/logs/index.php', 'wp-content/uploads/wpo/logs/index.php'),
(6112, '/home/binawebp/omsrislb.my/wp-content/wflogs/attack-data.php', 'wp-content/wflogs/attack-data.php'),
(6113, '/home/binawebp/omsrislb.my/wp-content/wflogs/config-livewaf.php', 'wp-content/wflogs/config-livewaf.php'),
(6114, '/home/binawebp/omsrislb.my/wp-content/wflogs/config-synced.php', 'wp-content/wflogs/config-synced.php'),
(6115, '/home/binawebp/omsrislb.my/wp-content/wflogs/config-transient.php', 'wp-content/wflogs/config-transient.php'),
(6116, '/home/binawebp/omsrislb.my/wp-content/wflogs/config.php', 'wp-content/wflogs/config.php'),
(6117, '/home/binawebp/omsrislb.my/wp-content/wflogs/ips.php', 'wp-content/wflogs/ips.php'),
(6118, '/home/binawebp/omsrislb.my/wp-content/wflogs/rules.php', 'wp-content/wflogs/rules.php'),
(6119, '/home/binawebp/omsrislb.my/wp-content/wflogs/template.php', 'wp-content/wflogs/template.php'),
(6120, '/home/binawebp/omsrislb.my/wp-content/wpo-cache/config/config-omsrislb.my.php', 'wp-content/wpo-cache/config/config-omsrislb.my.php'),
(6121, '/home/binawebp/omsrislb.my/index.php', 'index.php'),
(6122, '/home/binawebp/omsrislb.my/license.txt', 'license.txt'),
(6123, '/home/binawebp/omsrislb.my/readme.html', 'readme.html'),
(6124, '/home/binawebp/omsrislb.my/wp-activate.php', 'wp-activate.php'),
(6125, '/home/binawebp/omsrislb.my/wp-admin/about.php', 'wp-admin/about.php'),
(6126, '/home/binawebp/omsrislb.my/wp-admin/admin-ajax.php', 'wp-admin/admin-ajax.php'),
(6127, '/home/binawebp/omsrislb.my/wp-admin/admin-footer.php', 'wp-admin/admin-footer.php'),
(6128, '/home/binawebp/omsrislb.my/wp-admin/admin-functions.php', 'wp-admin/admin-functions.php'),
(6129, '/home/binawebp/omsrislb.my/wp-admin/admin-header.php', 'wp-admin/admin-header.php'),
(6130, '/home/binawebp/omsrislb.my/wp-admin/admin-post.php', 'wp-admin/admin-post.php'),
(6131, '/home/binawebp/omsrislb.my/wp-admin/admin.php', 'wp-admin/admin.php'),
(6132, '/home/binawebp/omsrislb.my/wp-admin/async-upload.php', 'wp-admin/async-upload.php'),
(6133, '/home/binawebp/omsrislb.my/wp-admin/authorize-application.php', 'wp-admin/authorize-application.php'),
(6134, '/home/binawebp/omsrislb.my/wp-admin/comment.php', 'wp-admin/comment.php'),
(6135, '/home/binawebp/omsrislb.my/wp-admin/contribute.php', 'wp-admin/contribute.php'),
(6136, '/home/binawebp/omsrislb.my/wp-admin/credits.php', 'wp-admin/credits.php'),
(6137, '/home/binawebp/omsrislb.my/wp-admin/css/about-rtl.css', 'wp-admin/css/about-rtl.css'),
(6138, '/home/binawebp/omsrislb.my/wp-admin/css/about-rtl.min.css', 'wp-admin/css/about-rtl.min.css'),
(6139, '/home/binawebp/omsrislb.my/wp-admin/css/about.css', 'wp-admin/css/about.css'),
(6140, '/home/binawebp/omsrislb.my/wp-admin/css/about.min.css', 'wp-admin/css/about.min.css'),
(6141, '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu-rtl.css', 'wp-admin/css/admin-menu-rtl.css'),
(6142, '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu-rtl.min.css', 'wp-admin/css/admin-menu-rtl.min.css'),
(6143, '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu.css', 'wp-admin/css/admin-menu.css'),
(6144, '/home/binawebp/omsrislb.my/wp-admin/css/admin-menu.min.css', 'wp-admin/css/admin-menu.min.css'),
(6145, '/home/binawebp/omsrislb.my/wp-admin/css/code-editor-rtl.css', 'wp-admin/css/code-editor-rtl.css'),
(6146, '/home/binawebp/omsrislb.my/wp-admin/css/code-editor-rtl.min.css', 'wp-admin/css/code-editor-rtl.min.css'),
(6147, '/home/binawebp/omsrislb.my/wp-admin/css/code-editor.css', 'wp-admin/css/code-editor.css'),
(6148, '/home/binawebp/omsrislb.my/wp-admin/css/code-editor.min.css', 'wp-admin/css/code-editor.min.css'),
(6149, '/home/binawebp/omsrislb.my/wp-admin/css/color-picker-rtl.css', 'wp-admin/css/color-picker-rtl.css'),
(6150, '/home/binawebp/omsrislb.my/wp-admin/css/color-picker-rtl.min.css', 'wp-admin/css/color-picker-rtl.min.css'),
(6151, '/home/binawebp/omsrislb.my/wp-admin/css/color-picker.css', 'wp-admin/css/color-picker.css'),
(6152, '/home/binawebp/omsrislb.my/wp-admin/css/color-picker.min.css', 'wp-admin/css/color-picker.min.css'),
(6153, '/home/binawebp/omsrislb.my/wp-admin/css/colors/_admin.scss', 'wp-admin/css/colors/_admin.scss'),
(6154, '/home/binawebp/omsrislb.my/wp-admin/css/colors/_mixins.scss', 'wp-admin/css/colors/_mixins.scss'),
(6155, '/home/binawebp/omsrislb.my/wp-admin/css/colors/_variables.scss', 'wp-admin/css/colors/_variables.scss'),
(6156, '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors-rtl.css', 'wp-admin/css/colors/blue/colors-rtl.css'),
(6157, '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors-rtl.min.css', 'wp-admin/css/colors/blue/colors-rtl.min.css'),
(6158, '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors.css', 'wp-admin/css/colors/blue/colors.css'),
(6159, '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors.min.css', 'wp-admin/css/colors/blue/colors.min.css'),
(6160, '/home/binawebp/omsrislb.my/wp-admin/css/colors/blue/colors.scss', 'wp-admin/css/colors/blue/colors.scss'),
(6161, '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors-rtl.css', 'wp-admin/css/colors/coffee/colors-rtl.css'),
(6162, '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors-rtl.min.css', 'wp-admin/css/colors/coffee/colors-rtl.min.css'),
(6163, '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors.css', 'wp-admin/css/colors/coffee/colors.css'),
(6164, '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors.min.css', 'wp-admin/css/colors/coffee/colors.min.css'),
(6165, '/home/binawebp/omsrislb.my/wp-admin/css/colors/coffee/colors.scss', 'wp-admin/css/colors/coffee/colors.scss'),
(6166, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors-rtl.css', 'wp-admin/css/colors/ectoplasm/colors-rtl.css'),
(6167, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors-rtl.min.css', 'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),
(6168, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors.css', 'wp-admin/css/colors/ectoplasm/colors.css'),
(6169, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors.min.css', 'wp-admin/css/colors/ectoplasm/colors.min.css'),
(6170, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ectoplasm/colors.scss', 'wp-admin/css/colors/ectoplasm/colors.scss'),
(6171, '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors-rtl.css', 'wp-admin/css/colors/light/colors-rtl.css'),
(6172, '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors-rtl.min.css', 'wp-admin/css/colors/light/colors-rtl.min.css'),
(6173, '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors.css', 'wp-admin/css/colors/light/colors.css'),
(6174, '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors.min.css', 'wp-admin/css/colors/light/colors.min.css'),
(6175, '/home/binawebp/omsrislb.my/wp-admin/css/colors/light/colors.scss', 'wp-admin/css/colors/light/colors.scss'),
(6176, '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors-rtl.css', 'wp-admin/css/colors/midnight/colors-rtl.css'),
(6177, '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors-rtl.min.css', 'wp-admin/css/colors/midnight/colors-rtl.min.css'),
(6178, '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors.css', 'wp-admin/css/colors/midnight/colors.css'),
(6179, '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors.min.css', 'wp-admin/css/colors/midnight/colors.min.css'),
(6180, '/home/binawebp/omsrislb.my/wp-admin/css/colors/midnight/colors.scss', 'wp-admin/css/colors/midnight/colors.scss'),
(6181, '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors-rtl.css', 'wp-admin/css/colors/modern/colors-rtl.css'),
(6182, '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors-rtl.min.css', 'wp-admin/css/colors/modern/colors-rtl.min.css'),
(6183, '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors.css', 'wp-admin/css/colors/modern/colors.css'),
(6184, '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors.min.css', 'wp-admin/css/colors/modern/colors.min.css'),
(6185, '/home/binawebp/omsrislb.my/wp-admin/css/colors/modern/colors.scss', 'wp-admin/css/colors/modern/colors.scss'),
(6186, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors-rtl.css', 'wp-admin/css/colors/ocean/colors-rtl.css'),
(6187, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors-rtl.min.css', 'wp-admin/css/colors/ocean/colors-rtl.min.css'),
(6188, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors.css', 'wp-admin/css/colors/ocean/colors.css'),
(6189, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors.min.css', 'wp-admin/css/colors/ocean/colors.min.css'),
(6190, '/home/binawebp/omsrislb.my/wp-admin/css/colors/ocean/colors.scss', 'wp-admin/css/colors/ocean/colors.scss'),
(6191, '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors-rtl.css', 'wp-admin/css/colors/sunrise/colors-rtl.css'),
(6192, '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors-rtl.min.css', 'wp-admin/css/colors/sunrise/colors-rtl.min.css'),
(6193, '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors.css', 'wp-admin/css/colors/sunrise/colors.css'),
(6194, '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors.min.css', 'wp-admin/css/colors/sunrise/colors.min.css'),
(6195, '/home/binawebp/omsrislb.my/wp-admin/css/colors/sunrise/colors.scss', 'wp-admin/css/colors/sunrise/colors.scss'),
(6196, '/home/binawebp/omsrislb.my/wp-admin/css/common-rtl.css', 'wp-admin/css/common-rtl.css'),
(6197, '/home/binawebp/omsrislb.my/wp-admin/css/common-rtl.min.css', 'wp-admin/css/common-rtl.min.css'),
(6198, '/home/binawebp/omsrislb.my/wp-admin/css/common.css', 'wp-admin/css/common.css'),
(6199, '/home/binawebp/omsrislb.my/wp-admin/css/common.min.css', 'wp-admin/css/common.min.css'),
(6200, '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls-rtl.css', 'wp-admin/css/customize-controls-rtl.css'),
(6201, '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls-rtl.min.css', 'wp-admin/css/customize-controls-rtl.min.css'),
(6202, '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls.css', 'wp-admin/css/customize-controls.css'),
(6203, '/home/binawebp/omsrislb.my/wp-admin/css/customize-controls.min.css', 'wp-admin/css/customize-controls.min.css'),
(6204, '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus-rtl.css', 'wp-admin/css/customize-nav-menus-rtl.css'),
(6205, '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus-rtl.min.css', 'wp-admin/css/customize-nav-menus-rtl.min.css'),
(6206, '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus.css', 'wp-admin/css/customize-nav-menus.css'),
(6207, '/home/binawebp/omsrislb.my/wp-admin/css/customize-nav-menus.min.css', 'wp-admin/css/customize-nav-menus.min.css'),
(6208, '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets-rtl.css', 'wp-admin/css/customize-widgets-rtl.css'),
(6209, '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets-rtl.min.css', 'wp-admin/css/customize-widgets-rtl.min.css'),
(6210, '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets.css', 'wp-admin/css/customize-widgets.css'),
(6211, '/home/binawebp/omsrislb.my/wp-admin/css/customize-widgets.min.css', 'wp-admin/css/customize-widgets.min.css'),
(6212, '/home/binawebp/omsrislb.my/wp-admin/css/dashboard-rtl.css', 'wp-admin/css/dashboard-rtl.css'),
(6213, '/home/binawebp/omsrislb.my/wp-admin/css/dashboard-rtl.min.css', 'wp-admin/css/dashboard-rtl.min.css'),
(6214, '/home/binawebp/omsrislb.my/wp-admin/css/dashboard.css', 'wp-admin/css/dashboard.css'),
(6215, '/home/binawebp/omsrislb.my/wp-admin/css/dashboard.min.css', 'wp-admin/css/dashboard.min.css'),
(6216, '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media-rtl.css', 'wp-admin/css/deprecated-media-rtl.css'),
(6217, '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media-rtl.min.css', 'wp-admin/css/deprecated-media-rtl.min.css'),
(6218, '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media.css', 'wp-admin/css/deprecated-media.css'),
(6219, '/home/binawebp/omsrislb.my/wp-admin/css/deprecated-media.min.css', 'wp-admin/css/deprecated-media.min.css'),
(6220, '/home/binawebp/omsrislb.my/wp-admin/css/edit-rtl.css', 'wp-admin/css/edit-rtl.css'),
(6221, '/home/binawebp/omsrislb.my/wp-admin/css/edit-rtl.min.css', 'wp-admin/css/edit-rtl.min.css'),
(6222, '/home/binawebp/omsrislb.my/wp-admin/css/edit.css', 'wp-admin/css/edit.css'),
(6223, '/home/binawebp/omsrislb.my/wp-admin/css/edit.min.css', 'wp-admin/css/edit.min.css'),
(6224, '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic-rtl.css', 'wp-admin/css/farbtastic-rtl.css'),
(6225, '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic-rtl.min.css', 'wp-admin/css/farbtastic-rtl.min.css'),
(6226, '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic.css', 'wp-admin/css/farbtastic.css'),
(6227, '/home/binawebp/omsrislb.my/wp-admin/css/farbtastic.min.css', 'wp-admin/css/farbtastic.min.css'),
(6228, '/home/binawebp/omsrislb.my/wp-admin/css/forms-rtl.css', 'wp-admin/css/forms-rtl.css'),
(6229, '/home/binawebp/omsrislb.my/wp-admin/css/forms-rtl.min.css', 'wp-admin/css/forms-rtl.min.css'),
(6230, '/home/binawebp/omsrislb.my/wp-admin/css/forms.css', 'wp-admin/css/forms.css'),
(6231, '/home/binawebp/omsrislb.my/wp-admin/css/forms.min.css', 'wp-admin/css/forms.min.css'),
(6232, '/home/binawebp/omsrislb.my/wp-admin/css/install-rtl.css', 'wp-admin/css/install-rtl.css'),
(6233, '/home/binawebp/omsrislb.my/wp-admin/css/install-rtl.min.css', 'wp-admin/css/install-rtl.min.css'),
(6234, '/home/binawebp/omsrislb.my/wp-admin/css/install.css', 'wp-admin/css/install.css'),
(6235, '/home/binawebp/omsrislb.my/wp-admin/css/install.min.css', 'wp-admin/css/install.min.css'),
(6236, '/home/binawebp/omsrislb.my/wp-admin/css/l10n-rtl.css', 'wp-admin/css/l10n-rtl.css'),
(6237, '/home/binawebp/omsrislb.my/wp-admin/css/l10n-rtl.min.css', 'wp-admin/css/l10n-rtl.min.css'),
(6238, '/home/binawebp/omsrislb.my/wp-admin/css/l10n.css', 'wp-admin/css/l10n.css'),
(6239, '/home/binawebp/omsrislb.my/wp-admin/css/l10n.min.css', 'wp-admin/css/l10n.min.css'),
(6240, '/home/binawebp/omsrislb.my/wp-admin/css/list-tables-rtl.css', 'wp-admin/css/list-tables-rtl.css'),
(6241, '/home/binawebp/omsrislb.my/wp-admin/css/list-tables-rtl.min.css', 'wp-admin/css/list-tables-rtl.min.css'),
(6242, '/home/binawebp/omsrislb.my/wp-admin/css/list-tables.css', 'wp-admin/css/list-tables.css'),
(6243, '/home/binawebp/omsrislb.my/wp-admin/css/list-tables.min.css', 'wp-admin/css/list-tables.min.css'),
(6244, '/home/binawebp/omsrislb.my/wp-admin/css/login-rtl.css', 'wp-admin/css/login-rtl.css'),
(6245, '/home/binawebp/omsrislb.my/wp-admin/css/login-rtl.min.css', 'wp-admin/css/login-rtl.min.css'),
(6246, '/home/binawebp/omsrislb.my/wp-admin/css/login.css', 'wp-admin/css/login.css'),
(6247, '/home/binawebp/omsrislb.my/wp-admin/css/login.min.css', 'wp-admin/css/login.min.css'),
(6248, '/home/binawebp/omsrislb.my/wp-admin/css/media-rtl.css', 'wp-admin/css/media-rtl.css'),
(6249, '/home/binawebp/omsrislb.my/wp-admin/css/media-rtl.min.css', 'wp-admin/css/media-rtl.min.css'),
(6250, '/home/binawebp/omsrislb.my/wp-admin/css/media.css', 'wp-admin/css/media.css'),
(6251, '/home/binawebp/omsrislb.my/wp-admin/css/media.min.css', 'wp-admin/css/media.min.css'),
(6252, '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus-rtl.css', 'wp-admin/css/nav-menus-rtl.css'),
(6253, '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus-rtl.min.css', 'wp-admin/css/nav-menus-rtl.min.css'),
(6254, '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus.css', 'wp-admin/css/nav-menus.css'),
(6255, '/home/binawebp/omsrislb.my/wp-admin/css/nav-menus.min.css', 'wp-admin/css/nav-menus.min.css'),
(6256, '/home/binawebp/omsrislb.my/wp-admin/css/revisions-rtl.css', 'wp-admin/css/revisions-rtl.css'),
(6257, '/home/binawebp/omsrislb.my/wp-admin/css/revisions-rtl.min.css', 'wp-admin/css/revisions-rtl.min.css'),
(6258, '/home/binawebp/omsrislb.my/wp-admin/css/revisions.css', 'wp-admin/css/revisions.css'),
(6259, '/home/binawebp/omsrislb.my/wp-admin/css/revisions.min.css', 'wp-admin/css/revisions.min.css'),
(6260, '/home/binawebp/omsrislb.my/wp-admin/css/site-health-rtl.css', 'wp-admin/css/site-health-rtl.css'),
(6261, '/home/binawebp/omsrislb.my/wp-admin/css/site-health-rtl.min.css', 'wp-admin/css/site-health-rtl.min.css'),
(6262, '/home/binawebp/omsrislb.my/wp-admin/css/site-health.css', 'wp-admin/css/site-health.css'),
(6263, '/home/binawebp/omsrislb.my/wp-admin/css/site-health.min.css', 'wp-admin/css/site-health.min.css'),
(6264, '/home/binawebp/omsrislb.my/wp-admin/css/site-icon-rtl.css', 'wp-admin/css/site-icon-rtl.css'),
(6265, '/home/binawebp/omsrislb.my/wp-admin/css/site-icon-rtl.min.css', 'wp-admin/css/site-icon-rtl.min.css'),
(6266, '/home/binawebp/omsrislb.my/wp-admin/css/site-icon.css', 'wp-admin/css/site-icon.css'),
(6267, '/home/binawebp/omsrislb.my/wp-admin/css/site-icon.min.css', 'wp-admin/css/site-icon.min.css'),
(6268, '/home/binawebp/omsrislb.my/wp-admin/css/themes-rtl.css', 'wp-admin/css/themes-rtl.css'),
(6269, '/home/binawebp/omsrislb.my/wp-admin/css/themes-rtl.min.css', 'wp-admin/css/themes-rtl.min.css'),
(6270, '/home/binawebp/omsrislb.my/wp-admin/css/themes.css', 'wp-admin/css/themes.css'),
(6271, '/home/binawebp/omsrislb.my/wp-admin/css/themes.min.css', 'wp-admin/css/themes.min.css'),
(6272, '/home/binawebp/omsrislb.my/wp-admin/css/widgets-rtl.css', 'wp-admin/css/widgets-rtl.css'),
(6273, '/home/binawebp/omsrislb.my/wp-admin/css/widgets-rtl.min.css', 'wp-admin/css/widgets-rtl.min.css'),
(6274, '/home/binawebp/omsrislb.my/wp-admin/css/widgets.css', 'wp-admin/css/widgets.css'),
(6275, '/home/binawebp/omsrislb.my/wp-admin/css/widgets.min.css', 'wp-admin/css/widgets.min.css'),
(6276, '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin-rtl.css', 'wp-admin/css/wp-admin-rtl.css'),
(6277, '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin-rtl.min.css', 'wp-admin/css/wp-admin-rtl.min.css'),
(6278, '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin.css', 'wp-admin/css/wp-admin.css'),
(6279, '/home/binawebp/omsrislb.my/wp-admin/css/wp-admin.min.css', 'wp-admin/css/wp-admin.min.css'),
(6280, '/home/binawebp/omsrislb.my/wp-admin/custom-background.php', 'wp-admin/custom-background.php'),
(6281, '/home/binawebp/omsrislb.my/wp-admin/custom-header.php', 'wp-admin/custom-header.php'),
(6282, '/home/binawebp/omsrislb.my/wp-admin/customize.php', 'wp-admin/customize.php'),
(6283, '/home/binawebp/omsrislb.my/wp-admin/edit-comments.php', 'wp-admin/edit-comments.php'),
(6284, '/home/binawebp/omsrislb.my/wp-admin/edit-form-advanced.php', 'wp-admin/edit-form-advanced.php'),
(6285, '/home/binawebp/omsrislb.my/wp-admin/edit-form-blocks.php', 'wp-admin/edit-form-blocks.php'),
(6286, '/home/binawebp/omsrislb.my/wp-admin/edit-form-comment.php', 'wp-admin/edit-form-comment.php'),
(6287, '/home/binawebp/omsrislb.my/wp-admin/edit-link-form.php', 'wp-admin/edit-link-form.php'),
(6288, '/home/binawebp/omsrislb.my/wp-admin/edit-tag-form.php', 'wp-admin/edit-tag-form.php'),
(6289, '/home/binawebp/omsrislb.my/wp-admin/edit-tags.php', 'wp-admin/edit-tags.php'),
(6290, '/home/binawebp/omsrislb.my/wp-admin/edit.php', 'wp-admin/edit.php'),
(6291, '/home/binawebp/omsrislb.my/wp-admin/erase-personal-data.php', 'wp-admin/erase-personal-data.php'),
(6292, '/home/binawebp/omsrislb.my/wp-admin/export-personal-data.php', 'wp-admin/export-personal-data.php'),
(6293, '/home/binawebp/omsrislb.my/wp-admin/export.php', 'wp-admin/export.php'),
(6294, '/home/binawebp/omsrislb.my/wp-admin/freedoms.php', 'wp-admin/freedoms.php'),
(6295, '/home/binawebp/omsrislb.my/wp-admin/images/about-release-badge.svg', 'wp-admin/images/about-release-badge.svg'),
(6296, '/home/binawebp/omsrislb.my/wp-admin/images/about-release-logo.svg', 'wp-admin/images/about-release-logo.svg'),
(6297, '/home/binawebp/omsrislb.my/wp-admin/images/about-texture.png', 'wp-admin/images/about-texture.png'),
(6298, '/home/binawebp/omsrislb.my/wp-admin/images/align-center-2x.png', 'wp-admin/images/align-center-2x.png'),
(6299, '/home/binawebp/omsrislb.my/wp-admin/images/align-center.png', 'wp-admin/images/align-center.png'),
(6300, '/home/binawebp/omsrislb.my/wp-admin/images/align-left-2x.png', 'wp-admin/images/align-left-2x.png'),
(6301, '/home/binawebp/omsrislb.my/wp-admin/images/align-left.png', 'wp-admin/images/align-left.png'),
(6302, '/home/binawebp/omsrislb.my/wp-admin/images/align-none-2x.png', 'wp-admin/images/align-none-2x.png'),
(6303, '/home/binawebp/omsrislb.my/wp-admin/images/align-none.png', 'wp-admin/images/align-none.png'),
(6304, '/home/binawebp/omsrislb.my/wp-admin/images/align-right-2x.png', 'wp-admin/images/align-right-2x.png'),
(6305, '/home/binawebp/omsrislb.my/wp-admin/images/align-right.png', 'wp-admin/images/align-right.png'),
(6306, '/home/binawebp/omsrislb.my/wp-admin/images/arrows-2x.png', 'wp-admin/images/arrows-2x.png'),
(6307, '/home/binawebp/omsrislb.my/wp-admin/images/arrows.png', 'wp-admin/images/arrows.png'),
(6308, '/home/binawebp/omsrislb.my/wp-admin/images/browser-rtl.png', 'wp-admin/images/browser-rtl.png'),
(6309, '/home/binawebp/omsrislb.my/wp-admin/images/browser.png', 'wp-admin/images/browser.png'),
(6310, '/home/binawebp/omsrislb.my/wp-admin/images/bubble_bg-2x.gif', 'wp-admin/images/bubble_bg-2x.gif'),
(6311, '/home/binawebp/omsrislb.my/wp-admin/images/bubble_bg.gif', 'wp-admin/images/bubble_bg.gif'),
(6312, '/home/binawebp/omsrislb.my/wp-admin/images/comment-grey-bubble-2x.png', 'wp-admin/images/comment-grey-bubble-2x.png'),
(6313, '/home/binawebp/omsrislb.my/wp-admin/images/comment-grey-bubble.png', 'wp-admin/images/comment-grey-bubble.png'),
(6314, '/home/binawebp/omsrislb.my/wp-admin/images/contribute-code.svg', 'wp-admin/images/contribute-code.svg'),
(6315, '/home/binawebp/omsrislb.my/wp-admin/images/contribute-main.svg', 'wp-admin/images/contribute-main.svg'),
(6316, '/home/binawebp/omsrislb.my/wp-admin/images/contribute-no-code.svg', 'wp-admin/images/contribute-no-code.svg'),
(6317, '/home/binawebp/omsrislb.my/wp-admin/images/dashboard-background.svg', 'wp-admin/images/dashboard-background.svg'),
(6318, '/home/binawebp/omsrislb.my/wp-admin/images/date-button-2x.gif', 'wp-admin/images/date-button-2x.gif'),
(6319, '/home/binawebp/omsrislb.my/wp-admin/images/date-button.gif', 'wp-admin/images/date-button.gif'),
(6320, '/home/binawebp/omsrislb.my/wp-admin/images/freedom-1.svg', 'wp-admin/images/freedom-1.svg'),
(6321, '/home/binawebp/omsrislb.my/wp-admin/images/freedom-2.svg', 'wp-admin/images/freedom-2.svg'),
(6322, '/home/binawebp/omsrislb.my/wp-admin/images/freedom-3.svg', 'wp-admin/images/freedom-3.svg'),
(6323, '/home/binawebp/omsrislb.my/wp-admin/images/freedom-4.svg', 'wp-admin/images/freedom-4.svg'),
(6324, '/home/binawebp/omsrislb.my/wp-admin/images/generic.png', 'wp-admin/images/generic.png'),
(6325, '/home/binawebp/omsrislb.my/wp-admin/images/icons32-2x.png', 'wp-admin/images/icons32-2x.png'),
(6326, '/home/binawebp/omsrislb.my/wp-admin/images/icons32-vs-2x.png', 'wp-admin/images/icons32-vs-2x.png'),
(6327, '/home/binawebp/omsrislb.my/wp-admin/images/icons32-vs.png', 'wp-admin/images/icons32-vs.png'),
(6328, '/home/binawebp/omsrislb.my/wp-admin/images/icons32.png', 'wp-admin/images/icons32.png'),
(6329, '/home/binawebp/omsrislb.my/wp-admin/images/imgedit-icons-2x.png', 'wp-admin/images/imgedit-icons-2x.png'),
(6330, '/home/binawebp/omsrislb.my/wp-admin/images/imgedit-icons.png', 'wp-admin/images/imgedit-icons.png'),
(6331, '/home/binawebp/omsrislb.my/wp-admin/images/list-2x.png', 'wp-admin/images/list-2x.png'),
(6332, '/home/binawebp/omsrislb.my/wp-admin/images/list.png', 'wp-admin/images/list.png'),
(6333, '/home/binawebp/omsrislb.my/wp-admin/images/loading.gif', 'wp-admin/images/loading.gif'),
(6334, '/home/binawebp/omsrislb.my/wp-admin/images/marker.png', 'wp-admin/images/marker.png'),
(6335, '/home/binawebp/omsrislb.my/wp-admin/images/mask.png', 'wp-admin/images/mask.png'),
(6336, '/home/binawebp/omsrislb.my/wp-admin/images/media-button-2x.png', 'wp-admin/images/media-button-2x.png'),
(6337, '/home/binawebp/omsrislb.my/wp-admin/images/media-button-image.gif', 'wp-admin/images/media-button-image.gif'),
(6338, '/home/binawebp/omsrislb.my/wp-admin/images/media-button-music.gif', 'wp-admin/images/media-button-music.gif'),
(6339, '/home/binawebp/omsrislb.my/wp-admin/images/media-button-other.gif', 'wp-admin/images/media-button-other.gif'),
(6340, '/home/binawebp/omsrislb.my/wp-admin/images/media-button-video.gif', 'wp-admin/images/media-button-video.gif'),
(6341, '/home/binawebp/omsrislb.my/wp-admin/images/media-button.png', 'wp-admin/images/media-button.png'),
(6342, '/home/binawebp/omsrislb.my/wp-admin/images/menu-2x.png', 'wp-admin/images/menu-2x.png'),
(6343, '/home/binawebp/omsrislb.my/wp-admin/images/menu-vs-2x.png', 'wp-admin/images/menu-vs-2x.png'),
(6344, '/home/binawebp/omsrislb.my/wp-admin/images/menu-vs.png', 'wp-admin/images/menu-vs.png'),
(6345, '/home/binawebp/omsrislb.my/wp-admin/images/menu.png', 'wp-admin/images/menu.png'),
(6346, '/home/binawebp/omsrislb.my/wp-admin/images/no.png', 'wp-admin/images/no.png'),
(6347, '/home/binawebp/omsrislb.my/wp-admin/images/post-formats-vs.png', 'wp-admin/images/post-formats-vs.png'),
(6348, '/home/binawebp/omsrislb.my/wp-admin/images/post-formats.png', 'wp-admin/images/post-formats.png'),
(6349, '/home/binawebp/omsrislb.my/wp-admin/images/post-formats32-vs.png', 'wp-admin/images/post-formats32-vs.png'),
(6350, '/home/binawebp/omsrislb.my/wp-admin/images/post-formats32.png', 'wp-admin/images/post-formats32.png'),
(6351, '/home/binawebp/omsrislb.my/wp-admin/images/privacy.svg', 'wp-admin/images/privacy.svg'),
(6352, '/home/binawebp/omsrislb.my/wp-admin/images/resize-2x.gif', 'wp-admin/images/resize-2x.gif'),
(6353, '/home/binawebp/omsrislb.my/wp-admin/images/resize-rtl-2x.gif', 'wp-admin/images/resize-rtl-2x.gif'),
(6354, '/home/binawebp/omsrislb.my/wp-admin/images/resize-rtl.gif', 'wp-admin/images/resize-rtl.gif'),
(6355, '/home/binawebp/omsrislb.my/wp-admin/images/resize.gif', 'wp-admin/images/resize.gif'),
(6356, '/home/binawebp/omsrislb.my/wp-admin/images/se.png', 'wp-admin/images/se.png'),
(6357, '/home/binawebp/omsrislb.my/wp-admin/images/sort-2x.gif', 'wp-admin/images/sort-2x.gif'),
(6358, '/home/binawebp/omsrislb.my/wp-admin/images/sort.gif', 'wp-admin/images/sort.gif'),
(6359, '/home/binawebp/omsrislb.my/wp-admin/images/spinner-2x.gif', 'wp-admin/images/spinner-2x.gif'),
(6360, '/home/binawebp/omsrislb.my/wp-admin/images/spinner.gif', 'wp-admin/images/spinner.gif'),
(6361, '/home/binawebp/omsrislb.my/wp-admin/images/stars-2x.png', 'wp-admin/images/stars-2x.png'),
(6362, '/home/binawebp/omsrislb.my/wp-admin/images/stars.png', 'wp-admin/images/stars.png'),
(6363, '/home/binawebp/omsrislb.my/wp-admin/images/w-logo-blue.png', 'wp-admin/images/w-logo-blue.png'),
(6364, '/home/binawebp/omsrislb.my/wp-admin/images/w-logo-white.png', 'wp-admin/images/w-logo-white.png'),
(6365, '/home/binawebp/omsrislb.my/wp-admin/images/wheel.png', 'wp-admin/images/wheel.png'),
(6366, '/home/binawebp/omsrislb.my/wp-admin/images/wordpress-logo-white.svg', 'wp-admin/images/wordpress-logo-white.svg'),
(6367, '/home/binawebp/omsrislb.my/wp-admin/images/wordpress-logo.png', 'wp-admin/images/wordpress-logo.png'),
(6368, '/home/binawebp/omsrislb.my/wp-admin/images/wordpress-logo.svg', 'wp-admin/images/wordpress-logo.svg'),
(6369, '/home/binawebp/omsrislb.my/wp-admin/images/wpspin_light-2x.gif', 'wp-admin/images/wpspin_light-2x.gif'),
(6370, '/home/binawebp/omsrislb.my/wp-admin/images/wpspin_light.gif', 'wp-admin/images/wpspin_light.gif'),
(6371, '/home/binawebp/omsrislb.my/wp-admin/images/xit-2x.gif', 'wp-admin/images/xit-2x.gif'),
(6372, '/home/binawebp/omsrislb.my/wp-admin/images/xit.gif', 'wp-admin/images/xit.gif'),
(6373, '/home/binawebp/omsrislb.my/wp-admin/images/yes.png', 'wp-admin/images/yes.png'),
(6374, '/home/binawebp/omsrislb.my/wp-admin/import.php', 'wp-admin/import.php'),
(6375, '/home/binawebp/omsrislb.my/wp-admin/includes/admin-filters.php', 'wp-admin/includes/admin-filters.php'),
(6376, '/home/binawebp/omsrislb.my/wp-admin/includes/admin.php', 'wp-admin/includes/admin.php'),
(6377, '/home/binawebp/omsrislb.my/wp-admin/includes/ajax-actions.php', 'wp-admin/includes/ajax-actions.php'),
(6378, '/home/binawebp/omsrislb.my/wp-admin/includes/bookmark.php', 'wp-admin/includes/bookmark.php'),
(6379, '/home/binawebp/omsrislb.my/wp-admin/includes/class-automatic-upgrader-skin.php', 'wp-admin/includes/class-automatic-upgrader-skin.php'),
(6380, '/home/binawebp/omsrislb.my/wp-admin/includes/class-bulk-plugin-upgrader-skin.php', 'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),
(6381, '/home/binawebp/omsrislb.my/wp-admin/includes/class-bulk-theme-upgrader-skin.php', 'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),
(6382, '/home/binawebp/omsrislb.my/wp-admin/includes/class-bulk-upgrader-skin.php', 'wp-admin/includes/class-bulk-upgrader-skin.php'),
(6383, '/home/binawebp/omsrislb.my/wp-admin/includes/class-core-upgrader.php', 'wp-admin/includes/class-core-upgrader.php'),
(6384, '/home/binawebp/omsrislb.my/wp-admin/includes/class-custom-background.php', 'wp-admin/includes/class-custom-background.php'),
(6385, '/home/binawebp/omsrislb.my/wp-admin/includes/class-custom-image-header.php', 'wp-admin/includes/class-custom-image-header.php'),
(6386, '/home/binawebp/omsrislb.my/wp-admin/includes/class-file-upload-upgrader.php', 'wp-admin/includes/class-file-upload-upgrader.php'),
(6387, '/home/binawebp/omsrislb.my/wp-admin/includes/class-ftp-pure.php', 'wp-admin/includes/class-ftp-pure.php'),
(6388, '/home/binawebp/omsrislb.my/wp-admin/includes/class-ftp-sockets.php', 'wp-admin/includes/class-ftp-sockets.php'),
(6389, '/home/binawebp/omsrislb.my/wp-admin/includes/class-ftp.php', 'wp-admin/includes/class-ftp.php'),
(6390, '/home/binawebp/omsrislb.my/wp-admin/includes/class-language-pack-upgrader-skin.php', 'wp-admin/includes/class-language-pack-upgrader-skin.php'),
(6391, '/home/binawebp/omsrislb.my/wp-admin/includes/class-language-pack-upgrader.php', 'wp-admin/includes/class-language-pack-upgrader.php'),
(6392, '/home/binawebp/omsrislb.my/wp-admin/includes/class-pclzip.php', 'wp-admin/includes/class-pclzip.php'),
(6393, '/home/binawebp/omsrislb.my/wp-admin/includes/class-plugin-installer-skin.php', 'wp-admin/includes/class-plugin-installer-skin.php'),
(6394, '/home/binawebp/omsrislb.my/wp-admin/includes/class-plugin-upgrader-skin.php', 'wp-admin/includes/class-plugin-upgrader-skin.php'),
(6395, '/home/binawebp/omsrislb.my/wp-admin/includes/class-plugin-upgrader.php', 'wp-admin/includes/class-plugin-upgrader.php'),
(6396, '/home/binawebp/omsrislb.my/wp-admin/includes/class-theme-installer-skin.php', 'wp-admin/includes/class-theme-installer-skin.php'),
(6397, '/home/binawebp/omsrislb.my/wp-admin/includes/class-theme-upgrader-skin.php', 'wp-admin/includes/class-theme-upgrader-skin.php'),
(6398, '/home/binawebp/omsrislb.my/wp-admin/includes/class-theme-upgrader.php', 'wp-admin/includes/class-theme-upgrader.php'),
(6399, '/home/binawebp/omsrislb.my/wp-admin/includes/class-walker-category-checklist.php', 'wp-admin/includes/class-walker-category-checklist.php'),
(6400, '/home/binawebp/omsrislb.my/wp-admin/includes/class-walker-nav-menu-checklist.php', 'wp-admin/includes/class-walker-nav-menu-checklist.php'),
(6401, '/home/binawebp/omsrislb.my/wp-admin/includes/class-walker-nav-menu-edit.php', 'wp-admin/includes/class-walker-nav-menu-edit.php'),
(6402, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ajax-upgrader-skin.php', 'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),
(6403, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-application-passwords-list-table.php', 'wp-admin/includes/class-wp-application-passwords-list-table.php'),
(6404, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-automatic-updater.php', 'wp-admin/includes/class-wp-automatic-updater.php'),
(6405, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-comments-list-table.php', 'wp-admin/includes/class-wp-comments-list-table.php'),
(6406, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-community-events.php', 'wp-admin/includes/class-wp-community-events.php'),
(6407, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-debug-data.php', 'wp-admin/includes/class-wp-debug-data.php'),
(6408, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-base.php', 'wp-admin/includes/class-wp-filesystem-base.php'),
(6409, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-direct.php', 'wp-admin/includes/class-wp-filesystem-direct.php'),
(6410, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-ftpext.php', 'wp-admin/includes/class-wp-filesystem-ftpext.php'),
(6411, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-ftpsockets.php', 'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),
(6412, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-filesystem-ssh2.php', 'wp-admin/includes/class-wp-filesystem-ssh2.php'),
(6413, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-importer.php', 'wp-admin/includes/class-wp-importer.php'),
(6414, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-internal-pointers.php', 'wp-admin/includes/class-wp-internal-pointers.php'),
(6415, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-links-list-table.php', 'wp-admin/includes/class-wp-links-list-table.php'),
(6416, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-list-table-compat.php', 'wp-admin/includes/class-wp-list-table-compat.php'),
(6417, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-list-table.php', 'wp-admin/includes/class-wp-list-table.php'),
(6418, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-media-list-table.php', 'wp-admin/includes/class-wp-media-list-table.php'),
(6419, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ms-sites-list-table.php', 'wp-admin/includes/class-wp-ms-sites-list-table.php'),
(6420, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ms-themes-list-table.php', 'wp-admin/includes/class-wp-ms-themes-list-table.php'),
(6421, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-ms-users-list-table.php', 'wp-admin/includes/class-wp-ms-users-list-table.php'),
(6422, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-plugin-install-list-table.php', 'wp-admin/includes/class-wp-plugin-install-list-table.php'),
(6423, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-plugins-list-table.php', 'wp-admin/includes/class-wp-plugins-list-table.php'),
(6424, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-post-comments-list-table.php', 'wp-admin/includes/class-wp-post-comments-list-table.php'),
(6425, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-posts-list-table.php', 'wp-admin/includes/class-wp-posts-list-table.php'),
(6426, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php', 'wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php'),
(6427, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php', 'wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php'),
(6428, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-policy-content.php', 'wp-admin/includes/class-wp-privacy-policy-content.php'),
(6429, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-privacy-requests-table.php', 'wp-admin/includes/class-wp-privacy-requests-table.php'),
(6430, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-screen.php', 'wp-admin/includes/class-wp-screen.php'),
(6431, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-site-health-auto-updates.php', 'wp-admin/includes/class-wp-site-health-auto-updates.php'),
(6432, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-site-health.php', 'wp-admin/includes/class-wp-site-health.php'),
(6433, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-site-icon.php', 'wp-admin/includes/class-wp-site-icon.php'),
(6434, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-terms-list-table.php', 'wp-admin/includes/class-wp-terms-list-table.php'),
(6435, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-theme-install-list-table.php', 'wp-admin/includes/class-wp-theme-install-list-table.php'),
(6436, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-themes-list-table.php', 'wp-admin/includes/class-wp-themes-list-table.php'),
(6437, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-upgrader-skin.php', 'wp-admin/includes/class-wp-upgrader-skin.php'),
(6438, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-upgrader-skins.php', 'wp-admin/includes/class-wp-upgrader-skins.php'),
(6439, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-upgrader.php', 'wp-admin/includes/class-wp-upgrader.php'),
(6440, '/home/binawebp/omsrislb.my/wp-admin/includes/class-wp-users-list-table.php', 'wp-admin/includes/class-wp-users-list-table.php'),
(6441, '/home/binawebp/omsrislb.my/wp-admin/includes/comment.php', 'wp-admin/includes/comment.php'),
(6442, '/home/binawebp/omsrislb.my/wp-admin/includes/continents-cities.php', 'wp-admin/includes/continents-cities.php'),
(6443, '/home/binawebp/omsrislb.my/wp-admin/includes/credits.php', 'wp-admin/includes/credits.php'),
(6444, '/home/binawebp/omsrislb.my/wp-admin/includes/dashboard.php', 'wp-admin/includes/dashboard.php'),
(6445, '/home/binawebp/omsrislb.my/wp-admin/includes/deprecated.php', 'wp-admin/includes/deprecated.php'),
(6446, '/home/binawebp/omsrislb.my/wp-admin/includes/edit-tag-messages.php', 'wp-admin/includes/edit-tag-messages.php'),
(6447, '/home/binawebp/omsrislb.my/wp-admin/includes/export.php', 'wp-admin/includes/export.php'),
(6448, '/home/binawebp/omsrislb.my/wp-admin/includes/file.php', 'wp-admin/includes/file.php'),
(6449, '/home/binawebp/omsrislb.my/wp-admin/includes/image-edit.php', 'wp-admin/includes/image-edit.php'),
(6450, '/home/binawebp/omsrislb.my/wp-admin/includes/image.php', 'wp-admin/includes/image.php'),
(6451, '/home/binawebp/omsrislb.my/wp-admin/includes/import.php', 'wp-admin/includes/import.php'),
(6452, '/home/binawebp/omsrislb.my/wp-admin/includes/list-table.php', 'wp-admin/includes/list-table.php'),
(6453, '/home/binawebp/omsrislb.my/wp-admin/includes/media.php', 'wp-admin/includes/media.php'),
(6454, '/home/binawebp/omsrislb.my/wp-admin/includes/menu.php', 'wp-admin/includes/menu.php'),
(6455, '/home/binawebp/omsrislb.my/wp-admin/includes/meta-boxes.php', 'wp-admin/includes/meta-boxes.php'),
(6456, '/home/binawebp/omsrislb.my/wp-admin/includes/misc.php', 'wp-admin/includes/misc.php'),
(6457, '/home/binawebp/omsrislb.my/wp-admin/includes/ms-admin-filters.php', 'wp-admin/includes/ms-admin-filters.php'),
(6458, '/home/binawebp/omsrislb.my/wp-admin/includes/ms-deprecated.php', 'wp-admin/includes/ms-deprecated.php'),
(6459, '/home/binawebp/omsrislb.my/wp-admin/includes/ms.php', 'wp-admin/includes/ms.php'),
(6460, '/home/binawebp/omsrislb.my/wp-admin/includes/nav-menu.php', 'wp-admin/includes/nav-menu.php'),
(6461, '/home/binawebp/omsrislb.my/wp-admin/includes/network.php', 'wp-admin/includes/network.php'),
(6462, '/home/binawebp/omsrislb.my/wp-admin/includes/noop.php', 'wp-admin/includes/noop.php'),
(6463, '/home/binawebp/omsrislb.my/wp-admin/includes/options.php', 'wp-admin/includes/options.php'),
(6464, '/home/binawebp/omsrislb.my/wp-admin/includes/plugin-install.php', 'wp-admin/includes/plugin-install.php'),
(6465, '/home/binawebp/omsrislb.my/wp-admin/includes/plugin.php', 'wp-admin/includes/plugin.php'),
(6466, '/home/binawebp/omsrislb.my/wp-admin/includes/post.php', 'wp-admin/includes/post.php'),
(6467, '/home/binawebp/omsrislb.my/wp-admin/includes/privacy-tools.php', 'wp-admin/includes/privacy-tools.php'),
(6468, '/home/binawebp/omsrislb.my/wp-admin/includes/revision.php', 'wp-admin/includes/revision.php'),
(6469, '/home/binawebp/omsrislb.my/wp-admin/includes/schema.php', 'wp-admin/includes/schema.php'),
(6470, '/home/binawebp/omsrislb.my/wp-admin/includes/screen.php', 'wp-admin/includes/screen.php'),
(6471, '/home/binawebp/omsrislb.my/wp-admin/includes/taxonomy.php', 'wp-admin/includes/taxonomy.php'),
(6472, '/home/binawebp/omsrislb.my/wp-admin/includes/template.php', 'wp-admin/includes/template.php'),
(6473, '/home/binawebp/omsrislb.my/wp-admin/includes/theme-install.php', 'wp-admin/includes/theme-install.php'),
(6474, '/home/binawebp/omsrislb.my/wp-admin/includes/theme.php', 'wp-admin/includes/theme.php'),
(6475, '/home/binawebp/omsrislb.my/wp-admin/includes/translation-install.php', 'wp-admin/includes/translation-install.php'),
(6476, '/home/binawebp/omsrislb.my/wp-admin/includes/update-core.php', 'wp-admin/includes/update-core.php'),
(6477, '/home/binawebp/omsrislb.my/wp-admin/includes/update.php', 'wp-admin/includes/update.php'),
(6478, '/home/binawebp/omsrislb.my/wp-admin/includes/upgrade.php', 'wp-admin/includes/upgrade.php'),
(6479, '/home/binawebp/omsrislb.my/wp-admin/includes/user.php', 'wp-admin/includes/user.php'),
(6480, '/home/binawebp/omsrislb.my/wp-admin/includes/widgets.php', 'wp-admin/includes/widgets.php'),
(6481, '/home/binawebp/omsrislb.my/wp-admin/index.php', 'wp-admin/index.php'),
(6482, '/home/binawebp/omsrislb.my/wp-admin/install-helper.php', 'wp-admin/install-helper.php'),
(6483, '/home/binawebp/omsrislb.my/wp-admin/install.php', 'wp-admin/install.php'),
(6484, '/home/binawebp/omsrislb.my/wp-admin/js/accordion.js', 'wp-admin/js/accordion.js'),
(6485, '/home/binawebp/omsrislb.my/wp-admin/js/accordion.min.js', 'wp-admin/js/accordion.min.js'),
(6486, '/home/binawebp/omsrislb.my/wp-admin/js/application-passwords.js', 'wp-admin/js/application-passwords.js'),
(6487, '/home/binawebp/omsrislb.my/wp-admin/js/application-passwords.min.js', 'wp-admin/js/application-passwords.min.js'),
(6488, '/home/binawebp/omsrislb.my/wp-admin/js/auth-app.js', 'wp-admin/js/auth-app.js'),
(6489, '/home/binawebp/omsrislb.my/wp-admin/js/auth-app.min.js', 'wp-admin/js/auth-app.min.js'),
(6490, '/home/binawebp/omsrislb.my/wp-admin/js/code-editor.js', 'wp-admin/js/code-editor.js'),
(6491, '/home/binawebp/omsrislb.my/wp-admin/js/code-editor.min.js', 'wp-admin/js/code-editor.min.js'),
(6492, '/home/binawebp/omsrislb.my/wp-admin/js/color-picker.js', 'wp-admin/js/color-picker.js'),
(6493, '/home/binawebp/omsrislb.my/wp-admin/js/color-picker.min.js', 'wp-admin/js/color-picker.min.js'),
(6494, '/home/binawebp/omsrislb.my/wp-admin/js/comment.js', 'wp-admin/js/comment.js'),
(6495, '/home/binawebp/omsrislb.my/wp-admin/js/comment.min.js', 'wp-admin/js/comment.min.js'),
(6496, '/home/binawebp/omsrislb.my/wp-admin/js/common.js', 'wp-admin/js/common.js'),
(6497, '/home/binawebp/omsrislb.my/wp-admin/js/common.min.js', 'wp-admin/js/common.min.js'),
(6498, '/home/binawebp/omsrislb.my/wp-admin/js/custom-background.js', 'wp-admin/js/custom-background.js'),
(6499, '/home/binawebp/omsrislb.my/wp-admin/js/custom-background.min.js', 'wp-admin/js/custom-background.min.js'),
(6500, '/home/binawebp/omsrislb.my/wp-admin/js/custom-header.js', 'wp-admin/js/custom-header.js'),
(6501, '/home/binawebp/omsrislb.my/wp-admin/js/customize-controls.js', 'wp-admin/js/customize-controls.js'),
(6502, '/home/binawebp/omsrislb.my/wp-admin/js/customize-controls.min.js', 'wp-admin/js/customize-controls.min.js'),
(6503, '/home/binawebp/omsrislb.my/wp-admin/js/customize-nav-menus.js', 'wp-admin/js/customize-nav-menus.js'),
(6504, '/home/binawebp/omsrislb.my/wp-admin/js/customize-nav-menus.min.js', 'wp-admin/js/customize-nav-menus.min.js'),
(6505, '/home/binawebp/omsrislb.my/wp-admin/js/customize-widgets.js', 'wp-admin/js/customize-widgets.js'),
(6506, '/home/binawebp/omsrislb.my/wp-admin/js/customize-widgets.min.js', 'wp-admin/js/customize-widgets.min.js'),
(6507, '/home/binawebp/omsrislb.my/wp-admin/js/dashboard.js', 'wp-admin/js/dashboard.js'),
(6508, '/home/binawebp/omsrislb.my/wp-admin/js/dashboard.min.js', 'wp-admin/js/dashboard.min.js'),
(6509, '/home/binawebp/omsrislb.my/wp-admin/js/edit-comments.js', 'wp-admin/js/edit-comments.js'),
(6510, '/home/binawebp/omsrislb.my/wp-admin/js/edit-comments.min.js', 'wp-admin/js/edit-comments.min.js'),
(6511, '/home/binawebp/omsrislb.my/wp-admin/js/editor-expand.js', 'wp-admin/js/editor-expand.js'),
(6512, '/home/binawebp/omsrislb.my/wp-admin/js/editor-expand.min.js', 'wp-admin/js/editor-expand.min.js'),
(6513, '/home/binawebp/omsrislb.my/wp-admin/js/editor.js', 'wp-admin/js/editor.js'),
(6514, '/home/binawebp/omsrislb.my/wp-admin/js/editor.min.js', 'wp-admin/js/editor.min.js'),
(6515, '/home/binawebp/omsrislb.my/wp-admin/js/farbtastic.js', 'wp-admin/js/farbtastic.js'),
(6516, '/home/binawebp/omsrislb.my/wp-admin/js/gallery.js', 'wp-admin/js/gallery.js'),
(6517, '/home/binawebp/omsrislb.my/wp-admin/js/gallery.min.js', 'wp-admin/js/gallery.min.js'),
(6518, '/home/binawebp/omsrislb.my/wp-admin/js/image-edit.js', 'wp-admin/js/image-edit.js'),
(6519, '/home/binawebp/omsrislb.my/wp-admin/js/image-edit.min.js', 'wp-admin/js/image-edit.min.js'),
(6520, '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-post.js', 'wp-admin/js/inline-edit-post.js'),
(6521, '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-post.min.js', 'wp-admin/js/inline-edit-post.min.js'),
(6522, '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-tax.js', 'wp-admin/js/inline-edit-tax.js'),
(6523, '/home/binawebp/omsrislb.my/wp-admin/js/inline-edit-tax.min.js', 'wp-admin/js/inline-edit-tax.min.js'),
(6524, '/home/binawebp/omsrislb.my/wp-admin/js/iris.min.js', 'wp-admin/js/iris.min.js'),
(6525, '/home/binawebp/omsrislb.my/wp-admin/js/language-chooser.js', 'wp-admin/js/language-chooser.js'),
(6526, '/home/binawebp/omsrislb.my/wp-admin/js/language-chooser.min.js', 'wp-admin/js/language-chooser.min.js'),
(6527, '/home/binawebp/omsrislb.my/wp-admin/js/link.js', 'wp-admin/js/link.js'),
(6528, '/home/binawebp/omsrislb.my/wp-admin/js/link.min.js', 'wp-admin/js/link.min.js'),
(6529, '/home/binawebp/omsrislb.my/wp-admin/js/media-gallery.js', 'wp-admin/js/media-gallery.js'),
(6530, '/home/binawebp/omsrislb.my/wp-admin/js/media-gallery.min.js', 'wp-admin/js/media-gallery.min.js'),
(6531, '/home/binawebp/omsrislb.my/wp-admin/js/media-upload.js', 'wp-admin/js/media-upload.js'),
(6532, '/home/binawebp/omsrislb.my/wp-admin/js/media-upload.min.js', 'wp-admin/js/media-upload.min.js'),
(6533, '/home/binawebp/omsrislb.my/wp-admin/js/media.js', 'wp-admin/js/media.js'),
(6534, '/home/binawebp/omsrislb.my/wp-admin/js/media.min.js', 'wp-admin/js/media.min.js'),
(6535, '/home/binawebp/omsrislb.my/wp-admin/js/nav-menu.js', 'wp-admin/js/nav-menu.js'),
(6536, '/home/binawebp/omsrislb.my/wp-admin/js/nav-menu.min.js', 'wp-admin/js/nav-menu.min.js'),
(6537, '/home/binawebp/omsrislb.my/wp-admin/js/password-strength-meter.js', 'wp-admin/js/password-strength-meter.js'),
(6538, '/home/binawebp/omsrislb.my/wp-admin/js/password-strength-meter.min.js', 'wp-admin/js/password-strength-meter.min.js'),
(6539, '/home/binawebp/omsrislb.my/wp-admin/js/password-toggle.js', 'wp-admin/js/password-toggle.js'),
(6540, '/home/binawebp/omsrislb.my/wp-admin/js/password-toggle.min.js', 'wp-admin/js/password-toggle.min.js'),
(6541, '/home/binawebp/omsrislb.my/wp-admin/js/plugin-install.js', 'wp-admin/js/plugin-install.js'),
(6542, '/home/binawebp/omsrislb.my/wp-admin/js/plugin-install.min.js', 'wp-admin/js/plugin-install.min.js'),
(6543, '/home/binawebp/omsrislb.my/wp-admin/js/post.js', 'wp-admin/js/post.js'),
(6544, '/home/binawebp/omsrislb.my/wp-admin/js/post.min.js', 'wp-admin/js/post.min.js'),
(6545, '/home/binawebp/omsrislb.my/wp-admin/js/postbox.js', 'wp-admin/js/postbox.js'),
(6546, '/home/binawebp/omsrislb.my/wp-admin/js/postbox.min.js', 'wp-admin/js/postbox.min.js'),
(6547, '/home/binawebp/omsrislb.my/wp-admin/js/privacy-tools.js', 'wp-admin/js/privacy-tools.js'),
(6548, '/home/binawebp/omsrislb.my/wp-admin/js/privacy-tools.min.js', 'wp-admin/js/privacy-tools.min.js'),
(6549, '/home/binawebp/omsrislb.my/wp-admin/js/revisions.js', 'wp-admin/js/revisions.js'),
(6550, '/home/binawebp/omsrislb.my/wp-admin/js/revisions.min.js', 'wp-admin/js/revisions.min.js'),
(6551, '/home/binawebp/omsrislb.my/wp-admin/js/set-post-thumbnail.js', 'wp-admin/js/set-post-thumbnail.js'),
(6552, '/home/binawebp/omsrislb.my/wp-admin/js/set-post-thumbnail.min.js', 'wp-admin/js/set-post-thumbnail.min.js'),
(6553, '/home/binawebp/omsrislb.my/wp-admin/js/site-health.js', 'wp-admin/js/site-health.js'),
(6554, '/home/binawebp/omsrislb.my/wp-admin/js/site-health.min.js', 'wp-admin/js/site-health.min.js'),
(6555, '/home/binawebp/omsrislb.my/wp-admin/js/site-icon.js', 'wp-admin/js/site-icon.js'),
(6556, '/home/binawebp/omsrislb.my/wp-admin/js/site-icon.min.js', 'wp-admin/js/site-icon.min.js'),
(6557, '/home/binawebp/omsrislb.my/wp-admin/js/svg-painter.js', 'wp-admin/js/svg-painter.js'),
(6558, '/home/binawebp/omsrislb.my/wp-admin/js/svg-painter.min.js', 'wp-admin/js/svg-painter.min.js'),
(6559, '/home/binawebp/omsrislb.my/wp-admin/js/tags-box.js', 'wp-admin/js/tags-box.js'),
(6560, '/home/binawebp/omsrislb.my/wp-admin/js/tags-box.min.js', 'wp-admin/js/tags-box.min.js'),
(6561, '/home/binawebp/omsrislb.my/wp-admin/js/tags-suggest.js', 'wp-admin/js/tags-suggest.js'),
(6562, '/home/binawebp/omsrislb.my/wp-admin/js/tags-suggest.min.js', 'wp-admin/js/tags-suggest.min.js'),
(6563, '/home/binawebp/omsrislb.my/wp-admin/js/tags.js', 'wp-admin/js/tags.js'),
(6564, '/home/binawebp/omsrislb.my/wp-admin/js/tags.min.js', 'wp-admin/js/tags.min.js'),
(6565, '/home/binawebp/omsrislb.my/wp-admin/js/theme-plugin-editor.js', 'wp-admin/js/theme-plugin-editor.js'),
(6566, '/home/binawebp/omsrislb.my/wp-admin/js/theme-plugin-editor.min.js', 'wp-admin/js/theme-plugin-editor.min.js'),
(6567, '/home/binawebp/omsrislb.my/wp-admin/js/theme.js', 'wp-admin/js/theme.js'),
(6568, '/home/binawebp/omsrislb.my/wp-admin/js/theme.min.js', 'wp-admin/js/theme.min.js'),
(6569, '/home/binawebp/omsrislb.my/wp-admin/js/updates.js', 'wp-admin/js/updates.js'),
(6570, '/home/binawebp/omsrislb.my/wp-admin/js/updates.min.js', 'wp-admin/js/updates.min.js'),
(6571, '/home/binawebp/omsrislb.my/wp-admin/js/user-profile.js', 'wp-admin/js/user-profile.js'),
(6572, '/home/binawebp/omsrislb.my/wp-admin/js/user-profile.min.js', 'wp-admin/js/user-profile.min.js'),
(6573, '/home/binawebp/omsrislb.my/wp-admin/js/user-suggest.js', 'wp-admin/js/user-suggest.js'),
(6574, '/home/binawebp/omsrislb.my/wp-admin/js/user-suggest.min.js', 'wp-admin/js/user-suggest.min.js'),
(6575, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/custom-html-widgets.js', 'wp-admin/js/widgets/custom-html-widgets.js'),
(6576, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/custom-html-widgets.min.js', 'wp-admin/js/widgets/custom-html-widgets.min.js'),
(6577, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-audio-widget.js', 'wp-admin/js/widgets/media-audio-widget.js'),
(6578, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-audio-widget.min.js', 'wp-admin/js/widgets/media-audio-widget.min.js'),
(6579, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-gallery-widget.js', 'wp-admin/js/widgets/media-gallery-widget.js'),
(6580, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-gallery-widget.min.js', 'wp-admin/js/widgets/media-gallery-widget.min.js'),
(6581, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-image-widget.js', 'wp-admin/js/widgets/media-image-widget.js'),
(6582, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-image-widget.min.js', 'wp-admin/js/widgets/media-image-widget.min.js'),
(6583, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-video-widget.js', 'wp-admin/js/widgets/media-video-widget.js'),
(6584, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-video-widget.min.js', 'wp-admin/js/widgets/media-video-widget.min.js'),
(6585, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-widgets.js', 'wp-admin/js/widgets/media-widgets.js'),
(6586, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/media-widgets.min.js', 'wp-admin/js/widgets/media-widgets.min.js'),
(6587, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/text-widgets.js', 'wp-admin/js/widgets/text-widgets.js'),
(6588, '/home/binawebp/omsrislb.my/wp-admin/js/widgets/text-widgets.min.js', 'wp-admin/js/widgets/text-widgets.min.js'),
(6589, '/home/binawebp/omsrislb.my/wp-admin/js/widgets.js', 'wp-admin/js/widgets.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(6590, '/home/binawebp/omsrislb.my/wp-admin/js/widgets.min.js', 'wp-admin/js/widgets.min.js'),
(6591, '/home/binawebp/omsrislb.my/wp-admin/js/word-count.js', 'wp-admin/js/word-count.js'),
(6592, '/home/binawebp/omsrislb.my/wp-admin/js/word-count.min.js', 'wp-admin/js/word-count.min.js'),
(6593, '/home/binawebp/omsrislb.my/wp-admin/js/xfn.js', 'wp-admin/js/xfn.js'),
(6594, '/home/binawebp/omsrislb.my/wp-admin/js/xfn.min.js', 'wp-admin/js/xfn.min.js'),
(6595, '/home/binawebp/omsrislb.my/wp-admin/link-add.php', 'wp-admin/link-add.php'),
(6596, '/home/binawebp/omsrislb.my/wp-admin/link-manager.php', 'wp-admin/link-manager.php'),
(6597, '/home/binawebp/omsrislb.my/wp-admin/link-parse-opml.php', 'wp-admin/link-parse-opml.php'),
(6598, '/home/binawebp/omsrislb.my/wp-admin/link.php', 'wp-admin/link.php'),
(6599, '/home/binawebp/omsrislb.my/wp-admin/load-scripts.php', 'wp-admin/load-scripts.php'),
(6600, '/home/binawebp/omsrislb.my/wp-admin/load-styles.php', 'wp-admin/load-styles.php'),
(6601, '/home/binawebp/omsrislb.my/wp-admin/maint/repair.php', 'wp-admin/maint/repair.php'),
(6602, '/home/binawebp/omsrislb.my/wp-admin/media-new.php', 'wp-admin/media-new.php'),
(6603, '/home/binawebp/omsrislb.my/wp-admin/media-upload.php', 'wp-admin/media-upload.php'),
(6604, '/home/binawebp/omsrislb.my/wp-admin/media.php', 'wp-admin/media.php'),
(6605, '/home/binawebp/omsrislb.my/wp-admin/menu-header.php', 'wp-admin/menu-header.php'),
(6606, '/home/binawebp/omsrislb.my/wp-admin/menu.php', 'wp-admin/menu.php'),
(6607, '/home/binawebp/omsrislb.my/wp-admin/moderation.php', 'wp-admin/moderation.php'),
(6608, '/home/binawebp/omsrislb.my/wp-admin/ms-admin.php', 'wp-admin/ms-admin.php'),
(6609, '/home/binawebp/omsrislb.my/wp-admin/ms-delete-site.php', 'wp-admin/ms-delete-site.php'),
(6610, '/home/binawebp/omsrislb.my/wp-admin/ms-edit.php', 'wp-admin/ms-edit.php'),
(6611, '/home/binawebp/omsrislb.my/wp-admin/ms-options.php', 'wp-admin/ms-options.php'),
(6612, '/home/binawebp/omsrislb.my/wp-admin/ms-sites.php', 'wp-admin/ms-sites.php'),
(6613, '/home/binawebp/omsrislb.my/wp-admin/ms-themes.php', 'wp-admin/ms-themes.php'),
(6614, '/home/binawebp/omsrislb.my/wp-admin/ms-upgrade-network.php', 'wp-admin/ms-upgrade-network.php'),
(6615, '/home/binawebp/omsrislb.my/wp-admin/ms-users.php', 'wp-admin/ms-users.php'),
(6616, '/home/binawebp/omsrislb.my/wp-admin/my-sites.php', 'wp-admin/my-sites.php'),
(6617, '/home/binawebp/omsrislb.my/wp-admin/nav-menus.php', 'wp-admin/nav-menus.php'),
(6618, '/home/binawebp/omsrislb.my/wp-admin/network/about.php', 'wp-admin/network/about.php'),
(6619, '/home/binawebp/omsrislb.my/wp-admin/network/admin.php', 'wp-admin/network/admin.php'),
(6620, '/home/binawebp/omsrislb.my/wp-admin/network/contribute.php', 'wp-admin/network/contribute.php'),
(6621, '/home/binawebp/omsrislb.my/wp-admin/network/credits.php', 'wp-admin/network/credits.php'),
(6622, '/home/binawebp/omsrislb.my/wp-admin/network/edit.php', 'wp-admin/network/edit.php'),
(6623, '/home/binawebp/omsrislb.my/wp-admin/network/freedoms.php', 'wp-admin/network/freedoms.php'),
(6624, '/home/binawebp/omsrislb.my/wp-admin/network/index.php', 'wp-admin/network/index.php'),
(6625, '/home/binawebp/omsrislb.my/wp-admin/network/menu.php', 'wp-admin/network/menu.php'),
(6626, '/home/binawebp/omsrislb.my/wp-admin/network/plugin-editor.php', 'wp-admin/network/plugin-editor.php'),
(6627, '/home/binawebp/omsrislb.my/wp-admin/network/plugin-install.php', 'wp-admin/network/plugin-install.php'),
(6628, '/home/binawebp/omsrislb.my/wp-admin/network/plugins.php', 'wp-admin/network/plugins.php'),
(6629, '/home/binawebp/omsrislb.my/wp-admin/network/privacy.php', 'wp-admin/network/privacy.php'),
(6630, '/home/binawebp/omsrislb.my/wp-admin/network/profile.php', 'wp-admin/network/profile.php'),
(6631, '/home/binawebp/omsrislb.my/wp-admin/network/settings.php', 'wp-admin/network/settings.php'),
(6632, '/home/binawebp/omsrislb.my/wp-admin/network/setup.php', 'wp-admin/network/setup.php'),
(6633, '/home/binawebp/omsrislb.my/wp-admin/network/site-info.php', 'wp-admin/network/site-info.php'),
(6634, '/home/binawebp/omsrislb.my/wp-admin/network/site-new.php', 'wp-admin/network/site-new.php'),
(6635, '/home/binawebp/omsrislb.my/wp-admin/network/site-settings.php', 'wp-admin/network/site-settings.php'),
(6636, '/home/binawebp/omsrislb.my/wp-admin/network/site-themes.php', 'wp-admin/network/site-themes.php'),
(6637, '/home/binawebp/omsrislb.my/wp-admin/network/site-users.php', 'wp-admin/network/site-users.php'),
(6638, '/home/binawebp/omsrislb.my/wp-admin/network/sites.php', 'wp-admin/network/sites.php'),
(6639, '/home/binawebp/omsrislb.my/wp-admin/network/theme-editor.php', 'wp-admin/network/theme-editor.php'),
(6640, '/home/binawebp/omsrislb.my/wp-admin/network/theme-install.php', 'wp-admin/network/theme-install.php'),
(6641, '/home/binawebp/omsrislb.my/wp-admin/network/themes.php', 'wp-admin/network/themes.php'),
(6642, '/home/binawebp/omsrislb.my/wp-admin/network/update-core.php', 'wp-admin/network/update-core.php'),
(6643, '/home/binawebp/omsrislb.my/wp-admin/network/update.php', 'wp-admin/network/update.php'),
(6644, '/home/binawebp/omsrislb.my/wp-admin/network/upgrade.php', 'wp-admin/network/upgrade.php'),
(6645, '/home/binawebp/omsrislb.my/wp-admin/network/user-edit.php', 'wp-admin/network/user-edit.php'),
(6646, '/home/binawebp/omsrislb.my/wp-admin/network/user-new.php', 'wp-admin/network/user-new.php'),
(6647, '/home/binawebp/omsrislb.my/wp-admin/network/users.php', 'wp-admin/network/users.php'),
(6648, '/home/binawebp/omsrislb.my/wp-admin/network.php', 'wp-admin/network.php'),
(6649, '/home/binawebp/omsrislb.my/wp-admin/options-discussion.php', 'wp-admin/options-discussion.php'),
(6650, '/home/binawebp/omsrislb.my/wp-admin/options-general.php', 'wp-admin/options-general.php'),
(6651, '/home/binawebp/omsrislb.my/wp-admin/options-head.php', 'wp-admin/options-head.php'),
(6652, '/home/binawebp/omsrislb.my/wp-admin/options-media.php', 'wp-admin/options-media.php'),
(6653, '/home/binawebp/omsrislb.my/wp-admin/options-permalink.php', 'wp-admin/options-permalink.php'),
(6654, '/home/binawebp/omsrislb.my/wp-admin/options-privacy.php', 'wp-admin/options-privacy.php'),
(6655, '/home/binawebp/omsrislb.my/wp-admin/options-reading.php', 'wp-admin/options-reading.php'),
(6656, '/home/binawebp/omsrislb.my/wp-admin/options-writing.php', 'wp-admin/options-writing.php'),
(6657, '/home/binawebp/omsrislb.my/wp-admin/options.php', 'wp-admin/options.php'),
(6658, '/home/binawebp/omsrislb.my/wp-admin/plugin-editor.php', 'wp-admin/plugin-editor.php'),
(6659, '/home/binawebp/omsrislb.my/wp-admin/plugin-install.php', 'wp-admin/plugin-install.php'),
(6660, '/home/binawebp/omsrislb.my/wp-admin/plugins.php', 'wp-admin/plugins.php'),
(6661, '/home/binawebp/omsrislb.my/wp-admin/post-new.php', 'wp-admin/post-new.php'),
(6662, '/home/binawebp/omsrislb.my/wp-admin/post.php', 'wp-admin/post.php'),
(6663, '/home/binawebp/omsrislb.my/wp-admin/press-this.php', 'wp-admin/press-this.php'),
(6664, '/home/binawebp/omsrislb.my/wp-admin/privacy-policy-guide.php', 'wp-admin/privacy-policy-guide.php'),
(6665, '/home/binawebp/omsrislb.my/wp-admin/privacy.php', 'wp-admin/privacy.php'),
(6666, '/home/binawebp/omsrislb.my/wp-admin/profile.php', 'wp-admin/profile.php'),
(6667, '/home/binawebp/omsrislb.my/wp-admin/revision.php', 'wp-admin/revision.php'),
(6668, '/home/binawebp/omsrislb.my/wp-admin/setup-config.php', 'wp-admin/setup-config.php'),
(6669, '/home/binawebp/omsrislb.my/wp-admin/site-editor.php', 'wp-admin/site-editor.php'),
(6670, '/home/binawebp/omsrislb.my/wp-admin/site-health-info.php', 'wp-admin/site-health-info.php'),
(6671, '/home/binawebp/omsrislb.my/wp-admin/site-health.php', 'wp-admin/site-health.php'),
(6672, '/home/binawebp/omsrislb.my/wp-admin/term.php', 'wp-admin/term.php'),
(6673, '/home/binawebp/omsrislb.my/wp-admin/theme-editor.php', 'wp-admin/theme-editor.php'),
(6674, '/home/binawebp/omsrislb.my/wp-admin/theme-install.php', 'wp-admin/theme-install.php'),
(6675, '/home/binawebp/omsrislb.my/wp-admin/themes.php', 'wp-admin/themes.php'),
(6676, '/home/binawebp/omsrislb.my/wp-admin/tools.php', 'wp-admin/tools.php'),
(6677, '/home/binawebp/omsrislb.my/wp-admin/update-core.php', 'wp-admin/update-core.php'),
(6678, '/home/binawebp/omsrislb.my/wp-admin/update.php', 'wp-admin/update.php'),
(6679, '/home/binawebp/omsrislb.my/wp-admin/upgrade-functions.php', 'wp-admin/upgrade-functions.php'),
(6680, '/home/binawebp/omsrislb.my/wp-admin/upgrade.php', 'wp-admin/upgrade.php'),
(6681, '/home/binawebp/omsrislb.my/wp-admin/upload.php', 'wp-admin/upload.php'),
(6682, '/home/binawebp/omsrislb.my/wp-admin/user/about.php', 'wp-admin/user/about.php'),
(6683, '/home/binawebp/omsrislb.my/wp-admin/user/admin.php', 'wp-admin/user/admin.php'),
(6684, '/home/binawebp/omsrislb.my/wp-admin/user/contribute.php', 'wp-admin/user/contribute.php'),
(6685, '/home/binawebp/omsrislb.my/wp-admin/user/credits.php', 'wp-admin/user/credits.php'),
(6686, '/home/binawebp/omsrislb.my/wp-admin/user/freedoms.php', 'wp-admin/user/freedoms.php'),
(6687, '/home/binawebp/omsrislb.my/wp-admin/user/index.php', 'wp-admin/user/index.php'),
(6688, '/home/binawebp/omsrislb.my/wp-admin/user/menu.php', 'wp-admin/user/menu.php'),
(6689, '/home/binawebp/omsrislb.my/wp-admin/user/privacy.php', 'wp-admin/user/privacy.php'),
(6690, '/home/binawebp/omsrislb.my/wp-admin/user/profile.php', 'wp-admin/user/profile.php'),
(6691, '/home/binawebp/omsrislb.my/wp-admin/user/user-edit.php', 'wp-admin/user/user-edit.php'),
(6692, '/home/binawebp/omsrislb.my/wp-admin/user-edit.php', 'wp-admin/user-edit.php'),
(6693, '/home/binawebp/omsrislb.my/wp-admin/user-new.php', 'wp-admin/user-new.php'),
(6694, '/home/binawebp/omsrislb.my/wp-admin/users.php', 'wp-admin/users.php'),
(6695, '/home/binawebp/omsrislb.my/wp-admin/widgets-form-blocks.php', 'wp-admin/widgets-form-blocks.php'),
(6696, '/home/binawebp/omsrislb.my/wp-admin/widgets-form.php', 'wp-admin/widgets-form.php'),
(6697, '/home/binawebp/omsrislb.my/wp-admin/widgets.php', 'wp-admin/widgets.php'),
(6698, '/home/binawebp/omsrislb.my/wp-blog-header.php', 'wp-blog-header.php'),
(6699, '/home/binawebp/omsrislb.my/wp-comments-post.php', 'wp-comments-post.php'),
(6700, '/home/binawebp/omsrislb.my/wp-config-sample.php', 'wp-config-sample.php'),
(6701, '/home/binawebp/omsrislb.my/wp-config.php', 'wp-config.php'),
(6702, '/home/binawebp/omsrislb.my/wp-cron.php', 'wp-cron.php'),
(6703, '/home/binawebp/omsrislb.my/wp-includes/ID3/getid3.lib.php', 'wp-includes/ID3/getid3.lib.php'),
(6704, '/home/binawebp/omsrislb.my/wp-includes/ID3/getid3.php', 'wp-includes/ID3/getid3.php'),
(6705, '/home/binawebp/omsrislb.my/wp-includes/ID3/license.txt', 'wp-includes/ID3/license.txt'),
(6706, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.asf.php', 'wp-includes/ID3/module.audio-video.asf.php'),
(6707, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.flv.php', 'wp-includes/ID3/module.audio-video.flv.php'),
(6708, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.matroska.php', 'wp-includes/ID3/module.audio-video.matroska.php'),
(6709, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.quicktime.php', 'wp-includes/ID3/module.audio-video.quicktime.php'),
(6710, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio-video.riff.php', 'wp-includes/ID3/module.audio-video.riff.php'),
(6711, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.ac3.php', 'wp-includes/ID3/module.audio.ac3.php'),
(6712, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.dts.php', 'wp-includes/ID3/module.audio.dts.php'),
(6713, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.flac.php', 'wp-includes/ID3/module.audio.flac.php'),
(6714, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.mp3.php', 'wp-includes/ID3/module.audio.mp3.php'),
(6715, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.audio.ogg.php', 'wp-includes/ID3/module.audio.ogg.php'),
(6716, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.apetag.php', 'wp-includes/ID3/module.tag.apetag.php'),
(6717, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.id3v1.php', 'wp-includes/ID3/module.tag.id3v1.php'),
(6718, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.id3v2.php', 'wp-includes/ID3/module.tag.id3v2.php'),
(6719, '/home/binawebp/omsrislb.my/wp-includes/ID3/module.tag.lyrics3.php', 'wp-includes/ID3/module.tag.lyrics3.php'),
(6720, '/home/binawebp/omsrislb.my/wp-includes/ID3/readme.txt', 'wp-includes/ID3/readme.txt'),
(6721, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-base64.php', 'wp-includes/IXR/class-IXR-base64.php'),
(6722, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-client.php', 'wp-includes/IXR/class-IXR-client.php'),
(6723, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-clientmulticall.php', 'wp-includes/IXR/class-IXR-clientmulticall.php'),
(6724, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-date.php', 'wp-includes/IXR/class-IXR-date.php'),
(6725, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-error.php', 'wp-includes/IXR/class-IXR-error.php'),
(6726, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-introspectionserver.php', 'wp-includes/IXR/class-IXR-introspectionserver.php'),
(6727, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-message.php', 'wp-includes/IXR/class-IXR-message.php'),
(6728, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-request.php', 'wp-includes/IXR/class-IXR-request.php'),
(6729, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-server.php', 'wp-includes/IXR/class-IXR-server.php'),
(6730, '/home/binawebp/omsrislb.my/wp-includes/IXR/class-IXR-value.php', 'wp-includes/IXR/class-IXR-value.php'),
(6731, '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/DSNConfigurator.php', 'wp-includes/PHPMailer/DSNConfigurator.php'),
(6732, '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/Exception.php', 'wp-includes/PHPMailer/Exception.php'),
(6733, '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/OAuth.php', 'wp-includes/PHPMailer/OAuth.php'),
(6734, '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/OAuthTokenProvider.php', 'wp-includes/PHPMailer/OAuthTokenProvider.php'),
(6735, '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/PHPMailer.php', 'wp-includes/PHPMailer/PHPMailer.php'),
(6736, '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/POP3.php', 'wp-includes/PHPMailer/POP3.php'),
(6737, '/home/binawebp/omsrislb.my/wp-includes/PHPMailer/SMTP.php', 'wp-includes/PHPMailer/SMTP.php'),
(6738, '/home/binawebp/omsrislb.my/wp-includes/Requests/library/Requests.php', 'wp-includes/Requests/library/Requests.php'),
(6739, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Auth/Basic.php', 'wp-includes/Requests/src/Auth/Basic.php'),
(6740, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Auth.php', 'wp-includes/Requests/src/Auth.php'),
(6741, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Autoload.php', 'wp-includes/Requests/src/Autoload.php'),
(6742, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Capability.php', 'wp-includes/Requests/src/Capability.php'),
(6743, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Cookie/Jar.php', 'wp-includes/Requests/src/Cookie/Jar.php'),
(6744, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Cookie.php', 'wp-includes/Requests/src/Cookie.php'),
(6745, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/ArgumentCount.php', 'wp-includes/Requests/src/Exception/ArgumentCount.php'),
(6746, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status304.php', 'wp-includes/Requests/src/Exception/Http/Status304.php'),
(6747, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status305.php', 'wp-includes/Requests/src/Exception/Http/Status305.php'),
(6748, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status306.php', 'wp-includes/Requests/src/Exception/Http/Status306.php'),
(6749, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status400.php', 'wp-includes/Requests/src/Exception/Http/Status400.php'),
(6750, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status401.php', 'wp-includes/Requests/src/Exception/Http/Status401.php'),
(6751, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status402.php', 'wp-includes/Requests/src/Exception/Http/Status402.php'),
(6752, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status403.php', 'wp-includes/Requests/src/Exception/Http/Status403.php'),
(6753, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status404.php', 'wp-includes/Requests/src/Exception/Http/Status404.php'),
(6754, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status405.php', 'wp-includes/Requests/src/Exception/Http/Status405.php'),
(6755, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status406.php', 'wp-includes/Requests/src/Exception/Http/Status406.php'),
(6756, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status407.php', 'wp-includes/Requests/src/Exception/Http/Status407.php'),
(6757, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status408.php', 'wp-includes/Requests/src/Exception/Http/Status408.php'),
(6758, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status409.php', 'wp-includes/Requests/src/Exception/Http/Status409.php'),
(6759, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status410.php', 'wp-includes/Requests/src/Exception/Http/Status410.php'),
(6760, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status411.php', 'wp-includes/Requests/src/Exception/Http/Status411.php'),
(6761, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status412.php', 'wp-includes/Requests/src/Exception/Http/Status412.php'),
(6762, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status413.php', 'wp-includes/Requests/src/Exception/Http/Status413.php'),
(6763, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status414.php', 'wp-includes/Requests/src/Exception/Http/Status414.php'),
(6764, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status415.php', 'wp-includes/Requests/src/Exception/Http/Status415.php'),
(6765, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status416.php', 'wp-includes/Requests/src/Exception/Http/Status416.php'),
(6766, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status417.php', 'wp-includes/Requests/src/Exception/Http/Status417.php'),
(6767, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status418.php', 'wp-includes/Requests/src/Exception/Http/Status418.php'),
(6768, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status428.php', 'wp-includes/Requests/src/Exception/Http/Status428.php'),
(6769, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status429.php', 'wp-includes/Requests/src/Exception/Http/Status429.php'),
(6770, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status431.php', 'wp-includes/Requests/src/Exception/Http/Status431.php'),
(6771, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status500.php', 'wp-includes/Requests/src/Exception/Http/Status500.php'),
(6772, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status501.php', 'wp-includes/Requests/src/Exception/Http/Status501.php'),
(6773, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status502.php', 'wp-includes/Requests/src/Exception/Http/Status502.php'),
(6774, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status503.php', 'wp-includes/Requests/src/Exception/Http/Status503.php'),
(6775, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status504.php', 'wp-includes/Requests/src/Exception/Http/Status504.php'),
(6776, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status505.php', 'wp-includes/Requests/src/Exception/Http/Status505.php'),
(6777, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/Status511.php', 'wp-includes/Requests/src/Exception/Http/Status511.php'),
(6778, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http/StatusUnknown.php', 'wp-includes/Requests/src/Exception/Http/StatusUnknown.php'),
(6779, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Http.php', 'wp-includes/Requests/src/Exception/Http.php'),
(6780, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/InvalidArgument.php', 'wp-includes/Requests/src/Exception/InvalidArgument.php'),
(6781, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Transport/Curl.php', 'wp-includes/Requests/src/Exception/Transport/Curl.php'),
(6782, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception/Transport.php', 'wp-includes/Requests/src/Exception/Transport.php'),
(6783, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Exception.php', 'wp-includes/Requests/src/Exception.php'),
(6784, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/HookManager.php', 'wp-includes/Requests/src/HookManager.php'),
(6785, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Hooks.php', 'wp-includes/Requests/src/Hooks.php'),
(6786, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/IdnaEncoder.php', 'wp-includes/Requests/src/IdnaEncoder.php'),
(6787, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Ipv6.php', 'wp-includes/Requests/src/Ipv6.php'),
(6788, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Iri.php', 'wp-includes/Requests/src/Iri.php'),
(6789, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Port.php', 'wp-includes/Requests/src/Port.php'),
(6790, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Proxy/Http.php', 'wp-includes/Requests/src/Proxy/Http.php'),
(6791, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Proxy.php', 'wp-includes/Requests/src/Proxy.php'),
(6792, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Requests.php', 'wp-includes/Requests/src/Requests.php'),
(6793, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Response/Headers.php', 'wp-includes/Requests/src/Response/Headers.php'),
(6794, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Response.php', 'wp-includes/Requests/src/Response.php'),
(6795, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Session.php', 'wp-includes/Requests/src/Session.php'),
(6796, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Ssl.php', 'wp-includes/Requests/src/Ssl.php'),
(6797, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Transport/Curl.php', 'wp-includes/Requests/src/Transport/Curl.php'),
(6798, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Transport/Fsockopen.php', 'wp-includes/Requests/src/Transport/Fsockopen.php'),
(6799, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Transport.php', 'wp-includes/Requests/src/Transport.php'),
(6800, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php', 'wp-includes/Requests/src/Utility/CaseInsensitiveDictionary.php'),
(6801, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Utility/FilteredIterator.php', 'wp-includes/Requests/src/Utility/FilteredIterator.php'),
(6802, '/home/binawebp/omsrislb.my/wp-includes/Requests/src/Utility/InputValidator.php', 'wp-includes/Requests/src/Utility/InputValidator.php'),
(6803, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/autoloader.php', 'wp-includes/SimplePie/autoloader.php'),
(6804, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Author.php', 'wp-includes/SimplePie/library/SimplePie/Author.php'),
(6805, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Base.php', 'wp-includes/SimplePie/library/SimplePie/Cache/Base.php'),
(6806, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/DB.php', 'wp-includes/SimplePie/library/SimplePie/Cache/DB.php'),
(6807, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/File.php', 'wp-includes/SimplePie/library/SimplePie/Cache/File.php'),
(6808, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Memcache.php', 'wp-includes/SimplePie/library/SimplePie/Cache/Memcache.php'),
(6809, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Memcached.php', 'wp-includes/SimplePie/library/SimplePie/Cache/Memcached.php'),
(6810, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/MySQL.php', 'wp-includes/SimplePie/library/SimplePie/Cache/MySQL.php'),
(6811, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache/Redis.php', 'wp-includes/SimplePie/library/SimplePie/Cache/Redis.php'),
(6812, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Cache.php', 'wp-includes/SimplePie/library/SimplePie/Cache.php'),
(6813, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Caption.php', 'wp-includes/SimplePie/library/SimplePie/Caption.php'),
(6814, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Category.php', 'wp-includes/SimplePie/library/SimplePie/Category.php'),
(6815, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Content/Type/Sniffer.php', 'wp-includes/SimplePie/library/SimplePie/Content/Type/Sniffer.php'),
(6816, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Copyright.php', 'wp-includes/SimplePie/library/SimplePie/Copyright.php'),
(6817, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Core.php', 'wp-includes/SimplePie/library/SimplePie/Core.php'),
(6818, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Credit.php', 'wp-includes/SimplePie/library/SimplePie/Credit.php'),
(6819, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Decode/HTML/Entities.php', 'wp-includes/SimplePie/library/SimplePie/Decode/HTML/Entities.php'),
(6820, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Enclosure.php', 'wp-includes/SimplePie/library/SimplePie/Enclosure.php'),
(6821, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Exception.php', 'wp-includes/SimplePie/library/SimplePie/Exception.php'),
(6822, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/File.php', 'wp-includes/SimplePie/library/SimplePie/File.php'),
(6823, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/HTTP/Parser.php', 'wp-includes/SimplePie/library/SimplePie/HTTP/Parser.php'),
(6824, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/IRI.php', 'wp-includes/SimplePie/library/SimplePie/IRI.php'),
(6825, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Item.php', 'wp-includes/SimplePie/library/SimplePie/Item.php'),
(6826, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Locator.php', 'wp-includes/SimplePie/library/SimplePie/Locator.php'),
(6827, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Misc.php', 'wp-includes/SimplePie/library/SimplePie/Misc.php'),
(6828, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Net/IPv6.php', 'wp-includes/SimplePie/library/SimplePie/Net/IPv6.php'),
(6829, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Parse/Date.php', 'wp-includes/SimplePie/library/SimplePie/Parse/Date.php'),
(6830, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Parser.php', 'wp-includes/SimplePie/library/SimplePie/Parser.php'),
(6831, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Rating.php', 'wp-includes/SimplePie/library/SimplePie/Rating.php'),
(6832, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Registry.php', 'wp-includes/SimplePie/library/SimplePie/Registry.php'),
(6833, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Restriction.php', 'wp-includes/SimplePie/library/SimplePie/Restriction.php'),
(6834, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Sanitize.php', 'wp-includes/SimplePie/library/SimplePie/Sanitize.php'),
(6835, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/Source.php', 'wp-includes/SimplePie/library/SimplePie/Source.php'),
(6836, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/XML/Declaration/Parser.php', 'wp-includes/SimplePie/library/SimplePie/XML/Declaration/Parser.php'),
(6837, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie/gzdecode.php', 'wp-includes/SimplePie/library/SimplePie/gzdecode.php'),
(6838, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/library/SimplePie.php', 'wp-includes/SimplePie/library/SimplePie.php'),
(6839, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Author.php', 'wp-includes/SimplePie/src/Author.php'),
(6840, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Base.php', 'wp-includes/SimplePie/src/Cache/Base.php'),
(6841, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/BaseDataCache.php', 'wp-includes/SimplePie/src/Cache/BaseDataCache.php'),
(6842, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/CallableNameFilter.php', 'wp-includes/SimplePie/src/Cache/CallableNameFilter.php'),
(6843, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/DB.php', 'wp-includes/SimplePie/src/Cache/DB.php'),
(6844, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/DataCache.php', 'wp-includes/SimplePie/src/Cache/DataCache.php'),
(6845, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/File.php', 'wp-includes/SimplePie/src/Cache/File.php'),
(6846, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Memcache.php', 'wp-includes/SimplePie/src/Cache/Memcache.php'),
(6847, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Memcached.php', 'wp-includes/SimplePie/src/Cache/Memcached.php'),
(6848, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/MySQL.php', 'wp-includes/SimplePie/src/Cache/MySQL.php'),
(6849, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/NameFilter.php', 'wp-includes/SimplePie/src/Cache/NameFilter.php'),
(6850, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Psr16.php', 'wp-includes/SimplePie/src/Cache/Psr16.php'),
(6851, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache/Redis.php', 'wp-includes/SimplePie/src/Cache/Redis.php'),
(6852, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Cache.php', 'wp-includes/SimplePie/src/Cache.php'),
(6853, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Caption.php', 'wp-includes/SimplePie/src/Caption.php'),
(6854, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Category.php', 'wp-includes/SimplePie/src/Category.php'),
(6855, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Content/Type/Sniffer.php', 'wp-includes/SimplePie/src/Content/Type/Sniffer.php'),
(6856, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Copyright.php', 'wp-includes/SimplePie/src/Copyright.php'),
(6857, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Credit.php', 'wp-includes/SimplePie/src/Credit.php'),
(6858, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Enclosure.php', 'wp-includes/SimplePie/src/Enclosure.php'),
(6859, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Exception.php', 'wp-includes/SimplePie/src/Exception.php'),
(6860, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/File.php', 'wp-includes/SimplePie/src/File.php'),
(6861, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Gzdecode.php', 'wp-includes/SimplePie/src/Gzdecode.php'),
(6862, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Client.php', 'wp-includes/SimplePie/src/HTTP/Client.php'),
(6863, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/ClientException.php', 'wp-includes/SimplePie/src/HTTP/ClientException.php'),
(6864, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/FileClient.php', 'wp-includes/SimplePie/src/HTTP/FileClient.php'),
(6865, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Parser.php', 'wp-includes/SimplePie/src/HTTP/Parser.php'),
(6866, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Psr18Client.php', 'wp-includes/SimplePie/src/HTTP/Psr18Client.php'),
(6867, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Psr7Response.php', 'wp-includes/SimplePie/src/HTTP/Psr7Response.php'),
(6868, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/RawTextResponse.php', 'wp-includes/SimplePie/src/HTTP/RawTextResponse.php'),
(6869, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/HTTP/Response.php', 'wp-includes/SimplePie/src/HTTP/Response.php'),
(6870, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/IRI.php', 'wp-includes/SimplePie/src/IRI.php'),
(6871, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Item.php', 'wp-includes/SimplePie/src/Item.php'),
(6872, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Locator.php', 'wp-includes/SimplePie/src/Locator.php'),
(6873, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Misc.php', 'wp-includes/SimplePie/src/Misc.php'),
(6874, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Net/IPv6.php', 'wp-includes/SimplePie/src/Net/IPv6.php'),
(6875, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Parse/Date.php', 'wp-includes/SimplePie/src/Parse/Date.php'),
(6876, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Parser.php', 'wp-includes/SimplePie/src/Parser.php'),
(6877, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Rating.php', 'wp-includes/SimplePie/src/Rating.php'),
(6878, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Registry.php', 'wp-includes/SimplePie/src/Registry.php'),
(6879, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/RegistryAware.php', 'wp-includes/SimplePie/src/RegistryAware.php'),
(6880, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Restriction.php', 'wp-includes/SimplePie/src/Restriction.php'),
(6881, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Sanitize.php', 'wp-includes/SimplePie/src/Sanitize.php'),
(6882, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/SimplePie.php', 'wp-includes/SimplePie/src/SimplePie.php'),
(6883, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/Source.php', 'wp-includes/SimplePie/src/Source.php'),
(6884, '/home/binawebp/omsrislb.my/wp-includes/SimplePie/src/XML/Declaration/Parser.php', 'wp-includes/SimplePie/src/XML/Declaration/Parser.php'),
(6885, '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/native.php', 'wp-includes/Text/Diff/Engine/native.php'),
(6886, '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/shell.php', 'wp-includes/Text/Diff/Engine/shell.php'),
(6887, '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/string.php', 'wp-includes/Text/Diff/Engine/string.php'),
(6888, '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Engine/xdiff.php', 'wp-includes/Text/Diff/Engine/xdiff.php'),
(6889, '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Renderer/inline.php', 'wp-includes/Text/Diff/Renderer/inline.php'),
(6890, '/home/binawebp/omsrislb.my/wp-includes/Text/Diff/Renderer.php', 'wp-includes/Text/Diff/Renderer.php'),
(6891, '/home/binawebp/omsrislb.my/wp-includes/Text/Diff.php', 'wp-includes/Text/Diff.php'),
(6892, '/home/binawebp/omsrislb.my/wp-includes/Text/Exception.php', 'wp-includes/Text/Exception.php'),
(6893, '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-abilities-registry.php', 'wp-includes/abilities-api/class-wp-abilities-registry.php'),
(6894, '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-ability-categories-registry.php', 'wp-includes/abilities-api/class-wp-ability-categories-registry.php'),
(6895, '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-ability-category.php', 'wp-includes/abilities-api/class-wp-ability-category.php'),
(6896, '/home/binawebp/omsrislb.my/wp-includes/abilities-api/class-wp-ability.php', 'wp-includes/abilities-api/class-wp-ability.php'),
(6897, '/home/binawebp/omsrislb.my/wp-includes/abilities-api.php', 'wp-includes/abilities-api.php'),
(6898, '/home/binawebp/omsrislb.my/wp-includes/abilities.php', 'wp-includes/abilities.php'),
(6899, '/home/binawebp/omsrislb.my/wp-includes/admin-bar.php', 'wp-includes/admin-bar.php'),
(6900, '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-packages.min.php', 'wp-includes/assets/script-loader-packages.min.php'),
(6901, '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-packages.php', 'wp-includes/assets/script-loader-packages.php'),
(6902, '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-entry.min.php', 'wp-includes/assets/script-loader-react-refresh-entry.min.php'),
(6903, '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-entry.php', 'wp-includes/assets/script-loader-react-refresh-entry.php'),
(6904, '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-runtime.min.php', 'wp-includes/assets/script-loader-react-refresh-runtime.min.php'),
(6905, '/home/binawebp/omsrislb.my/wp-includes/assets/script-loader-react-refresh-runtime.php', 'wp-includes/assets/script-loader-react-refresh-runtime.php'),
(6906, '/home/binawebp/omsrislb.my/wp-includes/assets/script-modules-packages.min.php', 'wp-includes/assets/script-modules-packages.min.php'),
(6907, '/home/binawebp/omsrislb.my/wp-includes/assets/script-modules-packages.php', 'wp-includes/assets/script-modules-packages.php'),
(6908, '/home/binawebp/omsrislb.my/wp-includes/atomlib.php', 'wp-includes/atomlib.php'),
(6909, '/home/binawebp/omsrislb.my/wp-includes/author-template.php', 'wp-includes/author-template.php'),
(6910, '/home/binawebp/omsrislb.my/wp-includes/block-bindings/pattern-overrides.php', 'wp-includes/block-bindings/pattern-overrides.php'),
(6911, '/home/binawebp/omsrislb.my/wp-includes/block-bindings/post-data.php', 'wp-includes/block-bindings/post-data.php'),
(6912, '/home/binawebp/omsrislb.my/wp-includes/block-bindings/post-meta.php', 'wp-includes/block-bindings/post-meta.php'),
(6913, '/home/binawebp/omsrislb.my/wp-includes/block-bindings/term-data.php', 'wp-includes/block-bindings/term-data.php'),
(6914, '/home/binawebp/omsrislb.my/wp-includes/block-bindings.php', 'wp-includes/block-bindings.php'),
(6915, '/home/binawebp/omsrislb.my/wp-includes/block-editor.php', 'wp-includes/block-editor.php'),
(6916, '/home/binawebp/omsrislb.my/wp-includes/block-i18n.json', 'wp-includes/block-i18n.json'),
(6917, '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-grid-posts.php', 'wp-includes/block-patterns/query-grid-posts.php'),
(6918, '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-large-title-posts.php', 'wp-includes/block-patterns/query-large-title-posts.php'),
(6919, '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-medium-posts.php', 'wp-includes/block-patterns/query-medium-posts.php'),
(6920, '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-offset-posts.php', 'wp-includes/block-patterns/query-offset-posts.php'),
(6921, '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-small-posts.php', 'wp-includes/block-patterns/query-small-posts.php'),
(6922, '/home/binawebp/omsrislb.my/wp-includes/block-patterns/query-standard-posts.php', 'wp-includes/block-patterns/query-standard-posts.php'),
(6923, '/home/binawebp/omsrislb.my/wp-includes/block-patterns/social-links-shared-background-color.php', 'wp-includes/block-patterns/social-links-shared-background-color.php'),
(6924, '/home/binawebp/omsrislb.my/wp-includes/block-patterns.php', 'wp-includes/block-patterns.php'),
(6925, '/home/binawebp/omsrislb.my/wp-includes/block-supports/align.php', 'wp-includes/block-supports/align.php'),
(6926, '/home/binawebp/omsrislb.my/wp-includes/block-supports/aria-label.php', 'wp-includes/block-supports/aria-label.php'),
(6927, '/home/binawebp/omsrislb.my/wp-includes/block-supports/background.php', 'wp-includes/block-supports/background.php'),
(6928, '/home/binawebp/omsrislb.my/wp-includes/block-supports/block-style-variations.php', 'wp-includes/block-supports/block-style-variations.php'),
(6929, '/home/binawebp/omsrislb.my/wp-includes/block-supports/block-visibility.php', 'wp-includes/block-supports/block-visibility.php'),
(6930, '/home/binawebp/omsrislb.my/wp-includes/block-supports/border.php', 'wp-includes/block-supports/border.php'),
(6931, '/home/binawebp/omsrislb.my/wp-includes/block-supports/colors.php', 'wp-includes/block-supports/colors.php'),
(6932, '/home/binawebp/omsrislb.my/wp-includes/block-supports/custom-classname.php', 'wp-includes/block-supports/custom-classname.php'),
(6933, '/home/binawebp/omsrislb.my/wp-includes/block-supports/dimensions.php', 'wp-includes/block-supports/dimensions.php'),
(6934, '/home/binawebp/omsrislb.my/wp-includes/block-supports/duotone.php', 'wp-includes/block-supports/duotone.php'),
(6935, '/home/binawebp/omsrislb.my/wp-includes/block-supports/elements.php', 'wp-includes/block-supports/elements.php'),
(6936, '/home/binawebp/omsrislb.my/wp-includes/block-supports/generated-classname.php', 'wp-includes/block-supports/generated-classname.php'),
(6937, '/home/binawebp/omsrislb.my/wp-includes/block-supports/layout.php', 'wp-includes/block-supports/layout.php'),
(6938, '/home/binawebp/omsrislb.my/wp-includes/block-supports/position.php', 'wp-includes/block-supports/position.php'),
(6939, '/home/binawebp/omsrislb.my/wp-includes/block-supports/settings.php', 'wp-includes/block-supports/settings.php'),
(6940, '/home/binawebp/omsrislb.my/wp-includes/block-supports/shadow.php', 'wp-includes/block-supports/shadow.php'),
(6941, '/home/binawebp/omsrislb.my/wp-includes/block-supports/spacing.php', 'wp-includes/block-supports/spacing.php'),
(6942, '/home/binawebp/omsrislb.my/wp-includes/block-supports/typography.php', 'wp-includes/block-supports/typography.php'),
(6943, '/home/binawebp/omsrislb.my/wp-includes/block-supports/utils.php', 'wp-includes/block-supports/utils.php'),
(6944, '/home/binawebp/omsrislb.my/wp-includes/block-template-utils.php', 'wp-includes/block-template-utils.php'),
(6945, '/home/binawebp/omsrislb.my/wp-includes/block-template.php', 'wp-includes/block-template.php'),
(6946, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/block.json', 'wp-includes/blocks/accordion/block.json'),
(6947, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style-rtl.css', 'wp-includes/blocks/accordion/style-rtl.css'),
(6948, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style-rtl.min.css', 'wp-includes/blocks/accordion/style-rtl.min.css'),
(6949, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style.css', 'wp-includes/blocks/accordion/style.css'),
(6950, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion/style.min.css', 'wp-includes/blocks/accordion/style.min.css'),
(6951, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/block.json', 'wp-includes/blocks/accordion-heading/block.json'),
(6952, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style-rtl.css', 'wp-includes/blocks/accordion-heading/style-rtl.css'),
(6953, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style-rtl.min.css', 'wp-includes/blocks/accordion-heading/style-rtl.min.css'),
(6954, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style.css', 'wp-includes/blocks/accordion-heading/style.css'),
(6955, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-heading/style.min.css', 'wp-includes/blocks/accordion-heading/style.min.css'),
(6956, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/block.json', 'wp-includes/blocks/accordion-item/block.json'),
(6957, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style-rtl.css', 'wp-includes/blocks/accordion-item/style-rtl.css'),
(6958, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style-rtl.min.css', 'wp-includes/blocks/accordion-item/style-rtl.min.css'),
(6959, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style.css', 'wp-includes/blocks/accordion-item/style.css'),
(6960, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item/style.min.css', 'wp-includes/blocks/accordion-item/style.min.css'),
(6961, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-item.php', 'wp-includes/blocks/accordion-item.php'),
(6962, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/block.json', 'wp-includes/blocks/accordion-panel/block.json'),
(6963, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style-rtl.css', 'wp-includes/blocks/accordion-panel/style-rtl.css'),
(6964, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style-rtl.min.css', 'wp-includes/blocks/accordion-panel/style-rtl.min.css'),
(6965, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style.css', 'wp-includes/blocks/accordion-panel/style.css'),
(6966, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion-panel/style.min.css', 'wp-includes/blocks/accordion-panel/style.min.css'),
(6967, '/home/binawebp/omsrislb.my/wp-includes/blocks/accordion.php', 'wp-includes/blocks/accordion.php'),
(6968, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/block.json', 'wp-includes/blocks/archives/block.json'),
(6969, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor-rtl.css', 'wp-includes/blocks/archives/editor-rtl.css'),
(6970, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor-rtl.min.css', 'wp-includes/blocks/archives/editor-rtl.min.css'),
(6971, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor.css', 'wp-includes/blocks/archives/editor.css'),
(6972, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/editor.min.css', 'wp-includes/blocks/archives/editor.min.css'),
(6973, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style-rtl.css', 'wp-includes/blocks/archives/style-rtl.css'),
(6974, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style-rtl.min.css', 'wp-includes/blocks/archives/style-rtl.min.css'),
(6975, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style.css', 'wp-includes/blocks/archives/style.css'),
(6976, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives/style.min.css', 'wp-includes/blocks/archives/style.min.css'),
(6977, '/home/binawebp/omsrislb.my/wp-includes/blocks/archives.php', 'wp-includes/blocks/archives.php'),
(6978, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/block.json', 'wp-includes/blocks/audio/block.json'),
(6979, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor-rtl.css', 'wp-includes/blocks/audio/editor-rtl.css'),
(6980, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor-rtl.min.css', 'wp-includes/blocks/audio/editor-rtl.min.css'),
(6981, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor.css', 'wp-includes/blocks/audio/editor.css'),
(6982, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/editor.min.css', 'wp-includes/blocks/audio/editor.min.css'),
(6983, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style-rtl.css', 'wp-includes/blocks/audio/style-rtl.css'),
(6984, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style-rtl.min.css', 'wp-includes/blocks/audio/style-rtl.min.css'),
(6985, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style.css', 'wp-includes/blocks/audio/style.css'),
(6986, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/style.min.css', 'wp-includes/blocks/audio/style.min.css'),
(6987, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme-rtl.css', 'wp-includes/blocks/audio/theme-rtl.css'),
(6988, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme-rtl.min.css', 'wp-includes/blocks/audio/theme-rtl.min.css'),
(6989, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme.css', 'wp-includes/blocks/audio/theme.css'),
(6990, '/home/binawebp/omsrislb.my/wp-includes/blocks/audio/theme.min.css', 'wp-includes/blocks/audio/theme.min.css'),
(6991, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/block.json', 'wp-includes/blocks/avatar/block.json'),
(6992, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor-rtl.css', 'wp-includes/blocks/avatar/editor-rtl.css'),
(6993, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor-rtl.min.css', 'wp-includes/blocks/avatar/editor-rtl.min.css'),
(6994, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor.css', 'wp-includes/blocks/avatar/editor.css'),
(6995, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/editor.min.css', 'wp-includes/blocks/avatar/editor.min.css'),
(6996, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style-rtl.css', 'wp-includes/blocks/avatar/style-rtl.css'),
(6997, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style-rtl.min.css', 'wp-includes/blocks/avatar/style-rtl.min.css'),
(6998, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style.css', 'wp-includes/blocks/avatar/style.css'),
(6999, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar/style.min.css', 'wp-includes/blocks/avatar/style.min.css'),
(7000, '/home/binawebp/omsrislb.my/wp-includes/blocks/avatar.php', 'wp-includes/blocks/avatar.php'),
(7001, '/home/binawebp/omsrislb.my/wp-includes/blocks/block/block.json', 'wp-includes/blocks/block/block.json'),
(7002, '/home/binawebp/omsrislb.my/wp-includes/blocks/block.php', 'wp-includes/blocks/block.php'),
(7003, '/home/binawebp/omsrislb.my/wp-includes/blocks/blocks-json.php', 'wp-includes/blocks/blocks-json.php'),
(7004, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/block.json', 'wp-includes/blocks/button/block.json'),
(7005, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor-rtl.css', 'wp-includes/blocks/button/editor-rtl.css'),
(7006, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor-rtl.min.css', 'wp-includes/blocks/button/editor-rtl.min.css'),
(7007, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor.css', 'wp-includes/blocks/button/editor.css'),
(7008, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/editor.min.css', 'wp-includes/blocks/button/editor.min.css'),
(7009, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style-rtl.css', 'wp-includes/blocks/button/style-rtl.css'),
(7010, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style-rtl.min.css', 'wp-includes/blocks/button/style-rtl.min.css'),
(7011, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style.css', 'wp-includes/blocks/button/style.css'),
(7012, '/home/binawebp/omsrislb.my/wp-includes/blocks/button/style.min.css', 'wp-includes/blocks/button/style.min.css'),
(7013, '/home/binawebp/omsrislb.my/wp-includes/blocks/button.php', 'wp-includes/blocks/button.php'),
(7014, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/block.json', 'wp-includes/blocks/buttons/block.json'),
(7015, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor-rtl.css', 'wp-includes/blocks/buttons/editor-rtl.css'),
(7016, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor-rtl.min.css', 'wp-includes/blocks/buttons/editor-rtl.min.css'),
(7017, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor.css', 'wp-includes/blocks/buttons/editor.css'),
(7018, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/editor.min.css', 'wp-includes/blocks/buttons/editor.min.css'),
(7019, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style-rtl.css', 'wp-includes/blocks/buttons/style-rtl.css'),
(7020, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style-rtl.min.css', 'wp-includes/blocks/buttons/style-rtl.min.css'),
(7021, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style.css', 'wp-includes/blocks/buttons/style.css'),
(7022, '/home/binawebp/omsrislb.my/wp-includes/blocks/buttons/style.min.css', 'wp-includes/blocks/buttons/style.min.css'),
(7023, '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/block.json', 'wp-includes/blocks/calendar/block.json'),
(7024, '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style-rtl.css', 'wp-includes/blocks/calendar/style-rtl.css'),
(7025, '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style-rtl.min.css', 'wp-includes/blocks/calendar/style-rtl.min.css'),
(7026, '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style.css', 'wp-includes/blocks/calendar/style.css'),
(7027, '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar/style.min.css', 'wp-includes/blocks/calendar/style.min.css'),
(7028, '/home/binawebp/omsrislb.my/wp-includes/blocks/calendar.php', 'wp-includes/blocks/calendar.php'),
(7029, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/block.json', 'wp-includes/blocks/categories/block.json'),
(7030, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor-rtl.css', 'wp-includes/blocks/categories/editor-rtl.css'),
(7031, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor-rtl.min.css', 'wp-includes/blocks/categories/editor-rtl.min.css'),
(7032, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor.css', 'wp-includes/blocks/categories/editor.css'),
(7033, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/editor.min.css', 'wp-includes/blocks/categories/editor.min.css'),
(7034, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style-rtl.css', 'wp-includes/blocks/categories/style-rtl.css'),
(7035, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style-rtl.min.css', 'wp-includes/blocks/categories/style-rtl.min.css'),
(7036, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style.css', 'wp-includes/blocks/categories/style.css'),
(7037, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories/style.min.css', 'wp-includes/blocks/categories/style.min.css'),
(7038, '/home/binawebp/omsrislb.my/wp-includes/blocks/categories.php', 'wp-includes/blocks/categories.php'),
(7039, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/block.json', 'wp-includes/blocks/code/block.json'),
(7040, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor-rtl.css', 'wp-includes/blocks/code/editor-rtl.css'),
(7041, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor-rtl.min.css', 'wp-includes/blocks/code/editor-rtl.min.css'),
(7042, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor.css', 'wp-includes/blocks/code/editor.css'),
(7043, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/editor.min.css', 'wp-includes/blocks/code/editor.min.css'),
(7044, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style-rtl.css', 'wp-includes/blocks/code/style-rtl.css'),
(7045, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style-rtl.min.css', 'wp-includes/blocks/code/style-rtl.min.css'),
(7046, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style.css', 'wp-includes/blocks/code/style.css'),
(7047, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/style.min.css', 'wp-includes/blocks/code/style.min.css'),
(7048, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme-rtl.css', 'wp-includes/blocks/code/theme-rtl.css'),
(7049, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme-rtl.min.css', 'wp-includes/blocks/code/theme-rtl.min.css'),
(7050, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme.css', 'wp-includes/blocks/code/theme.css'),
(7051, '/home/binawebp/omsrislb.my/wp-includes/blocks/code/theme.min.css', 'wp-includes/blocks/code/theme.min.css'),
(7052, '/home/binawebp/omsrislb.my/wp-includes/blocks/column/block.json', 'wp-includes/blocks/column/block.json'),
(7053, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/block.json', 'wp-includes/blocks/columns/block.json'),
(7054, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor-rtl.css', 'wp-includes/blocks/columns/editor-rtl.css');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(7055, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor-rtl.min.css', 'wp-includes/blocks/columns/editor-rtl.min.css'),
(7056, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor.css', 'wp-includes/blocks/columns/editor.css'),
(7057, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/editor.min.css', 'wp-includes/blocks/columns/editor.min.css'),
(7058, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style-rtl.css', 'wp-includes/blocks/columns/style-rtl.css'),
(7059, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style-rtl.min.css', 'wp-includes/blocks/columns/style-rtl.min.css'),
(7060, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style.css', 'wp-includes/blocks/columns/style.css'),
(7061, '/home/binawebp/omsrislb.my/wp-includes/blocks/columns/style.min.css', 'wp-includes/blocks/columns/style.min.css'),
(7062, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/block.json', 'wp-includes/blocks/comment-author-name/block.json'),
(7063, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style-rtl.css', 'wp-includes/blocks/comment-author-name/style-rtl.css'),
(7064, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style-rtl.min.css', 'wp-includes/blocks/comment-author-name/style-rtl.min.css'),
(7065, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style.css', 'wp-includes/blocks/comment-author-name/style.css'),
(7066, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name/style.min.css', 'wp-includes/blocks/comment-author-name/style.min.css'),
(7067, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-author-name.php', 'wp-includes/blocks/comment-author-name.php'),
(7068, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/block.json', 'wp-includes/blocks/comment-content/block.json'),
(7069, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style-rtl.css', 'wp-includes/blocks/comment-content/style-rtl.css'),
(7070, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style-rtl.min.css', 'wp-includes/blocks/comment-content/style-rtl.min.css'),
(7071, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style.css', 'wp-includes/blocks/comment-content/style.css'),
(7072, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content/style.min.css', 'wp-includes/blocks/comment-content/style.min.css'),
(7073, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-content.php', 'wp-includes/blocks/comment-content.php'),
(7074, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/block.json', 'wp-includes/blocks/comment-date/block.json'),
(7075, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style-rtl.css', 'wp-includes/blocks/comment-date/style-rtl.css'),
(7076, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style-rtl.min.css', 'wp-includes/blocks/comment-date/style-rtl.min.css'),
(7077, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style.css', 'wp-includes/blocks/comment-date/style.css'),
(7078, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date/style.min.css', 'wp-includes/blocks/comment-date/style.min.css'),
(7079, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-date.php', 'wp-includes/blocks/comment-date.php'),
(7080, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/block.json', 'wp-includes/blocks/comment-edit-link/block.json'),
(7081, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style-rtl.css', 'wp-includes/blocks/comment-edit-link/style-rtl.css'),
(7082, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style-rtl.min.css', 'wp-includes/blocks/comment-edit-link/style-rtl.min.css'),
(7083, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style.css', 'wp-includes/blocks/comment-edit-link/style.css'),
(7084, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link/style.min.css', 'wp-includes/blocks/comment-edit-link/style.min.css'),
(7085, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-edit-link.php', 'wp-includes/blocks/comment-edit-link.php'),
(7086, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/block.json', 'wp-includes/blocks/comment-reply-link/block.json'),
(7087, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style-rtl.css', 'wp-includes/blocks/comment-reply-link/style-rtl.css'),
(7088, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style-rtl.min.css', 'wp-includes/blocks/comment-reply-link/style-rtl.min.css'),
(7089, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style.css', 'wp-includes/blocks/comment-reply-link/style.css'),
(7090, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link/style.min.css', 'wp-includes/blocks/comment-reply-link/style.min.css'),
(7091, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-reply-link.php', 'wp-includes/blocks/comment-reply-link.php'),
(7092, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/block.json', 'wp-includes/blocks/comment-template/block.json'),
(7093, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style-rtl.css', 'wp-includes/blocks/comment-template/style-rtl.css'),
(7094, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style-rtl.min.css', 'wp-includes/blocks/comment-template/style-rtl.min.css'),
(7095, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style.css', 'wp-includes/blocks/comment-template/style.css'),
(7096, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template/style.min.css', 'wp-includes/blocks/comment-template/style.min.css'),
(7097, '/home/binawebp/omsrislb.my/wp-includes/blocks/comment-template.php', 'wp-includes/blocks/comment-template.php'),
(7098, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/block.json', 'wp-includes/blocks/comments/block.json'),
(7099, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor-rtl.css', 'wp-includes/blocks/comments/editor-rtl.css'),
(7100, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor-rtl.min.css', 'wp-includes/blocks/comments/editor-rtl.min.css'),
(7101, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor.css', 'wp-includes/blocks/comments/editor.css'),
(7102, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/editor.min.css', 'wp-includes/blocks/comments/editor.min.css'),
(7103, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style-rtl.css', 'wp-includes/blocks/comments/style-rtl.css'),
(7104, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style-rtl.min.css', 'wp-includes/blocks/comments/style-rtl.min.css'),
(7105, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style.css', 'wp-includes/blocks/comments/style.css'),
(7106, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments/style.min.css', 'wp-includes/blocks/comments/style.min.css'),
(7107, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/block.json', 'wp-includes/blocks/comments-pagination/block.json'),
(7108, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor-rtl.css', 'wp-includes/blocks/comments-pagination/editor-rtl.css'),
(7109, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor-rtl.min.css', 'wp-includes/blocks/comments-pagination/editor-rtl.min.css'),
(7110, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor.css', 'wp-includes/blocks/comments-pagination/editor.css'),
(7111, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/editor.min.css', 'wp-includes/blocks/comments-pagination/editor.min.css'),
(7112, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style-rtl.css', 'wp-includes/blocks/comments-pagination/style-rtl.css'),
(7113, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style-rtl.min.css', 'wp-includes/blocks/comments-pagination/style-rtl.min.css'),
(7114, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style.css', 'wp-includes/blocks/comments-pagination/style.css'),
(7115, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination/style.min.css', 'wp-includes/blocks/comments-pagination/style.min.css'),
(7116, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-next/block.json', 'wp-includes/blocks/comments-pagination-next/block.json'),
(7117, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-next.php', 'wp-includes/blocks/comments-pagination-next.php'),
(7118, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/block.json', 'wp-includes/blocks/comments-pagination-numbers/block.json'),
(7119, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css', 'wp-includes/blocks/comments-pagination-numbers/editor-rtl.css'),
(7120, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css', 'wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css'),
(7121, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor.css', 'wp-includes/blocks/comments-pagination-numbers/editor.css'),
(7122, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers/editor.min.css', 'wp-includes/blocks/comments-pagination-numbers/editor.min.css'),
(7123, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-numbers.php', 'wp-includes/blocks/comments-pagination-numbers.php'),
(7124, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-previous/block.json', 'wp-includes/blocks/comments-pagination-previous/block.json'),
(7125, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination-previous.php', 'wp-includes/blocks/comments-pagination-previous.php'),
(7126, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-pagination.php', 'wp-includes/blocks/comments-pagination.php'),
(7127, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/block.json', 'wp-includes/blocks/comments-title/block.json'),
(7128, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor-rtl.css', 'wp-includes/blocks/comments-title/editor-rtl.css'),
(7129, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor-rtl.min.css', 'wp-includes/blocks/comments-title/editor-rtl.min.css'),
(7130, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor.css', 'wp-includes/blocks/comments-title/editor.css'),
(7131, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title/editor.min.css', 'wp-includes/blocks/comments-title/editor.min.css'),
(7132, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments-title.php', 'wp-includes/blocks/comments-title.php'),
(7133, '/home/binawebp/omsrislb.my/wp-includes/blocks/comments.php', 'wp-includes/blocks/comments.php'),
(7134, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/block.json', 'wp-includes/blocks/cover/block.json'),
(7135, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor-rtl.css', 'wp-includes/blocks/cover/editor-rtl.css'),
(7136, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor-rtl.min.css', 'wp-includes/blocks/cover/editor-rtl.min.css'),
(7137, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor.css', 'wp-includes/blocks/cover/editor.css'),
(7138, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/editor.min.css', 'wp-includes/blocks/cover/editor.min.css'),
(7139, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style-rtl.css', 'wp-includes/blocks/cover/style-rtl.css'),
(7140, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style-rtl.min.css', 'wp-includes/blocks/cover/style-rtl.min.css'),
(7141, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style.css', 'wp-includes/blocks/cover/style.css'),
(7142, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover/style.min.css', 'wp-includes/blocks/cover/style.min.css'),
(7143, '/home/binawebp/omsrislb.my/wp-includes/blocks/cover.php', 'wp-includes/blocks/cover.php'),
(7144, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/block.json', 'wp-includes/blocks/details/block.json'),
(7145, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor-rtl.css', 'wp-includes/blocks/details/editor-rtl.css'),
(7146, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor-rtl.min.css', 'wp-includes/blocks/details/editor-rtl.min.css'),
(7147, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor.css', 'wp-includes/blocks/details/editor.css'),
(7148, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/editor.min.css', 'wp-includes/blocks/details/editor.min.css'),
(7149, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style-rtl.css', 'wp-includes/blocks/details/style-rtl.css'),
(7150, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style-rtl.min.css', 'wp-includes/blocks/details/style-rtl.min.css'),
(7151, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style.css', 'wp-includes/blocks/details/style.css'),
(7152, '/home/binawebp/omsrislb.my/wp-includes/blocks/details/style.min.css', 'wp-includes/blocks/details/style.min.css'),
(7153, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/block.json', 'wp-includes/blocks/embed/block.json'),
(7154, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor-rtl.css', 'wp-includes/blocks/embed/editor-rtl.css'),
(7155, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor-rtl.min.css', 'wp-includes/blocks/embed/editor-rtl.min.css'),
(7156, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor.css', 'wp-includes/blocks/embed/editor.css'),
(7157, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/editor.min.css', 'wp-includes/blocks/embed/editor.min.css'),
(7158, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style-rtl.css', 'wp-includes/blocks/embed/style-rtl.css'),
(7159, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style-rtl.min.css', 'wp-includes/blocks/embed/style-rtl.min.css'),
(7160, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style.css', 'wp-includes/blocks/embed/style.css'),
(7161, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/style.min.css', 'wp-includes/blocks/embed/style.min.css'),
(7162, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme-rtl.css', 'wp-includes/blocks/embed/theme-rtl.css'),
(7163, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme-rtl.min.css', 'wp-includes/blocks/embed/theme-rtl.min.css'),
(7164, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme.css', 'wp-includes/blocks/embed/theme.css'),
(7165, '/home/binawebp/omsrislb.my/wp-includes/blocks/embed/theme.min.css', 'wp-includes/blocks/embed/theme.min.css'),
(7166, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/block.json', 'wp-includes/blocks/file/block.json'),
(7167, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor-rtl.css', 'wp-includes/blocks/file/editor-rtl.css'),
(7168, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor-rtl.min.css', 'wp-includes/blocks/file/editor-rtl.min.css'),
(7169, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor.css', 'wp-includes/blocks/file/editor.css'),
(7170, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/editor.min.css', 'wp-includes/blocks/file/editor.min.css'),
(7171, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style-rtl.css', 'wp-includes/blocks/file/style-rtl.css'),
(7172, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style-rtl.min.css', 'wp-includes/blocks/file/style-rtl.min.css'),
(7173, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style.css', 'wp-includes/blocks/file/style.css'),
(7174, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/style.min.css', 'wp-includes/blocks/file/style.min.css'),
(7175, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.asset.php', 'wp-includes/blocks/file/view.asset.php'),
(7176, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.js', 'wp-includes/blocks/file/view.js'),
(7177, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.min.asset.php', 'wp-includes/blocks/file/view.min.asset.php'),
(7178, '/home/binawebp/omsrislb.my/wp-includes/blocks/file/view.min.js', 'wp-includes/blocks/file/view.min.js'),
(7179, '/home/binawebp/omsrislb.my/wp-includes/blocks/file.php', 'wp-includes/blocks/file.php'),
(7180, '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/block.json', 'wp-includes/blocks/footnotes/block.json'),
(7181, '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style-rtl.css', 'wp-includes/blocks/footnotes/style-rtl.css'),
(7182, '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style-rtl.min.css', 'wp-includes/blocks/footnotes/style-rtl.min.css'),
(7183, '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style.css', 'wp-includes/blocks/footnotes/style.css'),
(7184, '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes/style.min.css', 'wp-includes/blocks/footnotes/style.min.css'),
(7185, '/home/binawebp/omsrislb.my/wp-includes/blocks/footnotes.php', 'wp-includes/blocks/footnotes.php'),
(7186, '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/block.json', 'wp-includes/blocks/freeform/block.json'),
(7187, '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor-rtl.css', 'wp-includes/blocks/freeform/editor-rtl.css'),
(7188, '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor-rtl.min.css', 'wp-includes/blocks/freeform/editor-rtl.min.css'),
(7189, '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor.css', 'wp-includes/blocks/freeform/editor.css'),
(7190, '/home/binawebp/omsrislb.my/wp-includes/blocks/freeform/editor.min.css', 'wp-includes/blocks/freeform/editor.min.css'),
(7191, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/block.json', 'wp-includes/blocks/gallery/block.json'),
(7192, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor-rtl.css', 'wp-includes/blocks/gallery/editor-rtl.css'),
(7193, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor-rtl.min.css', 'wp-includes/blocks/gallery/editor-rtl.min.css'),
(7194, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor.css', 'wp-includes/blocks/gallery/editor.css'),
(7195, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/editor.min.css', 'wp-includes/blocks/gallery/editor.min.css'),
(7196, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style-rtl.css', 'wp-includes/blocks/gallery/style-rtl.css'),
(7197, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style-rtl.min.css', 'wp-includes/blocks/gallery/style-rtl.min.css'),
(7198, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style.css', 'wp-includes/blocks/gallery/style.css'),
(7199, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/style.min.css', 'wp-includes/blocks/gallery/style.min.css'),
(7200, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme-rtl.css', 'wp-includes/blocks/gallery/theme-rtl.css'),
(7201, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme-rtl.min.css', 'wp-includes/blocks/gallery/theme-rtl.min.css'),
(7202, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme.css', 'wp-includes/blocks/gallery/theme.css'),
(7203, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery/theme.min.css', 'wp-includes/blocks/gallery/theme.min.css'),
(7204, '/home/binawebp/omsrislb.my/wp-includes/blocks/gallery.php', 'wp-includes/blocks/gallery.php'),
(7205, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/block.json', 'wp-includes/blocks/group/block.json'),
(7206, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor-rtl.css', 'wp-includes/blocks/group/editor-rtl.css'),
(7207, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor-rtl.min.css', 'wp-includes/blocks/group/editor-rtl.min.css'),
(7208, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor.css', 'wp-includes/blocks/group/editor.css'),
(7209, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/editor.min.css', 'wp-includes/blocks/group/editor.min.css'),
(7210, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style-rtl.css', 'wp-includes/blocks/group/style-rtl.css'),
(7211, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style-rtl.min.css', 'wp-includes/blocks/group/style-rtl.min.css'),
(7212, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style.css', 'wp-includes/blocks/group/style.css'),
(7213, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/style.min.css', 'wp-includes/blocks/group/style.min.css'),
(7214, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme-rtl.css', 'wp-includes/blocks/group/theme-rtl.css'),
(7215, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme-rtl.min.css', 'wp-includes/blocks/group/theme-rtl.min.css'),
(7216, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme.css', 'wp-includes/blocks/group/theme.css'),
(7217, '/home/binawebp/omsrislb.my/wp-includes/blocks/group/theme.min.css', 'wp-includes/blocks/group/theme.min.css'),
(7218, '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/block.json', 'wp-includes/blocks/heading/block.json'),
(7219, '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style-rtl.css', 'wp-includes/blocks/heading/style-rtl.css'),
(7220, '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style-rtl.min.css', 'wp-includes/blocks/heading/style-rtl.min.css'),
(7221, '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style.css', 'wp-includes/blocks/heading/style.css'),
(7222, '/home/binawebp/omsrislb.my/wp-includes/blocks/heading/style.min.css', 'wp-includes/blocks/heading/style.min.css'),
(7223, '/home/binawebp/omsrislb.my/wp-includes/blocks/heading.php', 'wp-includes/blocks/heading.php'),
(7224, '/home/binawebp/omsrislb.my/wp-includes/blocks/home-link/block.json', 'wp-includes/blocks/home-link/block.json'),
(7225, '/home/binawebp/omsrislb.my/wp-includes/blocks/home-link.php', 'wp-includes/blocks/home-link.php'),
(7226, '/home/binawebp/omsrislb.my/wp-includes/blocks/html/block.json', 'wp-includes/blocks/html/block.json'),
(7227, '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor-rtl.css', 'wp-includes/blocks/html/editor-rtl.css'),
(7228, '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor-rtl.min.css', 'wp-includes/blocks/html/editor-rtl.min.css'),
(7229, '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor.css', 'wp-includes/blocks/html/editor.css'),
(7230, '/home/binawebp/omsrislb.my/wp-includes/blocks/html/editor.min.css', 'wp-includes/blocks/html/editor.min.css'),
(7231, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/block.json', 'wp-includes/blocks/image/block.json'),
(7232, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor-rtl.css', 'wp-includes/blocks/image/editor-rtl.css'),
(7233, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor-rtl.min.css', 'wp-includes/blocks/image/editor-rtl.min.css'),
(7234, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor.css', 'wp-includes/blocks/image/editor.css'),
(7235, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/editor.min.css', 'wp-includes/blocks/image/editor.min.css'),
(7236, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style-rtl.css', 'wp-includes/blocks/image/style-rtl.css'),
(7237, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style-rtl.min.css', 'wp-includes/blocks/image/style-rtl.min.css'),
(7238, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style.css', 'wp-includes/blocks/image/style.css'),
(7239, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/style.min.css', 'wp-includes/blocks/image/style.min.css'),
(7240, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme-rtl.css', 'wp-includes/blocks/image/theme-rtl.css'),
(7241, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme-rtl.min.css', 'wp-includes/blocks/image/theme-rtl.min.css'),
(7242, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme.css', 'wp-includes/blocks/image/theme.css'),
(7243, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/theme.min.css', 'wp-includes/blocks/image/theme.min.css'),
(7244, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.asset.php', 'wp-includes/blocks/image/view.asset.php'),
(7245, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.js', 'wp-includes/blocks/image/view.js'),
(7246, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.min.asset.php', 'wp-includes/blocks/image/view.min.asset.php'),
(7247, '/home/binawebp/omsrislb.my/wp-includes/blocks/image/view.min.js', 'wp-includes/blocks/image/view.min.js'),
(7248, '/home/binawebp/omsrislb.my/wp-includes/blocks/image.php', 'wp-includes/blocks/image.php'),
(7249, '/home/binawebp/omsrislb.my/wp-includes/blocks/index.php', 'wp-includes/blocks/index.php'),
(7250, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/block.json', 'wp-includes/blocks/latest-comments/block.json'),
(7251, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style-rtl.css', 'wp-includes/blocks/latest-comments/style-rtl.css'),
(7252, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style-rtl.min.css', 'wp-includes/blocks/latest-comments/style-rtl.min.css'),
(7253, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style.css', 'wp-includes/blocks/latest-comments/style.css'),
(7254, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments/style.min.css', 'wp-includes/blocks/latest-comments/style.min.css'),
(7255, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-comments.php', 'wp-includes/blocks/latest-comments.php'),
(7256, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/block.json', 'wp-includes/blocks/latest-posts/block.json'),
(7257, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor-rtl.css', 'wp-includes/blocks/latest-posts/editor-rtl.css'),
(7258, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor-rtl.min.css', 'wp-includes/blocks/latest-posts/editor-rtl.min.css'),
(7259, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor.css', 'wp-includes/blocks/latest-posts/editor.css'),
(7260, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/editor.min.css', 'wp-includes/blocks/latest-posts/editor.min.css'),
(7261, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style-rtl.css', 'wp-includes/blocks/latest-posts/style-rtl.css'),
(7262, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style-rtl.min.css', 'wp-includes/blocks/latest-posts/style-rtl.min.css'),
(7263, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style.css', 'wp-includes/blocks/latest-posts/style.css'),
(7264, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts/style.min.css', 'wp-includes/blocks/latest-posts/style.min.css'),
(7265, '/home/binawebp/omsrislb.my/wp-includes/blocks/latest-posts.php', 'wp-includes/blocks/latest-posts.php'),
(7266, '/home/binawebp/omsrislb.my/wp-includes/blocks/legacy-widget/block.json', 'wp-includes/blocks/legacy-widget/block.json'),
(7267, '/home/binawebp/omsrislb.my/wp-includes/blocks/legacy-widget.php', 'wp-includes/blocks/legacy-widget.php'),
(7268, '/home/binawebp/omsrislb.my/wp-includes/blocks/list/block.json', 'wp-includes/blocks/list/block.json'),
(7269, '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style-rtl.css', 'wp-includes/blocks/list/style-rtl.css'),
(7270, '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style-rtl.min.css', 'wp-includes/blocks/list/style-rtl.min.css'),
(7271, '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style.css', 'wp-includes/blocks/list/style.css'),
(7272, '/home/binawebp/omsrislb.my/wp-includes/blocks/list/style.min.css', 'wp-includes/blocks/list/style.min.css'),
(7273, '/home/binawebp/omsrislb.my/wp-includes/blocks/list-item/block.json', 'wp-includes/blocks/list-item/block.json'),
(7274, '/home/binawebp/omsrislb.my/wp-includes/blocks/list.php', 'wp-includes/blocks/list.php'),
(7275, '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/block.json', 'wp-includes/blocks/loginout/block.json'),
(7276, '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style-rtl.css', 'wp-includes/blocks/loginout/style-rtl.css'),
(7277, '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style-rtl.min.css', 'wp-includes/blocks/loginout/style-rtl.min.css'),
(7278, '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style.css', 'wp-includes/blocks/loginout/style.css'),
(7279, '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout/style.min.css', 'wp-includes/blocks/loginout/style.min.css'),
(7280, '/home/binawebp/omsrislb.my/wp-includes/blocks/loginout.php', 'wp-includes/blocks/loginout.php'),
(7281, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/block.json', 'wp-includes/blocks/math/block.json'),
(7282, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor-rtl.css', 'wp-includes/blocks/math/editor-rtl.css'),
(7283, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor-rtl.min.css', 'wp-includes/blocks/math/editor-rtl.min.css'),
(7284, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor.css', 'wp-includes/blocks/math/editor.css'),
(7285, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/editor.min.css', 'wp-includes/blocks/math/editor.min.css'),
(7286, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style-rtl.css', 'wp-includes/blocks/math/style-rtl.css'),
(7287, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style-rtl.min.css', 'wp-includes/blocks/math/style-rtl.min.css'),
(7288, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style.css', 'wp-includes/blocks/math/style.css'),
(7289, '/home/binawebp/omsrislb.my/wp-includes/blocks/math/style.min.css', 'wp-includes/blocks/math/style.min.css'),
(7290, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/block.json', 'wp-includes/blocks/media-text/block.json'),
(7291, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor-rtl.css', 'wp-includes/blocks/media-text/editor-rtl.css'),
(7292, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor-rtl.min.css', 'wp-includes/blocks/media-text/editor-rtl.min.css'),
(7293, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor.css', 'wp-includes/blocks/media-text/editor.css'),
(7294, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/editor.min.css', 'wp-includes/blocks/media-text/editor.min.css'),
(7295, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style-rtl.css', 'wp-includes/blocks/media-text/style-rtl.css'),
(7296, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style-rtl.min.css', 'wp-includes/blocks/media-text/style-rtl.min.css'),
(7297, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style.css', 'wp-includes/blocks/media-text/style.css'),
(7298, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text/style.min.css', 'wp-includes/blocks/media-text/style.min.css'),
(7299, '/home/binawebp/omsrislb.my/wp-includes/blocks/media-text.php', 'wp-includes/blocks/media-text.php'),
(7300, '/home/binawebp/omsrislb.my/wp-includes/blocks/missing/block.json', 'wp-includes/blocks/missing/block.json'),
(7301, '/home/binawebp/omsrislb.my/wp-includes/blocks/more/block.json', 'wp-includes/blocks/more/block.json'),
(7302, '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor-rtl.css', 'wp-includes/blocks/more/editor-rtl.css'),
(7303, '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor-rtl.min.css', 'wp-includes/blocks/more/editor-rtl.min.css'),
(7304, '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor.css', 'wp-includes/blocks/more/editor.css'),
(7305, '/home/binawebp/omsrislb.my/wp-includes/blocks/more/editor.min.css', 'wp-includes/blocks/more/editor.min.css'),
(7306, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/block.json', 'wp-includes/blocks/navigation/block.json'),
(7307, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor-rtl.css', 'wp-includes/blocks/navigation/editor-rtl.css'),
(7308, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor-rtl.min.css', 'wp-includes/blocks/navigation/editor-rtl.min.css'),
(7309, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor.css', 'wp-includes/blocks/navigation/editor.css'),
(7310, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/editor.min.css', 'wp-includes/blocks/navigation/editor.min.css'),
(7311, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style-rtl.css', 'wp-includes/blocks/navigation/style-rtl.css'),
(7312, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style-rtl.min.css', 'wp-includes/blocks/navigation/style-rtl.min.css'),
(7313, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style.css', 'wp-includes/blocks/navigation/style.css'),
(7314, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/style.min.css', 'wp-includes/blocks/navigation/style.min.css'),
(7315, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view-modal.asset.php', 'wp-includes/blocks/navigation/view-modal.asset.php'),
(7316, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view-modal.min.asset.php', 'wp-includes/blocks/navigation/view-modal.min.asset.php'),
(7317, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.asset.php', 'wp-includes/blocks/navigation/view.asset.php'),
(7318, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.js', 'wp-includes/blocks/navigation/view.js'),
(7319, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.min.asset.php', 'wp-includes/blocks/navigation/view.min.asset.php'),
(7320, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation/view.min.js', 'wp-includes/blocks/navigation/view.min.js'),
(7321, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/block.json', 'wp-includes/blocks/navigation-link/block.json'),
(7322, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor-rtl.css', 'wp-includes/blocks/navigation-link/editor-rtl.css'),
(7323, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor-rtl.min.css', 'wp-includes/blocks/navigation-link/editor-rtl.min.css'),
(7324, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor.css', 'wp-includes/blocks/navigation-link/editor.css'),
(7325, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/editor.min.css', 'wp-includes/blocks/navigation-link/editor.min.css'),
(7326, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style-rtl.css', 'wp-includes/blocks/navigation-link/style-rtl.css'),
(7327, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style-rtl.min.css', 'wp-includes/blocks/navigation-link/style-rtl.min.css'),
(7328, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style.css', 'wp-includes/blocks/navigation-link/style.css'),
(7329, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link/style.min.css', 'wp-includes/blocks/navigation-link/style.min.css'),
(7330, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-link.php', 'wp-includes/blocks/navigation-link.php'),
(7331, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/block.json', 'wp-includes/blocks/navigation-submenu/block.json'),
(7332, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor-rtl.css', 'wp-includes/blocks/navigation-submenu/editor-rtl.css'),
(7333, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor-rtl.min.css', 'wp-includes/blocks/navigation-submenu/editor-rtl.min.css'),
(7334, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor.css', 'wp-includes/blocks/navigation-submenu/editor.css'),
(7335, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu/editor.min.css', 'wp-includes/blocks/navigation-submenu/editor.min.css'),
(7336, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation-submenu.php', 'wp-includes/blocks/navigation-submenu.php'),
(7337, '/home/binawebp/omsrislb.my/wp-includes/blocks/navigation.php', 'wp-includes/blocks/navigation.php'),
(7338, '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/block.json', 'wp-includes/blocks/nextpage/block.json'),
(7339, '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor-rtl.css', 'wp-includes/blocks/nextpage/editor-rtl.css'),
(7340, '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor-rtl.min.css', 'wp-includes/blocks/nextpage/editor-rtl.min.css'),
(7341, '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor.css', 'wp-includes/blocks/nextpage/editor.css'),
(7342, '/home/binawebp/omsrislb.my/wp-includes/blocks/nextpage/editor.min.css', 'wp-includes/blocks/nextpage/editor.min.css'),
(7343, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/block.json', 'wp-includes/blocks/page-list/block.json'),
(7344, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor-rtl.css', 'wp-includes/blocks/page-list/editor-rtl.css'),
(7345, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor-rtl.min.css', 'wp-includes/blocks/page-list/editor-rtl.min.css'),
(7346, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor.css', 'wp-includes/blocks/page-list/editor.css'),
(7347, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/editor.min.css', 'wp-includes/blocks/page-list/editor.min.css'),
(7348, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style-rtl.css', 'wp-includes/blocks/page-list/style-rtl.css'),
(7349, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style-rtl.min.css', 'wp-includes/blocks/page-list/style-rtl.min.css'),
(7350, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style.css', 'wp-includes/blocks/page-list/style.css'),
(7351, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list/style.min.css', 'wp-includes/blocks/page-list/style.min.css'),
(7352, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list-item/block.json', 'wp-includes/blocks/page-list-item/block.json'),
(7353, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list-item.php', 'wp-includes/blocks/page-list-item.php'),
(7354, '/home/binawebp/omsrislb.my/wp-includes/blocks/page-list.php', 'wp-includes/blocks/page-list.php'),
(7355, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/block.json', 'wp-includes/blocks/paragraph/block.json'),
(7356, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor-rtl.css', 'wp-includes/blocks/paragraph/editor-rtl.css'),
(7357, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor-rtl.min.css', 'wp-includes/blocks/paragraph/editor-rtl.min.css'),
(7358, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor.css', 'wp-includes/blocks/paragraph/editor.css'),
(7359, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/editor.min.css', 'wp-includes/blocks/paragraph/editor.min.css'),
(7360, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style-rtl.css', 'wp-includes/blocks/paragraph/style-rtl.css'),
(7361, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style-rtl.min.css', 'wp-includes/blocks/paragraph/style-rtl.min.css'),
(7362, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style.css', 'wp-includes/blocks/paragraph/style.css'),
(7363, '/home/binawebp/omsrislb.my/wp-includes/blocks/paragraph/style.min.css', 'wp-includes/blocks/paragraph/style.min.css'),
(7364, '/home/binawebp/omsrislb.my/wp-includes/blocks/pattern/block.json', 'wp-includes/blocks/pattern/block.json'),
(7365, '/home/binawebp/omsrislb.my/wp-includes/blocks/pattern.php', 'wp-includes/blocks/pattern.php'),
(7366, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/block.json', 'wp-includes/blocks/post-author/block.json'),
(7367, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style-rtl.css', 'wp-includes/blocks/post-author/style-rtl.css'),
(7368, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style-rtl.min.css', 'wp-includes/blocks/post-author/style-rtl.min.css'),
(7369, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style.css', 'wp-includes/blocks/post-author/style.css'),
(7370, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author/style.min.css', 'wp-includes/blocks/post-author/style.min.css'),
(7371, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/block.json', 'wp-includes/blocks/post-author-biography/block.json'),
(7372, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style-rtl.css', 'wp-includes/blocks/post-author-biography/style-rtl.css'),
(7373, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style-rtl.min.css', 'wp-includes/blocks/post-author-biography/style-rtl.min.css'),
(7374, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style.css', 'wp-includes/blocks/post-author-biography/style.css'),
(7375, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography/style.min.css', 'wp-includes/blocks/post-author-biography/style.min.css'),
(7376, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-biography.php', 'wp-includes/blocks/post-author-biography.php'),
(7377, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/block.json', 'wp-includes/blocks/post-author-name/block.json'),
(7378, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style-rtl.css', 'wp-includes/blocks/post-author-name/style-rtl.css'),
(7379, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style-rtl.min.css', 'wp-includes/blocks/post-author-name/style-rtl.min.css'),
(7380, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style.css', 'wp-includes/blocks/post-author-name/style.css'),
(7381, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name/style.min.css', 'wp-includes/blocks/post-author-name/style.min.css'),
(7382, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author-name.php', 'wp-includes/blocks/post-author-name.php'),
(7383, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-author.php', 'wp-includes/blocks/post-author.php'),
(7384, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/block.json', 'wp-includes/blocks/post-comments-count/block.json'),
(7385, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style-rtl.css', 'wp-includes/blocks/post-comments-count/style-rtl.css'),
(7386, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style-rtl.min.css', 'wp-includes/blocks/post-comments-count/style-rtl.min.css'),
(7387, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style.css', 'wp-includes/blocks/post-comments-count/style.css'),
(7388, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count/style.min.css', 'wp-includes/blocks/post-comments-count/style.min.css'),
(7389, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-count.php', 'wp-includes/blocks/post-comments-count.php'),
(7390, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/block.json', 'wp-includes/blocks/post-comments-form/block.json'),
(7391, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor-rtl.css', 'wp-includes/blocks/post-comments-form/editor-rtl.css'),
(7392, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor-rtl.min.css', 'wp-includes/blocks/post-comments-form/editor-rtl.min.css'),
(7393, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor.css', 'wp-includes/blocks/post-comments-form/editor.css'),
(7394, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/editor.min.css', 'wp-includes/blocks/post-comments-form/editor.min.css'),
(7395, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style-rtl.css', 'wp-includes/blocks/post-comments-form/style-rtl.css'),
(7396, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style-rtl.min.css', 'wp-includes/blocks/post-comments-form/style-rtl.min.css'),
(7397, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style.css', 'wp-includes/blocks/post-comments-form/style.css'),
(7398, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form/style.min.css', 'wp-includes/blocks/post-comments-form/style.min.css'),
(7399, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-form.php', 'wp-includes/blocks/post-comments-form.php'),
(7400, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/block.json', 'wp-includes/blocks/post-comments-link/block.json'),
(7401, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style-rtl.css', 'wp-includes/blocks/post-comments-link/style-rtl.css'),
(7402, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style-rtl.min.css', 'wp-includes/blocks/post-comments-link/style-rtl.min.css'),
(7403, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style.css', 'wp-includes/blocks/post-comments-link/style.css'),
(7404, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link/style.min.css', 'wp-includes/blocks/post-comments-link/style.min.css'),
(7405, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-comments-link.php', 'wp-includes/blocks/post-comments-link.php'),
(7406, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/block.json', 'wp-includes/blocks/post-content/block.json'),
(7407, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style-rtl.css', 'wp-includes/blocks/post-content/style-rtl.css'),
(7408, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style-rtl.min.css', 'wp-includes/blocks/post-content/style-rtl.min.css'),
(7409, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style.css', 'wp-includes/blocks/post-content/style.css'),
(7410, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content/style.min.css', 'wp-includes/blocks/post-content/style.min.css'),
(7411, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-content.php', 'wp-includes/blocks/post-content.php'),
(7412, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/block.json', 'wp-includes/blocks/post-date/block.json'),
(7413, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style-rtl.css', 'wp-includes/blocks/post-date/style-rtl.css'),
(7414, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style-rtl.min.css', 'wp-includes/blocks/post-date/style-rtl.min.css'),
(7415, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style.css', 'wp-includes/blocks/post-date/style.css'),
(7416, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date/style.min.css', 'wp-includes/blocks/post-date/style.min.css'),
(7417, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-date.php', 'wp-includes/blocks/post-date.php'),
(7418, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/block.json', 'wp-includes/blocks/post-excerpt/block.json'),
(7419, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor-rtl.css', 'wp-includes/blocks/post-excerpt/editor-rtl.css'),
(7420, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor-rtl.min.css', 'wp-includes/blocks/post-excerpt/editor-rtl.min.css'),
(7421, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor.css', 'wp-includes/blocks/post-excerpt/editor.css'),
(7422, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/editor.min.css', 'wp-includes/blocks/post-excerpt/editor.min.css'),
(7423, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style-rtl.css', 'wp-includes/blocks/post-excerpt/style-rtl.css'),
(7424, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style-rtl.min.css', 'wp-includes/blocks/post-excerpt/style-rtl.min.css'),
(7425, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style.css', 'wp-includes/blocks/post-excerpt/style.css'),
(7426, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt/style.min.css', 'wp-includes/blocks/post-excerpt/style.min.css'),
(7427, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-excerpt.php', 'wp-includes/blocks/post-excerpt.php'),
(7428, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/block.json', 'wp-includes/blocks/post-featured-image/block.json'),
(7429, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor-rtl.css', 'wp-includes/blocks/post-featured-image/editor-rtl.css'),
(7430, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor-rtl.min.css', 'wp-includes/blocks/post-featured-image/editor-rtl.min.css'),
(7431, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor.css', 'wp-includes/blocks/post-featured-image/editor.css'),
(7432, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/editor.min.css', 'wp-includes/blocks/post-featured-image/editor.min.css'),
(7433, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style-rtl.css', 'wp-includes/blocks/post-featured-image/style-rtl.css'),
(7434, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style-rtl.min.css', 'wp-includes/blocks/post-featured-image/style-rtl.min.css'),
(7435, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style.css', 'wp-includes/blocks/post-featured-image/style.css'),
(7436, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image/style.min.css', 'wp-includes/blocks/post-featured-image/style.min.css'),
(7437, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-featured-image.php', 'wp-includes/blocks/post-featured-image.php'),
(7438, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/block.json', 'wp-includes/blocks/post-navigation-link/block.json'),
(7439, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style-rtl.css', 'wp-includes/blocks/post-navigation-link/style-rtl.css'),
(7440, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style-rtl.min.css', 'wp-includes/blocks/post-navigation-link/style-rtl.min.css'),
(7441, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style.css', 'wp-includes/blocks/post-navigation-link/style.css'),
(7442, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link/style.min.css', 'wp-includes/blocks/post-navigation-link/style.min.css'),
(7443, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-navigation-link.php', 'wp-includes/blocks/post-navigation-link.php'),
(7444, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/block.json', 'wp-includes/blocks/post-template/block.json'),
(7445, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style-rtl.css', 'wp-includes/blocks/post-template/style-rtl.css'),
(7446, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style-rtl.min.css', 'wp-includes/blocks/post-template/style-rtl.min.css'),
(7447, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style.css', 'wp-includes/blocks/post-template/style.css'),
(7448, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template/style.min.css', 'wp-includes/blocks/post-template/style.min.css'),
(7449, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-template.php', 'wp-includes/blocks/post-template.php'),
(7450, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/block.json', 'wp-includes/blocks/post-terms/block.json'),
(7451, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style-rtl.css', 'wp-includes/blocks/post-terms/style-rtl.css'),
(7452, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style-rtl.min.css', 'wp-includes/blocks/post-terms/style-rtl.min.css'),
(7453, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style.css', 'wp-includes/blocks/post-terms/style.css'),
(7454, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms/style.min.css', 'wp-includes/blocks/post-terms/style.min.css'),
(7455, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-terms.php', 'wp-includes/blocks/post-terms.php'),
(7456, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/block.json', 'wp-includes/blocks/post-time-to-read/block.json'),
(7457, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style-rtl.css', 'wp-includes/blocks/post-time-to-read/style-rtl.css'),
(7458, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style-rtl.min.css', 'wp-includes/blocks/post-time-to-read/style-rtl.min.css'),
(7459, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style.css', 'wp-includes/blocks/post-time-to-read/style.css'),
(7460, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read/style.min.css', 'wp-includes/blocks/post-time-to-read/style.min.css'),
(7461, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-time-to-read.php', 'wp-includes/blocks/post-time-to-read.php'),
(7462, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/block.json', 'wp-includes/blocks/post-title/block.json'),
(7463, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style-rtl.css', 'wp-includes/blocks/post-title/style-rtl.css'),
(7464, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style-rtl.min.css', 'wp-includes/blocks/post-title/style-rtl.min.css'),
(7465, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style.css', 'wp-includes/blocks/post-title/style.css'),
(7466, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title/style.min.css', 'wp-includes/blocks/post-title/style.min.css'),
(7467, '/home/binawebp/omsrislb.my/wp-includes/blocks/post-title.php', 'wp-includes/blocks/post-title.php'),
(7468, '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/block.json', 'wp-includes/blocks/preformatted/block.json'),
(7469, '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style-rtl.css', 'wp-includes/blocks/preformatted/style-rtl.css'),
(7470, '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style-rtl.min.css', 'wp-includes/blocks/preformatted/style-rtl.min.css'),
(7471, '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style.css', 'wp-includes/blocks/preformatted/style.css'),
(7472, '/home/binawebp/omsrislb.my/wp-includes/blocks/preformatted/style.min.css', 'wp-includes/blocks/preformatted/style.min.css'),
(7473, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/block.json', 'wp-includes/blocks/pullquote/block.json'),
(7474, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor-rtl.css', 'wp-includes/blocks/pullquote/editor-rtl.css'),
(7475, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor-rtl.min.css', 'wp-includes/blocks/pullquote/editor-rtl.min.css'),
(7476, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor.css', 'wp-includes/blocks/pullquote/editor.css'),
(7477, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/editor.min.css', 'wp-includes/blocks/pullquote/editor.min.css'),
(7478, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style-rtl.css', 'wp-includes/blocks/pullquote/style-rtl.css'),
(7479, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style-rtl.min.css', 'wp-includes/blocks/pullquote/style-rtl.min.css'),
(7480, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style.css', 'wp-includes/blocks/pullquote/style.css'),
(7481, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/style.min.css', 'wp-includes/blocks/pullquote/style.min.css'),
(7482, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme-rtl.css', 'wp-includes/blocks/pullquote/theme-rtl.css'),
(7483, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme-rtl.min.css', 'wp-includes/blocks/pullquote/theme-rtl.min.css');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(7484, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme.css', 'wp-includes/blocks/pullquote/theme.css'),
(7485, '/home/binawebp/omsrislb.my/wp-includes/blocks/pullquote/theme.min.css', 'wp-includes/blocks/pullquote/theme.min.css'),
(7486, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/block.json', 'wp-includes/blocks/query/block.json'),
(7487, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor-rtl.css', 'wp-includes/blocks/query/editor-rtl.css'),
(7488, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor-rtl.min.css', 'wp-includes/blocks/query/editor-rtl.min.css'),
(7489, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor.css', 'wp-includes/blocks/query/editor.css'),
(7490, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/editor.min.css', 'wp-includes/blocks/query/editor.min.css'),
(7491, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.asset.php', 'wp-includes/blocks/query/view.asset.php'),
(7492, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.js', 'wp-includes/blocks/query/view.js'),
(7493, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.min.asset.php', 'wp-includes/blocks/query/view.min.asset.php'),
(7494, '/home/binawebp/omsrislb.my/wp-includes/blocks/query/view.min.js', 'wp-includes/blocks/query/view.min.js'),
(7495, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-no-results/block.json', 'wp-includes/blocks/query-no-results/block.json'),
(7496, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-no-results.php', 'wp-includes/blocks/query-no-results.php'),
(7497, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/block.json', 'wp-includes/blocks/query-pagination/block.json'),
(7498, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor-rtl.css', 'wp-includes/blocks/query-pagination/editor-rtl.css'),
(7499, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor-rtl.min.css', 'wp-includes/blocks/query-pagination/editor-rtl.min.css'),
(7500, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor.css', 'wp-includes/blocks/query-pagination/editor.css'),
(7501, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/editor.min.css', 'wp-includes/blocks/query-pagination/editor.min.css'),
(7502, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style-rtl.css', 'wp-includes/blocks/query-pagination/style-rtl.css'),
(7503, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style-rtl.min.css', 'wp-includes/blocks/query-pagination/style-rtl.min.css'),
(7504, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style.css', 'wp-includes/blocks/query-pagination/style.css'),
(7505, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination/style.min.css', 'wp-includes/blocks/query-pagination/style.min.css'),
(7506, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-next/block.json', 'wp-includes/blocks/query-pagination-next/block.json'),
(7507, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-next.php', 'wp-includes/blocks/query-pagination-next.php'),
(7508, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/block.json', 'wp-includes/blocks/query-pagination-numbers/block.json'),
(7509, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor-rtl.css', 'wp-includes/blocks/query-pagination-numbers/editor-rtl.css'),
(7510, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css', 'wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css'),
(7511, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor.css', 'wp-includes/blocks/query-pagination-numbers/editor.css'),
(7512, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers/editor.min.css', 'wp-includes/blocks/query-pagination-numbers/editor.min.css'),
(7513, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-numbers.php', 'wp-includes/blocks/query-pagination-numbers.php'),
(7514, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-previous/block.json', 'wp-includes/blocks/query-pagination-previous/block.json'),
(7515, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination-previous.php', 'wp-includes/blocks/query-pagination-previous.php'),
(7516, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-pagination.php', 'wp-includes/blocks/query-pagination.php'),
(7517, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/block.json', 'wp-includes/blocks/query-title/block.json'),
(7518, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style-rtl.css', 'wp-includes/blocks/query-title/style-rtl.css'),
(7519, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style-rtl.min.css', 'wp-includes/blocks/query-title/style-rtl.min.css'),
(7520, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style.css', 'wp-includes/blocks/query-title/style.css'),
(7521, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title/style.min.css', 'wp-includes/blocks/query-title/style.min.css'),
(7522, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-title.php', 'wp-includes/blocks/query-title.php'),
(7523, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/block.json', 'wp-includes/blocks/query-total/block.json'),
(7524, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style-rtl.css', 'wp-includes/blocks/query-total/style-rtl.css'),
(7525, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style-rtl.min.css', 'wp-includes/blocks/query-total/style-rtl.min.css'),
(7526, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style.css', 'wp-includes/blocks/query-total/style.css'),
(7527, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total/style.min.css', 'wp-includes/blocks/query-total/style.min.css'),
(7528, '/home/binawebp/omsrislb.my/wp-includes/blocks/query-total.php', 'wp-includes/blocks/query-total.php'),
(7529, '/home/binawebp/omsrislb.my/wp-includes/blocks/query.php', 'wp-includes/blocks/query.php'),
(7530, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/block.json', 'wp-includes/blocks/quote/block.json'),
(7531, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style-rtl.css', 'wp-includes/blocks/quote/style-rtl.css'),
(7532, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style-rtl.min.css', 'wp-includes/blocks/quote/style-rtl.min.css'),
(7533, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style.css', 'wp-includes/blocks/quote/style.css'),
(7534, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/style.min.css', 'wp-includes/blocks/quote/style.min.css'),
(7535, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme-rtl.css', 'wp-includes/blocks/quote/theme-rtl.css'),
(7536, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme-rtl.min.css', 'wp-includes/blocks/quote/theme-rtl.min.css'),
(7537, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme.css', 'wp-includes/blocks/quote/theme.css'),
(7538, '/home/binawebp/omsrislb.my/wp-includes/blocks/quote/theme.min.css', 'wp-includes/blocks/quote/theme.min.css'),
(7539, '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/block.json', 'wp-includes/blocks/read-more/block.json'),
(7540, '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style-rtl.css', 'wp-includes/blocks/read-more/style-rtl.css'),
(7541, '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style-rtl.min.css', 'wp-includes/blocks/read-more/style-rtl.min.css'),
(7542, '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style.css', 'wp-includes/blocks/read-more/style.css'),
(7543, '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more/style.min.css', 'wp-includes/blocks/read-more/style.min.css'),
(7544, '/home/binawebp/omsrislb.my/wp-includes/blocks/read-more.php', 'wp-includes/blocks/read-more.php'),
(7545, '/home/binawebp/omsrislb.my/wp-includes/blocks/require-dynamic-blocks.php', 'wp-includes/blocks/require-dynamic-blocks.php'),
(7546, '/home/binawebp/omsrislb.my/wp-includes/blocks/require-static-blocks.php', 'wp-includes/blocks/require-static-blocks.php'),
(7547, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/block.json', 'wp-includes/blocks/rss/block.json'),
(7548, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor-rtl.css', 'wp-includes/blocks/rss/editor-rtl.css'),
(7549, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor-rtl.min.css', 'wp-includes/blocks/rss/editor-rtl.min.css'),
(7550, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor.css', 'wp-includes/blocks/rss/editor.css'),
(7551, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/editor.min.css', 'wp-includes/blocks/rss/editor.min.css'),
(7552, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style-rtl.css', 'wp-includes/blocks/rss/style-rtl.css'),
(7553, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style-rtl.min.css', 'wp-includes/blocks/rss/style-rtl.min.css'),
(7554, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style.css', 'wp-includes/blocks/rss/style.css'),
(7555, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss/style.min.css', 'wp-includes/blocks/rss/style.min.css'),
(7556, '/home/binawebp/omsrislb.my/wp-includes/blocks/rss.php', 'wp-includes/blocks/rss.php'),
(7557, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/block.json', 'wp-includes/blocks/search/block.json'),
(7558, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor-rtl.css', 'wp-includes/blocks/search/editor-rtl.css'),
(7559, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor-rtl.min.css', 'wp-includes/blocks/search/editor-rtl.min.css'),
(7560, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor.css', 'wp-includes/blocks/search/editor.css'),
(7561, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/editor.min.css', 'wp-includes/blocks/search/editor.min.css'),
(7562, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style-rtl.css', 'wp-includes/blocks/search/style-rtl.css'),
(7563, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style-rtl.min.css', 'wp-includes/blocks/search/style-rtl.min.css'),
(7564, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style.css', 'wp-includes/blocks/search/style.css'),
(7565, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/style.min.css', 'wp-includes/blocks/search/style.min.css'),
(7566, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme-rtl.css', 'wp-includes/blocks/search/theme-rtl.css'),
(7567, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme-rtl.min.css', 'wp-includes/blocks/search/theme-rtl.min.css'),
(7568, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme.css', 'wp-includes/blocks/search/theme.css'),
(7569, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/theme.min.css', 'wp-includes/blocks/search/theme.min.css'),
(7570, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.asset.php', 'wp-includes/blocks/search/view.asset.php'),
(7571, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.js', 'wp-includes/blocks/search/view.js'),
(7572, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.min.asset.php', 'wp-includes/blocks/search/view.min.asset.php'),
(7573, '/home/binawebp/omsrislb.my/wp-includes/blocks/search/view.min.js', 'wp-includes/blocks/search/view.min.js'),
(7574, '/home/binawebp/omsrislb.my/wp-includes/blocks/search.php', 'wp-includes/blocks/search.php'),
(7575, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/block.json', 'wp-includes/blocks/separator/block.json'),
(7576, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor-rtl.css', 'wp-includes/blocks/separator/editor-rtl.css'),
(7577, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor-rtl.min.css', 'wp-includes/blocks/separator/editor-rtl.min.css'),
(7578, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor.css', 'wp-includes/blocks/separator/editor.css'),
(7579, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/editor.min.css', 'wp-includes/blocks/separator/editor.min.css'),
(7580, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style-rtl.css', 'wp-includes/blocks/separator/style-rtl.css'),
(7581, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style-rtl.min.css', 'wp-includes/blocks/separator/style-rtl.min.css'),
(7582, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style.css', 'wp-includes/blocks/separator/style.css'),
(7583, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/style.min.css', 'wp-includes/blocks/separator/style.min.css'),
(7584, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme-rtl.css', 'wp-includes/blocks/separator/theme-rtl.css'),
(7585, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme-rtl.min.css', 'wp-includes/blocks/separator/theme-rtl.min.css'),
(7586, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme.css', 'wp-includes/blocks/separator/theme.css'),
(7587, '/home/binawebp/omsrislb.my/wp-includes/blocks/separator/theme.min.css', 'wp-includes/blocks/separator/theme.min.css'),
(7588, '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/block.json', 'wp-includes/blocks/shortcode/block.json'),
(7589, '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor-rtl.css', 'wp-includes/blocks/shortcode/editor-rtl.css'),
(7590, '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor-rtl.min.css', 'wp-includes/blocks/shortcode/editor-rtl.min.css'),
(7591, '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor.css', 'wp-includes/blocks/shortcode/editor.css'),
(7592, '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode/editor.min.css', 'wp-includes/blocks/shortcode/editor.min.css'),
(7593, '/home/binawebp/omsrislb.my/wp-includes/blocks/shortcode.php', 'wp-includes/blocks/shortcode.php'),
(7594, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/block.json', 'wp-includes/blocks/site-logo/block.json'),
(7595, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor-rtl.css', 'wp-includes/blocks/site-logo/editor-rtl.css'),
(7596, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor-rtl.min.css', 'wp-includes/blocks/site-logo/editor-rtl.min.css'),
(7597, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor.css', 'wp-includes/blocks/site-logo/editor.css'),
(7598, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/editor.min.css', 'wp-includes/blocks/site-logo/editor.min.css'),
(7599, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style-rtl.css', 'wp-includes/blocks/site-logo/style-rtl.css'),
(7600, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style-rtl.min.css', 'wp-includes/blocks/site-logo/style-rtl.min.css'),
(7601, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style.css', 'wp-includes/blocks/site-logo/style.css'),
(7602, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo/style.min.css', 'wp-includes/blocks/site-logo/style.min.css'),
(7603, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-logo.php', 'wp-includes/blocks/site-logo.php'),
(7604, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/block.json', 'wp-includes/blocks/site-tagline/block.json'),
(7605, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor-rtl.css', 'wp-includes/blocks/site-tagline/editor-rtl.css'),
(7606, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor-rtl.min.css', 'wp-includes/blocks/site-tagline/editor-rtl.min.css'),
(7607, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor.css', 'wp-includes/blocks/site-tagline/editor.css'),
(7608, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/editor.min.css', 'wp-includes/blocks/site-tagline/editor.min.css'),
(7609, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style-rtl.css', 'wp-includes/blocks/site-tagline/style-rtl.css'),
(7610, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style-rtl.min.css', 'wp-includes/blocks/site-tagline/style-rtl.min.css'),
(7611, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style.css', 'wp-includes/blocks/site-tagline/style.css'),
(7612, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline/style.min.css', 'wp-includes/blocks/site-tagline/style.min.css'),
(7613, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-tagline.php', 'wp-includes/blocks/site-tagline.php'),
(7614, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/block.json', 'wp-includes/blocks/site-title/block.json'),
(7615, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor-rtl.css', 'wp-includes/blocks/site-title/editor-rtl.css'),
(7616, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor-rtl.min.css', 'wp-includes/blocks/site-title/editor-rtl.min.css'),
(7617, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor.css', 'wp-includes/blocks/site-title/editor.css'),
(7618, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/editor.min.css', 'wp-includes/blocks/site-title/editor.min.css'),
(7619, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style-rtl.css', 'wp-includes/blocks/site-title/style-rtl.css'),
(7620, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style-rtl.min.css', 'wp-includes/blocks/site-title/style-rtl.min.css'),
(7621, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style.css', 'wp-includes/blocks/site-title/style.css'),
(7622, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title/style.min.css', 'wp-includes/blocks/site-title/style.min.css'),
(7623, '/home/binawebp/omsrislb.my/wp-includes/blocks/site-title.php', 'wp-includes/blocks/site-title.php'),
(7624, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/block.json', 'wp-includes/blocks/social-link/block.json'),
(7625, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor-rtl.css', 'wp-includes/blocks/social-link/editor-rtl.css'),
(7626, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor-rtl.min.css', 'wp-includes/blocks/social-link/editor-rtl.min.css'),
(7627, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor.css', 'wp-includes/blocks/social-link/editor.css'),
(7628, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link/editor.min.css', 'wp-includes/blocks/social-link/editor.min.css'),
(7629, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-link.php', 'wp-includes/blocks/social-link.php'),
(7630, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/block.json', 'wp-includes/blocks/social-links/block.json'),
(7631, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor-rtl.css', 'wp-includes/blocks/social-links/editor-rtl.css'),
(7632, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor-rtl.min.css', 'wp-includes/blocks/social-links/editor-rtl.min.css'),
(7633, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor.css', 'wp-includes/blocks/social-links/editor.css'),
(7634, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/editor.min.css', 'wp-includes/blocks/social-links/editor.min.css'),
(7635, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style-rtl.css', 'wp-includes/blocks/social-links/style-rtl.css'),
(7636, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style-rtl.min.css', 'wp-includes/blocks/social-links/style-rtl.min.css'),
(7637, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style.css', 'wp-includes/blocks/social-links/style.css'),
(7638, '/home/binawebp/omsrislb.my/wp-includes/blocks/social-links/style.min.css', 'wp-includes/blocks/social-links/style.min.css'),
(7639, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/block.json', 'wp-includes/blocks/spacer/block.json'),
(7640, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor-rtl.css', 'wp-includes/blocks/spacer/editor-rtl.css'),
(7641, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor-rtl.min.css', 'wp-includes/blocks/spacer/editor-rtl.min.css'),
(7642, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor.css', 'wp-includes/blocks/spacer/editor.css'),
(7643, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/editor.min.css', 'wp-includes/blocks/spacer/editor.min.css'),
(7644, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style-rtl.css', 'wp-includes/blocks/spacer/style-rtl.css'),
(7645, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style-rtl.min.css', 'wp-includes/blocks/spacer/style-rtl.min.css'),
(7646, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style.css', 'wp-includes/blocks/spacer/style.css'),
(7647, '/home/binawebp/omsrislb.my/wp-includes/blocks/spacer/style.min.css', 'wp-includes/blocks/spacer/style.min.css'),
(7648, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/block.json', 'wp-includes/blocks/table/block.json'),
(7649, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor-rtl.css', 'wp-includes/blocks/table/editor-rtl.css'),
(7650, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor-rtl.min.css', 'wp-includes/blocks/table/editor-rtl.min.css'),
(7651, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor.css', 'wp-includes/blocks/table/editor.css'),
(7652, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/editor.min.css', 'wp-includes/blocks/table/editor.min.css'),
(7653, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style-rtl.css', 'wp-includes/blocks/table/style-rtl.css'),
(7654, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style-rtl.min.css', 'wp-includes/blocks/table/style-rtl.min.css'),
(7655, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style.css', 'wp-includes/blocks/table/style.css'),
(7656, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/style.min.css', 'wp-includes/blocks/table/style.min.css'),
(7657, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme-rtl.css', 'wp-includes/blocks/table/theme-rtl.css'),
(7658, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme-rtl.min.css', 'wp-includes/blocks/table/theme-rtl.min.css'),
(7659, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme.css', 'wp-includes/blocks/table/theme.css'),
(7660, '/home/binawebp/omsrislb.my/wp-includes/blocks/table/theme.min.css', 'wp-includes/blocks/table/theme.min.css'),
(7661, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/block.json', 'wp-includes/blocks/tag-cloud/block.json'),
(7662, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor-rtl.css', 'wp-includes/blocks/tag-cloud/editor-rtl.css'),
(7663, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor-rtl.min.css', 'wp-includes/blocks/tag-cloud/editor-rtl.min.css'),
(7664, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor.css', 'wp-includes/blocks/tag-cloud/editor.css'),
(7665, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/editor.min.css', 'wp-includes/blocks/tag-cloud/editor.min.css'),
(7666, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style-rtl.css', 'wp-includes/blocks/tag-cloud/style-rtl.css'),
(7667, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style-rtl.min.css', 'wp-includes/blocks/tag-cloud/style-rtl.min.css'),
(7668, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style.css', 'wp-includes/blocks/tag-cloud/style.css'),
(7669, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud/style.min.css', 'wp-includes/blocks/tag-cloud/style.min.css'),
(7670, '/home/binawebp/omsrislb.my/wp-includes/blocks/tag-cloud.php', 'wp-includes/blocks/tag-cloud.php'),
(7671, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/block.json', 'wp-includes/blocks/template-part/block.json'),
(7672, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor-rtl.css', 'wp-includes/blocks/template-part/editor-rtl.css'),
(7673, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor-rtl.min.css', 'wp-includes/blocks/template-part/editor-rtl.min.css'),
(7674, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor.css', 'wp-includes/blocks/template-part/editor.css'),
(7675, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/editor.min.css', 'wp-includes/blocks/template-part/editor.min.css'),
(7676, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme-rtl.css', 'wp-includes/blocks/template-part/theme-rtl.css'),
(7677, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme-rtl.min.css', 'wp-includes/blocks/template-part/theme-rtl.min.css'),
(7678, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme.css', 'wp-includes/blocks/template-part/theme.css'),
(7679, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part/theme.min.css', 'wp-includes/blocks/template-part/theme.min.css'),
(7680, '/home/binawebp/omsrislb.my/wp-includes/blocks/template-part.php', 'wp-includes/blocks/template-part.php'),
(7681, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/block.json', 'wp-includes/blocks/term-count/block.json'),
(7682, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style-rtl.css', 'wp-includes/blocks/term-count/style-rtl.css'),
(7683, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style-rtl.min.css', 'wp-includes/blocks/term-count/style-rtl.min.css'),
(7684, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style.css', 'wp-includes/blocks/term-count/style.css'),
(7685, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count/style.min.css', 'wp-includes/blocks/term-count/style.min.css'),
(7686, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-count.php', 'wp-includes/blocks/term-count.php'),
(7687, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/block.json', 'wp-includes/blocks/term-description/block.json'),
(7688, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style-rtl.css', 'wp-includes/blocks/term-description/style-rtl.css'),
(7689, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style-rtl.min.css', 'wp-includes/blocks/term-description/style-rtl.min.css'),
(7690, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style.css', 'wp-includes/blocks/term-description/style.css'),
(7691, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description/style.min.css', 'wp-includes/blocks/term-description/style.min.css'),
(7692, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-description.php', 'wp-includes/blocks/term-description.php'),
(7693, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/block.json', 'wp-includes/blocks/term-name/block.json'),
(7694, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style-rtl.css', 'wp-includes/blocks/term-name/style-rtl.css'),
(7695, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style-rtl.min.css', 'wp-includes/blocks/term-name/style-rtl.min.css'),
(7696, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style.css', 'wp-includes/blocks/term-name/style.css'),
(7697, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name/style.min.css', 'wp-includes/blocks/term-name/style.min.css'),
(7698, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-name.php', 'wp-includes/blocks/term-name.php'),
(7699, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/block.json', 'wp-includes/blocks/term-template/block.json'),
(7700, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor-rtl.css', 'wp-includes/blocks/term-template/editor-rtl.css'),
(7701, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor-rtl.min.css', 'wp-includes/blocks/term-template/editor-rtl.min.css'),
(7702, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor.css', 'wp-includes/blocks/term-template/editor.css'),
(7703, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/editor.min.css', 'wp-includes/blocks/term-template/editor.min.css'),
(7704, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style-rtl.css', 'wp-includes/blocks/term-template/style-rtl.css'),
(7705, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style-rtl.min.css', 'wp-includes/blocks/term-template/style-rtl.min.css'),
(7706, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style.css', 'wp-includes/blocks/term-template/style.css'),
(7707, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template/style.min.css', 'wp-includes/blocks/term-template/style.min.css'),
(7708, '/home/binawebp/omsrislb.my/wp-includes/blocks/term-template.php', 'wp-includes/blocks/term-template.php'),
(7709, '/home/binawebp/omsrislb.my/wp-includes/blocks/terms-query/block.json', 'wp-includes/blocks/terms-query/block.json'),
(7710, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/block.json', 'wp-includes/blocks/text-columns/block.json'),
(7711, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor-rtl.css', 'wp-includes/blocks/text-columns/editor-rtl.css'),
(7712, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor-rtl.min.css', 'wp-includes/blocks/text-columns/editor-rtl.min.css'),
(7713, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor.css', 'wp-includes/blocks/text-columns/editor.css'),
(7714, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/editor.min.css', 'wp-includes/blocks/text-columns/editor.min.css'),
(7715, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style-rtl.css', 'wp-includes/blocks/text-columns/style-rtl.css'),
(7716, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style-rtl.min.css', 'wp-includes/blocks/text-columns/style-rtl.min.css'),
(7717, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style.css', 'wp-includes/blocks/text-columns/style.css'),
(7718, '/home/binawebp/omsrislb.my/wp-includes/blocks/text-columns/style.min.css', 'wp-includes/blocks/text-columns/style.min.css'),
(7719, '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/block.json', 'wp-includes/blocks/verse/block.json'),
(7720, '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style-rtl.css', 'wp-includes/blocks/verse/style-rtl.css'),
(7721, '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style-rtl.min.css', 'wp-includes/blocks/verse/style-rtl.min.css'),
(7722, '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style.css', 'wp-includes/blocks/verse/style.css'),
(7723, '/home/binawebp/omsrislb.my/wp-includes/blocks/verse/style.min.css', 'wp-includes/blocks/verse/style.min.css'),
(7724, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/block.json', 'wp-includes/blocks/video/block.json'),
(7725, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor-rtl.css', 'wp-includes/blocks/video/editor-rtl.css'),
(7726, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor-rtl.min.css', 'wp-includes/blocks/video/editor-rtl.min.css'),
(7727, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor.css', 'wp-includes/blocks/video/editor.css'),
(7728, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/editor.min.css', 'wp-includes/blocks/video/editor.min.css'),
(7729, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style-rtl.css', 'wp-includes/blocks/video/style-rtl.css'),
(7730, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style-rtl.min.css', 'wp-includes/blocks/video/style-rtl.min.css'),
(7731, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style.css', 'wp-includes/blocks/video/style.css'),
(7732, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/style.min.css', 'wp-includes/blocks/video/style.min.css'),
(7733, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme-rtl.css', 'wp-includes/blocks/video/theme-rtl.css'),
(7734, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme-rtl.min.css', 'wp-includes/blocks/video/theme-rtl.min.css'),
(7735, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme.css', 'wp-includes/blocks/video/theme.css'),
(7736, '/home/binawebp/omsrislb.my/wp-includes/blocks/video/theme.min.css', 'wp-includes/blocks/video/theme.min.css'),
(7737, '/home/binawebp/omsrislb.my/wp-includes/blocks/video.php', 'wp-includes/blocks/video.php'),
(7738, '/home/binawebp/omsrislb.my/wp-includes/blocks/widget-group/block.json', 'wp-includes/blocks/widget-group/block.json'),
(7739, '/home/binawebp/omsrislb.my/wp-includes/blocks/widget-group.php', 'wp-includes/blocks/widget-group.php'),
(7740, '/home/binawebp/omsrislb.my/wp-includes/blocks.php', 'wp-includes/blocks.php'),
(7741, '/home/binawebp/omsrislb.my/wp-includes/bookmark-template.php', 'wp-includes/bookmark-template.php'),
(7742, '/home/binawebp/omsrislb.my/wp-includes/bookmark.php', 'wp-includes/bookmark.php'),
(7743, '/home/binawebp/omsrislb.my/wp-includes/cache-compat.php', 'wp-includes/cache-compat.php'),
(7744, '/home/binawebp/omsrislb.my/wp-includes/cache.php', 'wp-includes/cache.php'),
(7745, '/home/binawebp/omsrislb.my/wp-includes/canonical.php', 'wp-includes/canonical.php'),
(7746, '/home/binawebp/omsrislb.my/wp-includes/capabilities.php', 'wp-includes/capabilities.php'),
(7747, '/home/binawebp/omsrislb.my/wp-includes/category-template.php', 'wp-includes/category-template.php'),
(7748, '/home/binawebp/omsrislb.my/wp-includes/category.php', 'wp-includes/category.php'),
(7749, '/home/binawebp/omsrislb.my/wp-includes/certificates/ca-bundle.crt', 'wp-includes/certificates/ca-bundle.crt'),
(7750, '/home/binawebp/omsrislb.my/wp-includes/class-IXR.php', 'wp-includes/class-IXR.php'),
(7751, '/home/binawebp/omsrislb.my/wp-includes/class-avif-info.php', 'wp-includes/class-avif-info.php'),
(7752, '/home/binawebp/omsrislb.my/wp-includes/class-feed.php', 'wp-includes/class-feed.php'),
(7753, '/home/binawebp/omsrislb.my/wp-includes/class-http.php', 'wp-includes/class-http.php'),
(7754, '/home/binawebp/omsrislb.my/wp-includes/class-json.php', 'wp-includes/class-json.php'),
(7755, '/home/binawebp/omsrislb.my/wp-includes/class-oembed.php', 'wp-includes/class-oembed.php'),
(7756, '/home/binawebp/omsrislb.my/wp-includes/class-phpass.php', 'wp-includes/class-phpass.php'),
(7757, '/home/binawebp/omsrislb.my/wp-includes/class-phpmailer.php', 'wp-includes/class-phpmailer.php'),
(7758, '/home/binawebp/omsrislb.my/wp-includes/class-pop3.php', 'wp-includes/class-pop3.php'),
(7759, '/home/binawebp/omsrislb.my/wp-includes/class-requests.php', 'wp-includes/class-requests.php'),
(7760, '/home/binawebp/omsrislb.my/wp-includes/class-simplepie.php', 'wp-includes/class-simplepie.php'),
(7761, '/home/binawebp/omsrislb.my/wp-includes/class-smtp.php', 'wp-includes/class-smtp.php'),
(7762, '/home/binawebp/omsrislb.my/wp-includes/class-snoopy.php', 'wp-includes/class-snoopy.php'),
(7763, '/home/binawebp/omsrislb.my/wp-includes/class-walker-category-dropdown.php', 'wp-includes/class-walker-category-dropdown.php'),
(7764, '/home/binawebp/omsrislb.my/wp-includes/class-walker-category.php', 'wp-includes/class-walker-category.php'),
(7765, '/home/binawebp/omsrislb.my/wp-includes/class-walker-comment.php', 'wp-includes/class-walker-comment.php'),
(7766, '/home/binawebp/omsrislb.my/wp-includes/class-walker-nav-menu.php', 'wp-includes/class-walker-nav-menu.php'),
(7767, '/home/binawebp/omsrislb.my/wp-includes/class-walker-page-dropdown.php', 'wp-includes/class-walker-page-dropdown.php'),
(7768, '/home/binawebp/omsrislb.my/wp-includes/class-walker-page.php', 'wp-includes/class-walker-page.php'),
(7769, '/home/binawebp/omsrislb.my/wp-includes/class-wp-admin-bar.php', 'wp-includes/class-wp-admin-bar.php'),
(7770, '/home/binawebp/omsrislb.my/wp-includes/class-wp-ajax-response.php', 'wp-includes/class-wp-ajax-response.php'),
(7771, '/home/binawebp/omsrislb.my/wp-includes/class-wp-application-passwords.php', 'wp-includes/class-wp-application-passwords.php'),
(7772, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-bindings-registry.php', 'wp-includes/class-wp-block-bindings-registry.php'),
(7773, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-bindings-source.php', 'wp-includes/class-wp-block-bindings-source.php'),
(7774, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-editor-context.php', 'wp-includes/class-wp-block-editor-context.php'),
(7775, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-list.php', 'wp-includes/class-wp-block-list.php'),
(7776, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-metadata-registry.php', 'wp-includes/class-wp-block-metadata-registry.php'),
(7777, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-parser-block.php', 'wp-includes/class-wp-block-parser-block.php'),
(7778, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-parser-frame.php', 'wp-includes/class-wp-block-parser-frame.php'),
(7779, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-parser.php', 'wp-includes/class-wp-block-parser.php'),
(7780, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-pattern-categories-registry.php', 'wp-includes/class-wp-block-pattern-categories-registry.php'),
(7781, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-patterns-registry.php', 'wp-includes/class-wp-block-patterns-registry.php'),
(7782, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-processor.php', 'wp-includes/class-wp-block-processor.php'),
(7783, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-styles-registry.php', 'wp-includes/class-wp-block-styles-registry.php'),
(7784, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-supports.php', 'wp-includes/class-wp-block-supports.php'),
(7785, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-template.php', 'wp-includes/class-wp-block-template.php'),
(7786, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-templates-registry.php', 'wp-includes/class-wp-block-templates-registry.php'),
(7787, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-type-registry.php', 'wp-includes/class-wp-block-type-registry.php'),
(7788, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block-type.php', 'wp-includes/class-wp-block-type.php'),
(7789, '/home/binawebp/omsrislb.my/wp-includes/class-wp-block.php', 'wp-includes/class-wp-block.php'),
(7790, '/home/binawebp/omsrislb.my/wp-includes/class-wp-classic-to-block-menu-converter.php', 'wp-includes/class-wp-classic-to-block-menu-converter.php'),
(7791, '/home/binawebp/omsrislb.my/wp-includes/class-wp-comment-query.php', 'wp-includes/class-wp-comment-query.php'),
(7792, '/home/binawebp/omsrislb.my/wp-includes/class-wp-comment.php', 'wp-includes/class-wp-comment.php'),
(7793, '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-control.php', 'wp-includes/class-wp-customize-control.php'),
(7794, '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-manager.php', 'wp-includes/class-wp-customize-manager.php'),
(7795, '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-nav-menus.php', 'wp-includes/class-wp-customize-nav-menus.php'),
(7796, '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-panel.php', 'wp-includes/class-wp-customize-panel.php'),
(7797, '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-section.php', 'wp-includes/class-wp-customize-section.php'),
(7798, '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-setting.php', 'wp-includes/class-wp-customize-setting.php'),
(7799, '/home/binawebp/omsrislb.my/wp-includes/class-wp-customize-widgets.php', 'wp-includes/class-wp-customize-widgets.php'),
(7800, '/home/binawebp/omsrislb.my/wp-includes/class-wp-date-query.php', 'wp-includes/class-wp-date-query.php'),
(7801, '/home/binawebp/omsrislb.my/wp-includes/class-wp-dependencies.php', 'wp-includes/class-wp-dependencies.php'),
(7802, '/home/binawebp/omsrislb.my/wp-includes/class-wp-dependency.php', 'wp-includes/class-wp-dependency.php'),
(7803, '/home/binawebp/omsrislb.my/wp-includes/class-wp-duotone.php', 'wp-includes/class-wp-duotone.php'),
(7804, '/home/binawebp/omsrislb.my/wp-includes/class-wp-editor.php', 'wp-includes/class-wp-editor.php'),
(7805, '/home/binawebp/omsrislb.my/wp-includes/class-wp-embed.php', 'wp-includes/class-wp-embed.php'),
(7806, '/home/binawebp/omsrislb.my/wp-includes/class-wp-error.php', 'wp-includes/class-wp-error.php'),
(7807, '/home/binawebp/omsrislb.my/wp-includes/class-wp-exception.php', 'wp-includes/class-wp-exception.php'),
(7808, '/home/binawebp/omsrislb.my/wp-includes/class-wp-fatal-error-handler.php', 'wp-includes/class-wp-fatal-error-handler.php'),
(7809, '/home/binawebp/omsrislb.my/wp-includes/class-wp-feed-cache-transient.php', 'wp-includes/class-wp-feed-cache-transient.php'),
(7810, '/home/binawebp/omsrislb.my/wp-includes/class-wp-feed-cache.php', 'wp-includes/class-wp-feed-cache.php'),
(7811, '/home/binawebp/omsrislb.my/wp-includes/class-wp-hook.php', 'wp-includes/class-wp-hook.php'),
(7812, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-cookie.php', 'wp-includes/class-wp-http-cookie.php'),
(7813, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-curl.php', 'wp-includes/class-wp-http-curl.php'),
(7814, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-encoding.php', 'wp-includes/class-wp-http-encoding.php'),
(7815, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-ixr-client.php', 'wp-includes/class-wp-http-ixr-client.php'),
(7816, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-proxy.php', 'wp-includes/class-wp-http-proxy.php'),
(7817, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-requests-hooks.php', 'wp-includes/class-wp-http-requests-hooks.php'),
(7818, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-requests-response.php', 'wp-includes/class-wp-http-requests-response.php'),
(7819, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-response.php', 'wp-includes/class-wp-http-response.php'),
(7820, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http-streams.php', 'wp-includes/class-wp-http-streams.php'),
(7821, '/home/binawebp/omsrislb.my/wp-includes/class-wp-http.php', 'wp-includes/class-wp-http.php'),
(7822, '/home/binawebp/omsrislb.my/wp-includes/class-wp-image-editor-gd.php', 'wp-includes/class-wp-image-editor-gd.php'),
(7823, '/home/binawebp/omsrislb.my/wp-includes/class-wp-image-editor-imagick.php', 'wp-includes/class-wp-image-editor-imagick.php'),
(7824, '/home/binawebp/omsrislb.my/wp-includes/class-wp-image-editor.php', 'wp-includes/class-wp-image-editor.php'),
(7825, '/home/binawebp/omsrislb.my/wp-includes/class-wp-list-util.php', 'wp-includes/class-wp-list-util.php'),
(7826, '/home/binawebp/omsrislb.my/wp-includes/class-wp-locale-switcher.php', 'wp-includes/class-wp-locale-switcher.php'),
(7827, '/home/binawebp/omsrislb.my/wp-includes/class-wp-locale.php', 'wp-includes/class-wp-locale.php'),
(7828, '/home/binawebp/omsrislb.my/wp-includes/class-wp-matchesmapregex.php', 'wp-includes/class-wp-matchesmapregex.php'),
(7829, '/home/binawebp/omsrislb.my/wp-includes/class-wp-meta-query.php', 'wp-includes/class-wp-meta-query.php'),
(7830, '/home/binawebp/omsrislb.my/wp-includes/class-wp-metadata-lazyloader.php', 'wp-includes/class-wp-metadata-lazyloader.php'),
(7831, '/home/binawebp/omsrislb.my/wp-includes/class-wp-navigation-fallback.php', 'wp-includes/class-wp-navigation-fallback.php'),
(7832, '/home/binawebp/omsrislb.my/wp-includes/class-wp-network-query.php', 'wp-includes/class-wp-network-query.php'),
(7833, '/home/binawebp/omsrislb.my/wp-includes/class-wp-network.php', 'wp-includes/class-wp-network.php'),
(7834, '/home/binawebp/omsrislb.my/wp-includes/class-wp-object-cache.php', 'wp-includes/class-wp-object-cache.php'),
(7835, '/home/binawebp/omsrislb.my/wp-includes/class-wp-oembed-controller.php', 'wp-includes/class-wp-oembed-controller.php'),
(7836, '/home/binawebp/omsrislb.my/wp-includes/class-wp-oembed.php', 'wp-includes/class-wp-oembed.php'),
(7837, '/home/binawebp/omsrislb.my/wp-includes/class-wp-paused-extensions-storage.php', 'wp-includes/class-wp-paused-extensions-storage.php'),
(7838, '/home/binawebp/omsrislb.my/wp-includes/class-wp-phpmailer.php', 'wp-includes/class-wp-phpmailer.php'),
(7839, '/home/binawebp/omsrislb.my/wp-includes/class-wp-plugin-dependencies.php', 'wp-includes/class-wp-plugin-dependencies.php'),
(7840, '/home/binawebp/omsrislb.my/wp-includes/class-wp-post-type.php', 'wp-includes/class-wp-post-type.php'),
(7841, '/home/binawebp/omsrislb.my/wp-includes/class-wp-post.php', 'wp-includes/class-wp-post.php'),
(7842, '/home/binawebp/omsrislb.my/wp-includes/class-wp-query.php', 'wp-includes/class-wp-query.php'),
(7843, '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-cookie-service.php', 'wp-includes/class-wp-recovery-mode-cookie-service.php'),
(7844, '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-email-service.php', 'wp-includes/class-wp-recovery-mode-email-service.php'),
(7845, '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-key-service.php', 'wp-includes/class-wp-recovery-mode-key-service.php'),
(7846, '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode-link-service.php', 'wp-includes/class-wp-recovery-mode-link-service.php'),
(7847, '/home/binawebp/omsrislb.my/wp-includes/class-wp-recovery-mode.php', 'wp-includes/class-wp-recovery-mode.php'),
(7848, '/home/binawebp/omsrislb.my/wp-includes/class-wp-rewrite.php', 'wp-includes/class-wp-rewrite.php'),
(7849, '/home/binawebp/omsrislb.my/wp-includes/class-wp-role.php', 'wp-includes/class-wp-role.php'),
(7850, '/home/binawebp/omsrislb.my/wp-includes/class-wp-roles.php', 'wp-includes/class-wp-roles.php'),
(7851, '/home/binawebp/omsrislb.my/wp-includes/class-wp-script-modules.php', 'wp-includes/class-wp-script-modules.php'),
(7852, '/home/binawebp/omsrislb.my/wp-includes/class-wp-scripts.php', 'wp-includes/class-wp-scripts.php'),
(7853, '/home/binawebp/omsrislb.my/wp-includes/class-wp-session-tokens.php', 'wp-includes/class-wp-session-tokens.php'),
(7854, '/home/binawebp/omsrislb.my/wp-includes/class-wp-simplepie-file.php', 'wp-includes/class-wp-simplepie-file.php'),
(7855, '/home/binawebp/omsrislb.my/wp-includes/class-wp-simplepie-sanitize-kses.php', 'wp-includes/class-wp-simplepie-sanitize-kses.php'),
(7856, '/home/binawebp/omsrislb.my/wp-includes/class-wp-site-query.php', 'wp-includes/class-wp-site-query.php'),
(7857, '/home/binawebp/omsrislb.my/wp-includes/class-wp-site.php', 'wp-includes/class-wp-site.php'),
(7858, '/home/binawebp/omsrislb.my/wp-includes/class-wp-speculation-rules.php', 'wp-includes/class-wp-speculation-rules.php'),
(7859, '/home/binawebp/omsrislb.my/wp-includes/class-wp-styles.php', 'wp-includes/class-wp-styles.php'),
(7860, '/home/binawebp/omsrislb.my/wp-includes/class-wp-tax-query.php', 'wp-includes/class-wp-tax-query.php'),
(7861, '/home/binawebp/omsrislb.my/wp-includes/class-wp-taxonomy.php', 'wp-includes/class-wp-taxonomy.php'),
(7862, '/home/binawebp/omsrislb.my/wp-includes/class-wp-term-query.php', 'wp-includes/class-wp-term-query.php'),
(7863, '/home/binawebp/omsrislb.my/wp-includes/class-wp-term.php', 'wp-includes/class-wp-term.php'),
(7864, '/home/binawebp/omsrislb.my/wp-includes/class-wp-text-diff-renderer-inline.php', 'wp-includes/class-wp-text-diff-renderer-inline.php'),
(7865, '/home/binawebp/omsrislb.my/wp-includes/class-wp-text-diff-renderer-table.php', 'wp-includes/class-wp-text-diff-renderer-table.php'),
(7866, '/home/binawebp/omsrislb.my/wp-includes/class-wp-textdomain-registry.php', 'wp-includes/class-wp-textdomain-registry.php'),
(7867, '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json-data.php', 'wp-includes/class-wp-theme-json-data.php'),
(7868, '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json-resolver.php', 'wp-includes/class-wp-theme-json-resolver.php'),
(7869, '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json-schema.php', 'wp-includes/class-wp-theme-json-schema.php'),
(7870, '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme-json.php', 'wp-includes/class-wp-theme-json.php'),
(7871, '/home/binawebp/omsrislb.my/wp-includes/class-wp-theme.php', 'wp-includes/class-wp-theme.php'),
(7872, '/home/binawebp/omsrislb.my/wp-includes/class-wp-token-map.php', 'wp-includes/class-wp-token-map.php'),
(7873, '/home/binawebp/omsrislb.my/wp-includes/class-wp-url-pattern-prefixer.php', 'wp-includes/class-wp-url-pattern-prefixer.php'),
(7874, '/home/binawebp/omsrislb.my/wp-includes/class-wp-user-meta-session-tokens.php', 'wp-includes/class-wp-user-meta-session-tokens.php'),
(7875, '/home/binawebp/omsrislb.my/wp-includes/class-wp-user-query.php', 'wp-includes/class-wp-user-query.php'),
(7876, '/home/binawebp/omsrislb.my/wp-includes/class-wp-user-request.php', 'wp-includes/class-wp-user-request.php'),
(7877, '/home/binawebp/omsrislb.my/wp-includes/class-wp-user.php', 'wp-includes/class-wp-user.php'),
(7878, '/home/binawebp/omsrislb.my/wp-includes/class-wp-walker.php', 'wp-includes/class-wp-walker.php'),
(7879, '/home/binawebp/omsrislb.my/wp-includes/class-wp-widget-factory.php', 'wp-includes/class-wp-widget-factory.php'),
(7880, '/home/binawebp/omsrislb.my/wp-includes/class-wp-widget.php', 'wp-includes/class-wp-widget.php'),
(7881, '/home/binawebp/omsrislb.my/wp-includes/class-wp-xmlrpc-server.php', 'wp-includes/class-wp-xmlrpc-server.php'),
(7882, '/home/binawebp/omsrislb.my/wp-includes/class-wp.php', 'wp-includes/class-wp.php'),
(7883, '/home/binawebp/omsrislb.my/wp-includes/class-wpdb.php', 'wp-includes/class-wpdb.php'),
(7884, '/home/binawebp/omsrislb.my/wp-includes/class.wp-dependencies.php', 'wp-includes/class.wp-dependencies.php'),
(7885, '/home/binawebp/omsrislb.my/wp-includes/class.wp-scripts.php', 'wp-includes/class.wp-scripts.php'),
(7886, '/home/binawebp/omsrislb.my/wp-includes/class.wp-styles.php', 'wp-includes/class.wp-styles.php'),
(7887, '/home/binawebp/omsrislb.my/wp-includes/comment-template.php', 'wp-includes/comment-template.php'),
(7888, '/home/binawebp/omsrislb.my/wp-includes/comment.php', 'wp-includes/comment.php'),
(7889, '/home/binawebp/omsrislb.my/wp-includes/compat-utf8.php', 'wp-includes/compat-utf8.php'),
(7890, '/home/binawebp/omsrislb.my/wp-includes/compat.php', 'wp-includes/compat.php'),
(7891, '/home/binawebp/omsrislb.my/wp-includes/cron.php', 'wp-includes/cron.php'),
(7892, '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar-rtl.css', 'wp-includes/css/admin-bar-rtl.css'),
(7893, '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar-rtl.min.css', 'wp-includes/css/admin-bar-rtl.min.css'),
(7894, '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar.css', 'wp-includes/css/admin-bar.css'),
(7895, '/home/binawebp/omsrislb.my/wp-includes/css/admin-bar.min.css', 'wp-includes/css/admin-bar.min.css'),
(7896, '/home/binawebp/omsrislb.my/wp-includes/css/buttons-rtl.css', 'wp-includes/css/buttons-rtl.css'),
(7897, '/home/binawebp/omsrislb.my/wp-includes/css/buttons-rtl.min.css', 'wp-includes/css/buttons-rtl.min.css'),
(7898, '/home/binawebp/omsrislb.my/wp-includes/css/buttons.css', 'wp-includes/css/buttons.css'),
(7899, '/home/binawebp/omsrislb.my/wp-includes/css/buttons.min.css', 'wp-includes/css/buttons.min.css'),
(7900, '/home/binawebp/omsrislb.my/wp-includes/css/classic-themes.css', 'wp-includes/css/classic-themes.css'),
(7901, '/home/binawebp/omsrislb.my/wp-includes/css/classic-themes.min.css', 'wp-includes/css/classic-themes.min.css'),
(7902, '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview-rtl.css', 'wp-includes/css/customize-preview-rtl.css'),
(7903, '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview-rtl.min.css', 'wp-includes/css/customize-preview-rtl.min.css'),
(7904, '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview.css', 'wp-includes/css/customize-preview.css'),
(7905, '/home/binawebp/omsrislb.my/wp-includes/css/customize-preview.min.css', 'wp-includes/css/customize-preview.min.css'),
(7906, '/home/binawebp/omsrislb.my/wp-includes/css/dashicons.css', 'wp-includes/css/dashicons.css'),
(7907, '/home/binawebp/omsrislb.my/wp-includes/css/dashicons.min.css', 'wp-includes/css/dashicons.min.css'),
(7908, '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style-rtl.css', 'wp-includes/css/dist/admin-ui/style-rtl.css'),
(7909, '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style-rtl.min.css', 'wp-includes/css/dist/admin-ui/style-rtl.min.css'),
(7910, '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style.css', 'wp-includes/css/dist/admin-ui/style.css'),
(7911, '/home/binawebp/omsrislb.my/wp-includes/css/dist/admin-ui/style.min.css', 'wp-includes/css/dist/admin-ui/style.min.css'),
(7912, '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes-rtl.css', 'wp-includes/css/dist/base-styles/admin-schemes-rtl.css'),
(7913, '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes-rtl.min.css', 'wp-includes/css/dist/base-styles/admin-schemes-rtl.min.css'),
(7914, '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes.css', 'wp-includes/css/dist/base-styles/admin-schemes.css'),
(7915, '/home/binawebp/omsrislb.my/wp-includes/css/dist/base-styles/admin-schemes.min.css', 'wp-includes/css/dist/base-styles/admin-schemes.min.css'),
(7916, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style-rtl.css', 'wp-includes/css/dist/block-directory/style-rtl.css'),
(7917, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style-rtl.min.css', 'wp-includes/css/dist/block-directory/style-rtl.min.css'),
(7918, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style.css', 'wp-includes/css/dist/block-directory/style.css'),
(7919, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-directory/style.min.css', 'wp-includes/css/dist/block-directory/style.min.css'),
(7920, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content-rtl.css', 'wp-includes/css/dist/block-editor/content-rtl.css'),
(7921, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content-rtl.min.css', 'wp-includes/css/dist/block-editor/content-rtl.min.css'),
(7922, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content.css', 'wp-includes/css/dist/block-editor/content.css'),
(7923, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/content.min.css', 'wp-includes/css/dist/block-editor/content.min.css'),
(7924, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles-rtl.css', 'wp-includes/css/dist/block-editor/default-editor-styles-rtl.css'),
(7925, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css', 'wp-includes/css/dist/block-editor/default-editor-styles-rtl.min.css'),
(7926, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles.css', 'wp-includes/css/dist/block-editor/default-editor-styles.css'),
(7927, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/default-editor-styles.min.css', 'wp-includes/css/dist/block-editor/default-editor-styles.min.css'),
(7928, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style-rtl.css', 'wp-includes/css/dist/block-editor/style-rtl.css'),
(7929, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style-rtl.min.css', 'wp-includes/css/dist/block-editor/style-rtl.min.css'),
(7930, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style.css', 'wp-includes/css/dist/block-editor/style.css'),
(7931, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-editor/style.min.css', 'wp-includes/css/dist/block-editor/style.min.css'),
(7932, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic-rtl.css', 'wp-includes/css/dist/block-library/classic-rtl.css'),
(7933, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic-rtl.min.css', 'wp-includes/css/dist/block-library/classic-rtl.min.css');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(7934, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic.css', 'wp-includes/css/dist/block-library/classic.css'),
(7935, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/classic.min.css', 'wp-includes/css/dist/block-library/classic.min.css'),
(7936, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common-rtl.css', 'wp-includes/css/dist/block-library/common-rtl.css'),
(7937, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common-rtl.min.css', 'wp-includes/css/dist/block-library/common-rtl.min.css'),
(7938, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common.css', 'wp-includes/css/dist/block-library/common.css'),
(7939, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/common.min.css', 'wp-includes/css/dist/block-library/common.min.css'),
(7940, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements-rtl.css', 'wp-includes/css/dist/block-library/editor-elements-rtl.css'),
(7941, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements-rtl.min.css', 'wp-includes/css/dist/block-library/editor-elements-rtl.min.css'),
(7942, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements.css', 'wp-includes/css/dist/block-library/editor-elements.css'),
(7943, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-elements.min.css', 'wp-includes/css/dist/block-library/editor-elements.min.css'),
(7944, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-rtl.css', 'wp-includes/css/dist/block-library/editor-rtl.css'),
(7945, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor-rtl.min.css', 'wp-includes/css/dist/block-library/editor-rtl.min.css'),
(7946, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor.css', 'wp-includes/css/dist/block-library/editor.css'),
(7947, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/editor.min.css', 'wp-includes/css/dist/block-library/editor.min.css'),
(7948, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements-rtl.css', 'wp-includes/css/dist/block-library/elements-rtl.css'),
(7949, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements-rtl.min.css', 'wp-includes/css/dist/block-library/elements-rtl.min.css'),
(7950, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements.css', 'wp-includes/css/dist/block-library/elements.css'),
(7951, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/elements.min.css', 'wp-includes/css/dist/block-library/elements.min.css'),
(7952, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset-rtl.css', 'wp-includes/css/dist/block-library/reset-rtl.css'),
(7953, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset-rtl.min.css', 'wp-includes/css/dist/block-library/reset-rtl.min.css'),
(7954, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset.css', 'wp-includes/css/dist/block-library/reset.css'),
(7955, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/reset.min.css', 'wp-includes/css/dist/block-library/reset.min.css'),
(7956, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style-rtl.css', 'wp-includes/css/dist/block-library/style-rtl.css'),
(7957, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style-rtl.min.css', 'wp-includes/css/dist/block-library/style-rtl.min.css'),
(7958, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style.css', 'wp-includes/css/dist/block-library/style.css'),
(7959, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/style.min.css', 'wp-includes/css/dist/block-library/style.min.css'),
(7960, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme-rtl.css', 'wp-includes/css/dist/block-library/theme-rtl.css'),
(7961, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme-rtl.min.css', 'wp-includes/css/dist/block-library/theme-rtl.min.css'),
(7962, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme.css', 'wp-includes/css/dist/block-library/theme.css'),
(7963, '/home/binawebp/omsrislb.my/wp-includes/css/dist/block-library/theme.min.css', 'wp-includes/css/dist/block-library/theme.min.css'),
(7964, '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style-rtl.css', 'wp-includes/css/dist/commands/style-rtl.css'),
(7965, '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style-rtl.min.css', 'wp-includes/css/dist/commands/style-rtl.min.css'),
(7966, '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style.css', 'wp-includes/css/dist/commands/style.css'),
(7967, '/home/binawebp/omsrislb.my/wp-includes/css/dist/commands/style.min.css', 'wp-includes/css/dist/commands/style.min.css'),
(7968, '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style-rtl.css', 'wp-includes/css/dist/components/style-rtl.css'),
(7969, '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style-rtl.min.css', 'wp-includes/css/dist/components/style-rtl.min.css'),
(7970, '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style.css', 'wp-includes/css/dist/components/style.css'),
(7971, '/home/binawebp/omsrislb.my/wp-includes/css/dist/components/style.min.css', 'wp-includes/css/dist/components/style.min.css'),
(7972, '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style-rtl.css', 'wp-includes/css/dist/customize-widgets/style-rtl.css'),
(7973, '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style-rtl.min.css', 'wp-includes/css/dist/customize-widgets/style-rtl.min.css'),
(7974, '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style.css', 'wp-includes/css/dist/customize-widgets/style.css'),
(7975, '/home/binawebp/omsrislb.my/wp-includes/css/dist/customize-widgets/style.min.css', 'wp-includes/css/dist/customize-widgets/style.min.css'),
(7976, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic-rtl.css', 'wp-includes/css/dist/edit-post/classic-rtl.css'),
(7977, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic-rtl.min.css', 'wp-includes/css/dist/edit-post/classic-rtl.min.css'),
(7978, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic.css', 'wp-includes/css/dist/edit-post/classic.css'),
(7979, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/classic.min.css', 'wp-includes/css/dist/edit-post/classic.min.css'),
(7980, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style-rtl.css', 'wp-includes/css/dist/edit-post/style-rtl.css'),
(7981, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style-rtl.min.css', 'wp-includes/css/dist/edit-post/style-rtl.min.css'),
(7982, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style.css', 'wp-includes/css/dist/edit-post/style.css'),
(7983, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-post/style.min.css', 'wp-includes/css/dist/edit-post/style.min.css'),
(7984, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts-rtl.css', 'wp-includes/css/dist/edit-site/posts-rtl.css'),
(7985, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts-rtl.min.css', 'wp-includes/css/dist/edit-site/posts-rtl.min.css'),
(7986, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts.css', 'wp-includes/css/dist/edit-site/posts.css'),
(7987, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/posts.min.css', 'wp-includes/css/dist/edit-site/posts.min.css'),
(7988, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style-rtl.css', 'wp-includes/css/dist/edit-site/style-rtl.css'),
(7989, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style-rtl.min.css', 'wp-includes/css/dist/edit-site/style-rtl.min.css'),
(7990, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style.css', 'wp-includes/css/dist/edit-site/style.css'),
(7991, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-site/style.min.css', 'wp-includes/css/dist/edit-site/style.min.css'),
(7992, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style-rtl.css', 'wp-includes/css/dist/edit-widgets/style-rtl.css'),
(7993, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style-rtl.min.css', 'wp-includes/css/dist/edit-widgets/style-rtl.min.css'),
(7994, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style.css', 'wp-includes/css/dist/edit-widgets/style.css'),
(7995, '/home/binawebp/omsrislb.my/wp-includes/css/dist/edit-widgets/style.min.css', 'wp-includes/css/dist/edit-widgets/style.min.css'),
(7996, '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style-rtl.css', 'wp-includes/css/dist/editor/style-rtl.css'),
(7997, '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style-rtl.min.css', 'wp-includes/css/dist/editor/style-rtl.min.css'),
(7998, '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style.css', 'wp-includes/css/dist/editor/style.css'),
(7999, '/home/binawebp/omsrislb.my/wp-includes/css/dist/editor/style.min.css', 'wp-includes/css/dist/editor/style.min.css'),
(8000, '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style-rtl.css', 'wp-includes/css/dist/format-library/style-rtl.css'),
(8001, '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style-rtl.min.css', 'wp-includes/css/dist/format-library/style-rtl.min.css'),
(8002, '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style.css', 'wp-includes/css/dist/format-library/style.css'),
(8003, '/home/binawebp/omsrislb.my/wp-includes/css/dist/format-library/style.min.css', 'wp-includes/css/dist/format-library/style.min.css'),
(8004, '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style-rtl.css', 'wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),
(8005, '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css', 'wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),
(8006, '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style.css', 'wp-includes/css/dist/list-reusable-blocks/style.css'),
(8007, '/home/binawebp/omsrislb.my/wp-includes/css/dist/list-reusable-blocks/style.min.css', 'wp-includes/css/dist/list-reusable-blocks/style.min.css'),
(8008, '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style-rtl.css', 'wp-includes/css/dist/nux/style-rtl.css'),
(8009, '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style-rtl.min.css', 'wp-includes/css/dist/nux/style-rtl.min.css'),
(8010, '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style.css', 'wp-includes/css/dist/nux/style.css'),
(8011, '/home/binawebp/omsrislb.my/wp-includes/css/dist/nux/style.min.css', 'wp-includes/css/dist/nux/style.min.css'),
(8012, '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style-rtl.css', 'wp-includes/css/dist/patterns/style-rtl.css'),
(8013, '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style-rtl.min.css', 'wp-includes/css/dist/patterns/style-rtl.min.css'),
(8014, '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style.css', 'wp-includes/css/dist/patterns/style.css'),
(8015, '/home/binawebp/omsrislb.my/wp-includes/css/dist/patterns/style.min.css', 'wp-includes/css/dist/patterns/style.min.css'),
(8016, '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style-rtl.css', 'wp-includes/css/dist/preferences/style-rtl.css'),
(8017, '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style-rtl.min.css', 'wp-includes/css/dist/preferences/style-rtl.min.css'),
(8018, '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style.css', 'wp-includes/css/dist/preferences/style.css'),
(8019, '/home/binawebp/omsrislb.my/wp-includes/css/dist/preferences/style.min.css', 'wp-includes/css/dist/preferences/style.min.css'),
(8020, '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style-rtl.css', 'wp-includes/css/dist/reusable-blocks/style-rtl.css'),
(8021, '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style-rtl.min.css', 'wp-includes/css/dist/reusable-blocks/style-rtl.min.css'),
(8022, '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style.css', 'wp-includes/css/dist/reusable-blocks/style.css'),
(8023, '/home/binawebp/omsrislb.my/wp-includes/css/dist/reusable-blocks/style.min.css', 'wp-includes/css/dist/reusable-blocks/style.min.css'),
(8024, '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style-rtl.css', 'wp-includes/css/dist/widgets/style-rtl.css'),
(8025, '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style-rtl.min.css', 'wp-includes/css/dist/widgets/style-rtl.min.css'),
(8026, '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style.css', 'wp-includes/css/dist/widgets/style.css'),
(8027, '/home/binawebp/omsrislb.my/wp-includes/css/dist/widgets/style.min.css', 'wp-includes/css/dist/widgets/style.min.css'),
(8028, '/home/binawebp/omsrislb.my/wp-includes/css/editor-rtl.css', 'wp-includes/css/editor-rtl.css'),
(8029, '/home/binawebp/omsrislb.my/wp-includes/css/editor-rtl.min.css', 'wp-includes/css/editor-rtl.min.css'),
(8030, '/home/binawebp/omsrislb.my/wp-includes/css/editor.css', 'wp-includes/css/editor.css'),
(8031, '/home/binawebp/omsrislb.my/wp-includes/css/editor.min.css', 'wp-includes/css/editor.min.css'),
(8032, '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog-rtl.css', 'wp-includes/css/jquery-ui-dialog-rtl.css'),
(8033, '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog-rtl.min.css', 'wp-includes/css/jquery-ui-dialog-rtl.min.css'),
(8034, '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog.css', 'wp-includes/css/jquery-ui-dialog.css'),
(8035, '/home/binawebp/omsrislb.my/wp-includes/css/jquery-ui-dialog.min.css', 'wp-includes/css/jquery-ui-dialog.min.css'),
(8036, '/home/binawebp/omsrislb.my/wp-includes/css/media-views-rtl.css', 'wp-includes/css/media-views-rtl.css'),
(8037, '/home/binawebp/omsrislb.my/wp-includes/css/media-views-rtl.min.css', 'wp-includes/css/media-views-rtl.min.css'),
(8038, '/home/binawebp/omsrislb.my/wp-includes/css/media-views.css', 'wp-includes/css/media-views.css'),
(8039, '/home/binawebp/omsrislb.my/wp-includes/css/media-views.min.css', 'wp-includes/css/media-views.min.css'),
(8040, '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check-rtl.css', 'wp-includes/css/wp-auth-check-rtl.css'),
(8041, '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check-rtl.min.css', 'wp-includes/css/wp-auth-check-rtl.min.css'),
(8042, '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check.css', 'wp-includes/css/wp-auth-check.css'),
(8043, '/home/binawebp/omsrislb.my/wp-includes/css/wp-auth-check.min.css', 'wp-includes/css/wp-auth-check.min.css'),
(8044, '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template-ie.css', 'wp-includes/css/wp-embed-template-ie.css'),
(8045, '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template-ie.min.css', 'wp-includes/css/wp-embed-template-ie.min.css'),
(8046, '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template.css', 'wp-includes/css/wp-embed-template.css'),
(8047, '/home/binawebp/omsrislb.my/wp-includes/css/wp-embed-template.min.css', 'wp-includes/css/wp-embed-template.min.css'),
(8048, '/home/binawebp/omsrislb.my/wp-includes/css/wp-empty-template-alert.css', 'wp-includes/css/wp-empty-template-alert.css'),
(8049, '/home/binawebp/omsrislb.my/wp-includes/css/wp-empty-template-alert.min.css', 'wp-includes/css/wp-empty-template-alert.min.css'),
(8050, '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer-rtl.css', 'wp-includes/css/wp-pointer-rtl.css'),
(8051, '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer-rtl.min.css', 'wp-includes/css/wp-pointer-rtl.min.css'),
(8052, '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer.css', 'wp-includes/css/wp-pointer.css'),
(8053, '/home/binawebp/omsrislb.my/wp-includes/css/wp-pointer.min.css', 'wp-includes/css/wp-pointer.min.css'),
(8054, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-background-image-control.php', 'wp-includes/customize/class-wp-customize-background-image-control.php'),
(8055, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-background-image-setting.php', 'wp-includes/customize/class-wp-customize-background-image-setting.php'),
(8056, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-background-position-control.php', 'wp-includes/customize/class-wp-customize-background-position-control.php'),
(8057, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-code-editor-control.php', 'wp-includes/customize/class-wp-customize-code-editor-control.php'),
(8058, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-color-control.php', 'wp-includes/customize/class-wp-customize-color-control.php'),
(8059, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-cropped-image-control.php', 'wp-includes/customize/class-wp-customize-cropped-image-control.php'),
(8060, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-custom-css-setting.php', 'wp-includes/customize/class-wp-customize-custom-css-setting.php'),
(8061, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-date-time-control.php', 'wp-includes/customize/class-wp-customize-date-time-control.php'),
(8062, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-filter-setting.php', 'wp-includes/customize/class-wp-customize-filter-setting.php'),
(8063, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-header-image-control.php', 'wp-includes/customize/class-wp-customize-header-image-control.php'),
(8064, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-header-image-setting.php', 'wp-includes/customize/class-wp-customize-header-image-setting.php'),
(8065, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-image-control.php', 'wp-includes/customize/class-wp-customize-image-control.php'),
(8066, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-media-control.php', 'wp-includes/customize/class-wp-customize-media-control.php'),
(8067, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php', 'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),
(8068, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-control.php', 'wp-includes/customize/class-wp-customize-nav-menu-control.php'),
(8069, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-item-control.php', 'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),
(8070, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php', 'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),
(8071, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-location-control.php', 'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),
(8072, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php', 'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),
(8073, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-name-control.php', 'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),
(8074, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-section.php', 'wp-includes/customize/class-wp-customize-nav-menu-section.php'),
(8075, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menu-setting.php', 'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),
(8076, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-nav-menus-panel.php', 'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),
(8077, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-new-menu-control.php', 'wp-includes/customize/class-wp-customize-new-menu-control.php'),
(8078, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-new-menu-section.php', 'wp-includes/customize/class-wp-customize-new-menu-section.php'),
(8079, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-partial.php', 'wp-includes/customize/class-wp-customize-partial.php'),
(8080, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-selective-refresh.php', 'wp-includes/customize/class-wp-customize-selective-refresh.php'),
(8081, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-sidebar-section.php', 'wp-includes/customize/class-wp-customize-sidebar-section.php'),
(8082, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-site-icon-control.php', 'wp-includes/customize/class-wp-customize-site-icon-control.php'),
(8083, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-theme-control.php', 'wp-includes/customize/class-wp-customize-theme-control.php'),
(8084, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-themes-panel.php', 'wp-includes/customize/class-wp-customize-themes-panel.php'),
(8085, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-themes-section.php', 'wp-includes/customize/class-wp-customize-themes-section.php'),
(8086, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-customize-upload-control.php', 'wp-includes/customize/class-wp-customize-upload-control.php'),
(8087, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-sidebar-block-editor-control.php', 'wp-includes/customize/class-wp-sidebar-block-editor-control.php'),
(8088, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-widget-area-customize-control.php', 'wp-includes/customize/class-wp-widget-area-customize-control.php'),
(8089, '/home/binawebp/omsrislb.my/wp-includes/customize/class-wp-widget-form-customize-control.php', 'wp-includes/customize/class-wp-widget-form-customize-control.php'),
(8090, '/home/binawebp/omsrislb.my/wp-includes/date.php', 'wp-includes/date.php'),
(8091, '/home/binawebp/omsrislb.my/wp-includes/default-constants.php', 'wp-includes/default-constants.php'),
(8092, '/home/binawebp/omsrislb.my/wp-includes/default-filters.php', 'wp-includes/default-filters.php'),
(8093, '/home/binawebp/omsrislb.my/wp-includes/default-widgets.php', 'wp-includes/default-widgets.php'),
(8094, '/home/binawebp/omsrislb.my/wp-includes/deprecated.php', 'wp-includes/deprecated.php'),
(8095, '/home/binawebp/omsrislb.my/wp-includes/embed-template.php', 'wp-includes/embed-template.php'),
(8096, '/home/binawebp/omsrislb.my/wp-includes/embed.php', 'wp-includes/embed.php'),
(8097, '/home/binawebp/omsrislb.my/wp-includes/error-protection.php', 'wp-includes/error-protection.php'),
(8098, '/home/binawebp/omsrislb.my/wp-includes/feed-atom-comments.php', 'wp-includes/feed-atom-comments.php'),
(8099, '/home/binawebp/omsrislb.my/wp-includes/feed-atom.php', 'wp-includes/feed-atom.php'),
(8100, '/home/binawebp/omsrislb.my/wp-includes/feed-rdf.php', 'wp-includes/feed-rdf.php'),
(8101, '/home/binawebp/omsrislb.my/wp-includes/feed-rss.php', 'wp-includes/feed-rss.php'),
(8102, '/home/binawebp/omsrislb.my/wp-includes/feed-rss2-comments.php', 'wp-includes/feed-rss2-comments.php'),
(8103, '/home/binawebp/omsrislb.my/wp-includes/feed-rss2.php', 'wp-includes/feed-rss2.php'),
(8104, '/home/binawebp/omsrislb.my/wp-includes/feed.php', 'wp-includes/feed.php'),
(8105, '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-collection.php', 'wp-includes/fonts/class-wp-font-collection.php'),
(8106, '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-face-resolver.php', 'wp-includes/fonts/class-wp-font-face-resolver.php'),
(8107, '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-face.php', 'wp-includes/fonts/class-wp-font-face.php'),
(8108, '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-library.php', 'wp-includes/fonts/class-wp-font-library.php'),
(8109, '/home/binawebp/omsrislb.my/wp-includes/fonts/class-wp-font-utils.php', 'wp-includes/fonts/class-wp-font-utils.php'),
(8110, '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.eot', 'wp-includes/fonts/dashicons.eot'),
(8111, '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.svg', 'wp-includes/fonts/dashicons.svg'),
(8112, '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.ttf', 'wp-includes/fonts/dashicons.ttf'),
(8113, '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.woff', 'wp-includes/fonts/dashicons.woff'),
(8114, '/home/binawebp/omsrislb.my/wp-includes/fonts/dashicons.woff2', 'wp-includes/fonts/dashicons.woff2'),
(8115, '/home/binawebp/omsrislb.my/wp-includes/fonts.php', 'wp-includes/fonts.php'),
(8116, '/home/binawebp/omsrislb.my/wp-includes/formatting.php', 'wp-includes/formatting.php'),
(8117, '/home/binawebp/omsrislb.my/wp-includes/functions.php', 'wp-includes/functions.php'),
(8118, '/home/binawebp/omsrislb.my/wp-includes/functions.wp-scripts.php', 'wp-includes/functions.wp-scripts.php'),
(8119, '/home/binawebp/omsrislb.my/wp-includes/functions.wp-styles.php', 'wp-includes/functions.wp-styles.php'),
(8120, '/home/binawebp/omsrislb.my/wp-includes/general-template.php', 'wp-includes/general-template.php'),
(8121, '/home/binawebp/omsrislb.my/wp-includes/global-styles-and-settings.php', 'wp-includes/global-styles-and-settings.php'),
(8122, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-active-formatting-elements.php', 'wp-includes/html-api/class-wp-html-active-formatting-elements.php'),
(8123, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-attribute-token.php', 'wp-includes/html-api/class-wp-html-attribute-token.php'),
(8124, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-decoder.php', 'wp-includes/html-api/class-wp-html-decoder.php'),
(8125, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-doctype-info.php', 'wp-includes/html-api/class-wp-html-doctype-info.php'),
(8126, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-open-elements.php', 'wp-includes/html-api/class-wp-html-open-elements.php'),
(8127, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-processor-state.php', 'wp-includes/html-api/class-wp-html-processor-state.php'),
(8128, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-processor.php', 'wp-includes/html-api/class-wp-html-processor.php'),
(8129, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-span.php', 'wp-includes/html-api/class-wp-html-span.php'),
(8130, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-stack-event.php', 'wp-includes/html-api/class-wp-html-stack-event.php'),
(8131, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-tag-processor.php', 'wp-includes/html-api/class-wp-html-tag-processor.php'),
(8132, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-text-replacement.php', 'wp-includes/html-api/class-wp-html-text-replacement.php'),
(8133, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-token.php', 'wp-includes/html-api/class-wp-html-token.php'),
(8134, '/home/binawebp/omsrislb.my/wp-includes/html-api/class-wp-html-unsupported-exception.php', 'wp-includes/html-api/class-wp-html-unsupported-exception.php'),
(8135, '/home/binawebp/omsrislb.my/wp-includes/html-api/html5-named-character-references.php', 'wp-includes/html-api/html5-named-character-references.php'),
(8136, '/home/binawebp/omsrislb.my/wp-includes/http.php', 'wp-includes/http.php'),
(8137, '/home/binawebp/omsrislb.my/wp-includes/https-detection.php', 'wp-includes/https-detection.php'),
(8138, '/home/binawebp/omsrislb.my/wp-includes/https-migration.php', 'wp-includes/https-migration.php'),
(8139, '/home/binawebp/omsrislb.my/wp-includes/images/admin-bar-sprite-2x.png', 'wp-includes/images/admin-bar-sprite-2x.png'),
(8140, '/home/binawebp/omsrislb.my/wp-includes/images/admin-bar-sprite.png', 'wp-includes/images/admin-bar-sprite.png'),
(8141, '/home/binawebp/omsrislb.my/wp-includes/images/arrow-pointer-blue-2x.png', 'wp-includes/images/arrow-pointer-blue-2x.png'),
(8142, '/home/binawebp/omsrislb.my/wp-includes/images/arrow-pointer-blue.png', 'wp-includes/images/arrow-pointer-blue.png'),
(8143, '/home/binawebp/omsrislb.my/wp-includes/images/blank.gif', 'wp-includes/images/blank.gif'),
(8144, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/archive.png', 'wp-includes/images/crystal/archive.png'),
(8145, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/audio.png', 'wp-includes/images/crystal/audio.png'),
(8146, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/code.png', 'wp-includes/images/crystal/code.png'),
(8147, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/default.png', 'wp-includes/images/crystal/default.png'),
(8148, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/document.png', 'wp-includes/images/crystal/document.png'),
(8149, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/interactive.png', 'wp-includes/images/crystal/interactive.png'),
(8150, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/license.txt', 'wp-includes/images/crystal/license.txt'),
(8151, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/spreadsheet.png', 'wp-includes/images/crystal/spreadsheet.png'),
(8152, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/text.png', 'wp-includes/images/crystal/text.png'),
(8153, '/home/binawebp/omsrislb.my/wp-includes/images/crystal/video.png', 'wp-includes/images/crystal/video.png'),
(8154, '/home/binawebp/omsrislb.my/wp-includes/images/down_arrow-2x.gif', 'wp-includes/images/down_arrow-2x.gif'),
(8155, '/home/binawebp/omsrislb.my/wp-includes/images/down_arrow.gif', 'wp-includes/images/down_arrow.gif'),
(8156, '/home/binawebp/omsrislb.my/wp-includes/images/icon-pointer-flag-2x.png', 'wp-includes/images/icon-pointer-flag-2x.png'),
(8157, '/home/binawebp/omsrislb.my/wp-includes/images/icon-pointer-flag.png', 'wp-includes/images/icon-pointer-flag.png'),
(8158, '/home/binawebp/omsrislb.my/wp-includes/images/media/archive.png', 'wp-includes/images/media/archive.png'),
(8159, '/home/binawebp/omsrislb.my/wp-includes/images/media/archive.svg', 'wp-includes/images/media/archive.svg'),
(8160, '/home/binawebp/omsrislb.my/wp-includes/images/media/audio.png', 'wp-includes/images/media/audio.png'),
(8161, '/home/binawebp/omsrislb.my/wp-includes/images/media/audio.svg', 'wp-includes/images/media/audio.svg'),
(8162, '/home/binawebp/omsrislb.my/wp-includes/images/media/code.png', 'wp-includes/images/media/code.png'),
(8163, '/home/binawebp/omsrislb.my/wp-includes/images/media/code.svg', 'wp-includes/images/media/code.svg'),
(8164, '/home/binawebp/omsrislb.my/wp-includes/images/media/default.png', 'wp-includes/images/media/default.png'),
(8165, '/home/binawebp/omsrislb.my/wp-includes/images/media/default.svg', 'wp-includes/images/media/default.svg'),
(8166, '/home/binawebp/omsrislb.my/wp-includes/images/media/document.png', 'wp-includes/images/media/document.png'),
(8167, '/home/binawebp/omsrislb.my/wp-includes/images/media/document.svg', 'wp-includes/images/media/document.svg'),
(8168, '/home/binawebp/omsrislb.my/wp-includes/images/media/interactive.png', 'wp-includes/images/media/interactive.png'),
(8169, '/home/binawebp/omsrislb.my/wp-includes/images/media/interactive.svg', 'wp-includes/images/media/interactive.svg'),
(8170, '/home/binawebp/omsrislb.my/wp-includes/images/media/spreadsheet.png', 'wp-includes/images/media/spreadsheet.png'),
(8171, '/home/binawebp/omsrislb.my/wp-includes/images/media/spreadsheet.svg', 'wp-includes/images/media/spreadsheet.svg'),
(8172, '/home/binawebp/omsrislb.my/wp-includes/images/media/text.png', 'wp-includes/images/media/text.png'),
(8173, '/home/binawebp/omsrislb.my/wp-includes/images/media/text.svg', 'wp-includes/images/media/text.svg'),
(8174, '/home/binawebp/omsrislb.my/wp-includes/images/media/video.png', 'wp-includes/images/media/video.png'),
(8175, '/home/binawebp/omsrislb.my/wp-includes/images/media/video.svg', 'wp-includes/images/media/video.svg'),
(8176, '/home/binawebp/omsrislb.my/wp-includes/images/rss-2x.png', 'wp-includes/images/rss-2x.png'),
(8177, '/home/binawebp/omsrislb.my/wp-includes/images/rss.png', 'wp-includes/images/rss.png'),
(8178, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/frownie.png', 'wp-includes/images/smilies/frownie.png'),
(8179, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_arrow.gif', 'wp-includes/images/smilies/icon_arrow.gif'),
(8180, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_biggrin.gif', 'wp-includes/images/smilies/icon_biggrin.gif'),
(8181, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_confused.gif', 'wp-includes/images/smilies/icon_confused.gif'),
(8182, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_cool.gif', 'wp-includes/images/smilies/icon_cool.gif'),
(8183, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_cry.gif', 'wp-includes/images/smilies/icon_cry.gif'),
(8184, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_eek.gif', 'wp-includes/images/smilies/icon_eek.gif'),
(8185, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_evil.gif', 'wp-includes/images/smilies/icon_evil.gif'),
(8186, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_exclaim.gif', 'wp-includes/images/smilies/icon_exclaim.gif'),
(8187, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_idea.gif', 'wp-includes/images/smilies/icon_idea.gif'),
(8188, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_lol.gif', 'wp-includes/images/smilies/icon_lol.gif'),
(8189, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_mad.gif', 'wp-includes/images/smilies/icon_mad.gif'),
(8190, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_mrgreen.gif', 'wp-includes/images/smilies/icon_mrgreen.gif'),
(8191, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_neutral.gif', 'wp-includes/images/smilies/icon_neutral.gif'),
(8192, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_question.gif', 'wp-includes/images/smilies/icon_question.gif'),
(8193, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_razz.gif', 'wp-includes/images/smilies/icon_razz.gif'),
(8194, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_redface.gif', 'wp-includes/images/smilies/icon_redface.gif'),
(8195, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_rolleyes.gif', 'wp-includes/images/smilies/icon_rolleyes.gif'),
(8196, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_sad.gif', 'wp-includes/images/smilies/icon_sad.gif'),
(8197, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_smile.gif', 'wp-includes/images/smilies/icon_smile.gif'),
(8198, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_surprised.gif', 'wp-includes/images/smilies/icon_surprised.gif'),
(8199, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_twisted.gif', 'wp-includes/images/smilies/icon_twisted.gif'),
(8200, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/icon_wink.gif', 'wp-includes/images/smilies/icon_wink.gif'),
(8201, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/mrgreen.png', 'wp-includes/images/smilies/mrgreen.png'),
(8202, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/rolleyes.png', 'wp-includes/images/smilies/rolleyes.png'),
(8203, '/home/binawebp/omsrislb.my/wp-includes/images/smilies/simple-smile.png', 'wp-includes/images/smilies/simple-smile.png'),
(8204, '/home/binawebp/omsrislb.my/wp-includes/images/spinner-2x.gif', 'wp-includes/images/spinner-2x.gif'),
(8205, '/home/binawebp/omsrislb.my/wp-includes/images/spinner.gif', 'wp-includes/images/spinner.gif'),
(8206, '/home/binawebp/omsrislb.my/wp-includes/images/toggle-arrow-2x.png', 'wp-includes/images/toggle-arrow-2x.png'),
(8207, '/home/binawebp/omsrislb.my/wp-includes/images/toggle-arrow.png', 'wp-includes/images/toggle-arrow.png'),
(8208, '/home/binawebp/omsrislb.my/wp-includes/images/uploader-icons-2x.png', 'wp-includes/images/uploader-icons-2x.png'),
(8209, '/home/binawebp/omsrislb.my/wp-includes/images/uploader-icons.png', 'wp-includes/images/uploader-icons.png'),
(8210, '/home/binawebp/omsrislb.my/wp-includes/images/w-logo-blue-white-bg.png', 'wp-includes/images/w-logo-blue-white-bg.png'),
(8211, '/home/binawebp/omsrislb.my/wp-includes/images/w-logo-blue.png', 'wp-includes/images/w-logo-blue.png'),
(8212, '/home/binawebp/omsrislb.my/wp-includes/images/wpicons-2x.png', 'wp-includes/images/wpicons-2x.png'),
(8213, '/home/binawebp/omsrislb.my/wp-includes/images/wpicons.png', 'wp-includes/images/wpicons.png'),
(8214, '/home/binawebp/omsrislb.my/wp-includes/images/wpspin-2x.gif', 'wp-includes/images/wpspin-2x.gif'),
(8215, '/home/binawebp/omsrislb.my/wp-includes/images/wpspin.gif', 'wp-includes/images/wpspin.gif'),
(8216, '/home/binawebp/omsrislb.my/wp-includes/images/xit-2x.gif', 'wp-includes/images/xit-2x.gif'),
(8217, '/home/binawebp/omsrislb.my/wp-includes/images/xit.gif', 'wp-includes/images/xit.gif'),
(8218, '/home/binawebp/omsrislb.my/wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php', 'wp-includes/interactivity-api/class-wp-interactivity-api-directives-processor.php'),
(8219, '/home/binawebp/omsrislb.my/wp-includes/interactivity-api/class-wp-interactivity-api.php', 'wp-includes/interactivity-api/class-wp-interactivity-api.php'),
(8220, '/home/binawebp/omsrislb.my/wp-includes/interactivity-api/interactivity-api.php', 'wp-includes/interactivity-api/interactivity-api.php'),
(8221, '/home/binawebp/omsrislb.my/wp-includes/js/admin-bar.js', 'wp-includes/js/admin-bar.js'),
(8222, '/home/binawebp/omsrislb.my/wp-includes/js/admin-bar.min.js', 'wp-includes/js/admin-bar.min.js'),
(8223, '/home/binawebp/omsrislb.my/wp-includes/js/api-request.js', 'wp-includes/js/api-request.js'),
(8224, '/home/binawebp/omsrislb.my/wp-includes/js/api-request.min.js', 'wp-includes/js/api-request.min.js'),
(8225, '/home/binawebp/omsrislb.my/wp-includes/js/autosave.js', 'wp-includes/js/autosave.js'),
(8226, '/home/binawebp/omsrislb.my/wp-includes/js/autosave.min.js', 'wp-includes/js/autosave.min.js'),
(8227, '/home/binawebp/omsrislb.my/wp-includes/js/backbone.js', 'wp-includes/js/backbone.js'),
(8228, '/home/binawebp/omsrislb.my/wp-includes/js/backbone.min.js', 'wp-includes/js/backbone.min.js'),
(8229, '/home/binawebp/omsrislb.my/wp-includes/js/clipboard.js', 'wp-includes/js/clipboard.js'),
(8230, '/home/binawebp/omsrislb.my/wp-includes/js/clipboard.min.js', 'wp-includes/js/clipboard.min.js'),
(8231, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/codemirror.min.css', 'wp-includes/js/codemirror/codemirror.min.css'),
(8232, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/codemirror.min.js', 'wp-includes/js/codemirror/codemirror.min.js'),
(8233, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/csslint.js', 'wp-includes/js/codemirror/csslint.js'),
(8234, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/esprima.js', 'wp-includes/js/codemirror/esprima.js'),
(8235, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/fakejshint.js', 'wp-includes/js/codemirror/fakejshint.js'),
(8236, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/htmlhint-kses.js', 'wp-includes/js/codemirror/htmlhint-kses.js'),
(8237, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/htmlhint.js', 'wp-includes/js/codemirror/htmlhint.js'),
(8238, '/home/binawebp/omsrislb.my/wp-includes/js/codemirror/jsonlint.js', 'wp-includes/js/codemirror/jsonlint.js'),
(8239, '/home/binawebp/omsrislb.my/wp-includes/js/colorpicker.js', 'wp-includes/js/colorpicker.js'),
(8240, '/home/binawebp/omsrislb.my/wp-includes/js/colorpicker.min.js', 'wp-includes/js/colorpicker.min.js'),
(8241, '/home/binawebp/omsrislb.my/wp-includes/js/comment-reply.js', 'wp-includes/js/comment-reply.js'),
(8242, '/home/binawebp/omsrislb.my/wp-includes/js/comment-reply.min.js', 'wp-includes/js/comment-reply.min.js'),
(8243, '/home/binawebp/omsrislb.my/wp-includes/js/crop/cropper.css', 'wp-includes/js/crop/cropper.css'),
(8244, '/home/binawebp/omsrislb.my/wp-includes/js/crop/cropper.js', 'wp-includes/js/crop/cropper.js'),
(8245, '/home/binawebp/omsrislb.my/wp-includes/js/crop/marqueeHoriz.gif', 'wp-includes/js/crop/marqueeHoriz.gif'),
(8246, '/home/binawebp/omsrislb.my/wp-includes/js/crop/marqueeVert.gif', 'wp-includes/js/crop/marqueeVert.gif'),
(8247, '/home/binawebp/omsrislb.my/wp-includes/js/customize-base.js', 'wp-includes/js/customize-base.js'),
(8248, '/home/binawebp/omsrislb.my/wp-includes/js/customize-base.min.js', 'wp-includes/js/customize-base.min.js'),
(8249, '/home/binawebp/omsrislb.my/wp-includes/js/customize-loader.js', 'wp-includes/js/customize-loader.js'),
(8250, '/home/binawebp/omsrislb.my/wp-includes/js/customize-loader.min.js', 'wp-includes/js/customize-loader.min.js'),
(8251, '/home/binawebp/omsrislb.my/wp-includes/js/customize-models.js', 'wp-includes/js/customize-models.js'),
(8252, '/home/binawebp/omsrislb.my/wp-includes/js/customize-models.min.js', 'wp-includes/js/customize-models.min.js'),
(8253, '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-nav-menus.js', 'wp-includes/js/customize-preview-nav-menus.js'),
(8254, '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-nav-menus.min.js', 'wp-includes/js/customize-preview-nav-menus.min.js'),
(8255, '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-widgets.js', 'wp-includes/js/customize-preview-widgets.js'),
(8256, '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview-widgets.min.js', 'wp-includes/js/customize-preview-widgets.min.js'),
(8257, '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview.js', 'wp-includes/js/customize-preview.js'),
(8258, '/home/binawebp/omsrislb.my/wp-includes/js/customize-preview.min.js', 'wp-includes/js/customize-preview.min.js'),
(8259, '/home/binawebp/omsrislb.my/wp-includes/js/customize-selective-refresh.js', 'wp-includes/js/customize-selective-refresh.js'),
(8260, '/home/binawebp/omsrislb.my/wp-includes/js/customize-selective-refresh.min.js', 'wp-includes/js/customize-selective-refresh.min.js'),
(8261, '/home/binawebp/omsrislb.my/wp-includes/js/customize-views.js', 'wp-includes/js/customize-views.js'),
(8262, '/home/binawebp/omsrislb.my/wp-includes/js/customize-views.min.js', 'wp-includes/js/customize-views.min.js'),
(8263, '/home/binawebp/omsrislb.my/wp-includes/js/dist/a11y.js', 'wp-includes/js/dist/a11y.js'),
(8264, '/home/binawebp/omsrislb.my/wp-includes/js/dist/a11y.min.js', 'wp-includes/js/dist/a11y.min.js'),
(8265, '/home/binawebp/omsrislb.my/wp-includes/js/dist/admin-ui.js', 'wp-includes/js/dist/admin-ui.js'),
(8266, '/home/binawebp/omsrislb.my/wp-includes/js/dist/admin-ui.min.js', 'wp-includes/js/dist/admin-ui.min.js'),
(8267, '/home/binawebp/omsrislb.my/wp-includes/js/dist/annotations.js', 'wp-includes/js/dist/annotations.js'),
(8268, '/home/binawebp/omsrislb.my/wp-includes/js/dist/annotations.min.js', 'wp-includes/js/dist/annotations.min.js'),
(8269, '/home/binawebp/omsrislb.my/wp-includes/js/dist/api-fetch.js', 'wp-includes/js/dist/api-fetch.js'),
(8270, '/home/binawebp/omsrislb.my/wp-includes/js/dist/api-fetch.min.js', 'wp-includes/js/dist/api-fetch.min.js'),
(8271, '/home/binawebp/omsrislb.my/wp-includes/js/dist/autop.js', 'wp-includes/js/dist/autop.js'),
(8272, '/home/binawebp/omsrislb.my/wp-includes/js/dist/autop.min.js', 'wp-includes/js/dist/autop.min.js'),
(8273, '/home/binawebp/omsrislb.my/wp-includes/js/dist/base-styles.js', 'wp-includes/js/dist/base-styles.js'),
(8274, '/home/binawebp/omsrislb.my/wp-includes/js/dist/base-styles.min.js', 'wp-includes/js/dist/base-styles.min.js'),
(8275, '/home/binawebp/omsrislb.my/wp-includes/js/dist/blob.js', 'wp-includes/js/dist/blob.js'),
(8276, '/home/binawebp/omsrislb.my/wp-includes/js/dist/blob.min.js', 'wp-includes/js/dist/blob.min.js'),
(8277, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-directory.js', 'wp-includes/js/dist/block-directory.js'),
(8278, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-directory.min.js', 'wp-includes/js/dist/block-directory.min.js'),
(8279, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-editor.js', 'wp-includes/js/dist/block-editor.js'),
(8280, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-editor.min.js', 'wp-includes/js/dist/block-editor.min.js'),
(8281, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-library.js', 'wp-includes/js/dist/block-library.js'),
(8282, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-library.min.js', 'wp-includes/js/dist/block-library.min.js'),
(8283, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-serialization-default-parser.js', 'wp-includes/js/dist/block-serialization-default-parser.js'),
(8284, '/home/binawebp/omsrislb.my/wp-includes/js/dist/block-serialization-default-parser.min.js', 'wp-includes/js/dist/block-serialization-default-parser.min.js'),
(8285, '/home/binawebp/omsrislb.my/wp-includes/js/dist/blocks.js', 'wp-includes/js/dist/blocks.js'),
(8286, '/home/binawebp/omsrislb.my/wp-includes/js/dist/blocks.min.js', 'wp-includes/js/dist/blocks.min.js'),
(8287, '/home/binawebp/omsrislb.my/wp-includes/js/dist/commands.js', 'wp-includes/js/dist/commands.js'),
(8288, '/home/binawebp/omsrislb.my/wp-includes/js/dist/commands.min.js', 'wp-includes/js/dist/commands.min.js'),
(8289, '/home/binawebp/omsrislb.my/wp-includes/js/dist/components.js', 'wp-includes/js/dist/components.js'),
(8290, '/home/binawebp/omsrislb.my/wp-includes/js/dist/components.min.js', 'wp-includes/js/dist/components.min.js'),
(8291, '/home/binawebp/omsrislb.my/wp-includes/js/dist/compose.js', 'wp-includes/js/dist/compose.js'),
(8292, '/home/binawebp/omsrislb.my/wp-includes/js/dist/compose.min.js', 'wp-includes/js/dist/compose.min.js'),
(8293, '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-commands.js', 'wp-includes/js/dist/core-commands.js'),
(8294, '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-commands.min.js', 'wp-includes/js/dist/core-commands.min.js'),
(8295, '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-data.js', 'wp-includes/js/dist/core-data.js'),
(8296, '/home/binawebp/omsrislb.my/wp-includes/js/dist/core-data.min.js', 'wp-includes/js/dist/core-data.min.js'),
(8297, '/home/binawebp/omsrislb.my/wp-includes/js/dist/customize-widgets.js', 'wp-includes/js/dist/customize-widgets.js'),
(8298, '/home/binawebp/omsrislb.my/wp-includes/js/dist/customize-widgets.min.js', 'wp-includes/js/dist/customize-widgets.min.js'),
(8299, '/home/binawebp/omsrislb.my/wp-includes/js/dist/data-controls.js', 'wp-includes/js/dist/data-controls.js'),
(8300, '/home/binawebp/omsrislb.my/wp-includes/js/dist/data-controls.min.js', 'wp-includes/js/dist/data-controls.min.js'),
(8301, '/home/binawebp/omsrislb.my/wp-includes/js/dist/data.js', 'wp-includes/js/dist/data.js'),
(8302, '/home/binawebp/omsrislb.my/wp-includes/js/dist/data.min.js', 'wp-includes/js/dist/data.min.js'),
(8303, '/home/binawebp/omsrislb.my/wp-includes/js/dist/date.js', 'wp-includes/js/dist/date.js'),
(8304, '/home/binawebp/omsrislb.my/wp-includes/js/dist/date.min.js', 'wp-includes/js/dist/date.min.js'),
(8305, '/home/binawebp/omsrislb.my/wp-includes/js/dist/deprecated.js', 'wp-includes/js/dist/deprecated.js'),
(8306, '/home/binawebp/omsrislb.my/wp-includes/js/dist/deprecated.min.js', 'wp-includes/js/dist/deprecated.min.js'),
(8307, '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-entry.js', 'wp-includes/js/dist/development/react-refresh-entry.js'),
(8308, '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-entry.min.js', 'wp-includes/js/dist/development/react-refresh-entry.min.js'),
(8309, '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-runtime.js', 'wp-includes/js/dist/development/react-refresh-runtime.js'),
(8310, '/home/binawebp/omsrislb.my/wp-includes/js/dist/development/react-refresh-runtime.min.js', 'wp-includes/js/dist/development/react-refresh-runtime.min.js'),
(8311, '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom-ready.js', 'wp-includes/js/dist/dom-ready.js'),
(8312, '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom-ready.min.js', 'wp-includes/js/dist/dom-ready.min.js'),
(8313, '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom.js', 'wp-includes/js/dist/dom.js'),
(8314, '/home/binawebp/omsrislb.my/wp-includes/js/dist/dom.min.js', 'wp-includes/js/dist/dom.min.js'),
(8315, '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-post.js', 'wp-includes/js/dist/edit-post.js'),
(8316, '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-post.min.js', 'wp-includes/js/dist/edit-post.min.js'),
(8317, '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-site.js', 'wp-includes/js/dist/edit-site.js'),
(8318, '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-site.min.js', 'wp-includes/js/dist/edit-site.min.js'),
(8319, '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-widgets.js', 'wp-includes/js/dist/edit-widgets.js'),
(8320, '/home/binawebp/omsrislb.my/wp-includes/js/dist/edit-widgets.min.js', 'wp-includes/js/dist/edit-widgets.min.js'),
(8321, '/home/binawebp/omsrislb.my/wp-includes/js/dist/editor.js', 'wp-includes/js/dist/editor.js'),
(8322, '/home/binawebp/omsrislb.my/wp-includes/js/dist/editor.min.js', 'wp-includes/js/dist/editor.min.js'),
(8323, '/home/binawebp/omsrislb.my/wp-includes/js/dist/element.js', 'wp-includes/js/dist/element.js'),
(8324, '/home/binawebp/omsrislb.my/wp-includes/js/dist/element.min.js', 'wp-includes/js/dist/element.min.js'),
(8325, '/home/binawebp/omsrislb.my/wp-includes/js/dist/escape-html.js', 'wp-includes/js/dist/escape-html.js'),
(8326, '/home/binawebp/omsrislb.my/wp-includes/js/dist/escape-html.min.js', 'wp-includes/js/dist/escape-html.min.js'),
(8327, '/home/binawebp/omsrislb.my/wp-includes/js/dist/format-library.js', 'wp-includes/js/dist/format-library.js'),
(8328, '/home/binawebp/omsrislb.my/wp-includes/js/dist/format-library.min.js', 'wp-includes/js/dist/format-library.min.js'),
(8329, '/home/binawebp/omsrislb.my/wp-includes/js/dist/hooks.js', 'wp-includes/js/dist/hooks.js'),
(8330, '/home/binawebp/omsrislb.my/wp-includes/js/dist/hooks.min.js', 'wp-includes/js/dist/hooks.min.js'),
(8331, '/home/binawebp/omsrislb.my/wp-includes/js/dist/html-entities.js', 'wp-includes/js/dist/html-entities.js'),
(8332, '/home/binawebp/omsrislb.my/wp-includes/js/dist/html-entities.min.js', 'wp-includes/js/dist/html-entities.min.js'),
(8333, '/home/binawebp/omsrislb.my/wp-includes/js/dist/i18n.js', 'wp-includes/js/dist/i18n.js'),
(8334, '/home/binawebp/omsrislb.my/wp-includes/js/dist/i18n.min.js', 'wp-includes/js/dist/i18n.min.js'),
(8335, '/home/binawebp/omsrislb.my/wp-includes/js/dist/is-shallow-equal.js', 'wp-includes/js/dist/is-shallow-equal.js'),
(8336, '/home/binawebp/omsrislb.my/wp-includes/js/dist/is-shallow-equal.min.js', 'wp-includes/js/dist/is-shallow-equal.min.js'),
(8337, '/home/binawebp/omsrislb.my/wp-includes/js/dist/keyboard-shortcuts.js', 'wp-includes/js/dist/keyboard-shortcuts.js'),
(8338, '/home/binawebp/omsrislb.my/wp-includes/js/dist/keyboard-shortcuts.min.js', 'wp-includes/js/dist/keyboard-shortcuts.min.js'),
(8339, '/home/binawebp/omsrislb.my/wp-includes/js/dist/keycodes.js', 'wp-includes/js/dist/keycodes.js'),
(8340, '/home/binawebp/omsrislb.my/wp-includes/js/dist/keycodes.min.js', 'wp-includes/js/dist/keycodes.min.js'),
(8341, '/home/binawebp/omsrislb.my/wp-includes/js/dist/latex-to-mathml.js', 'wp-includes/js/dist/latex-to-mathml.js'),
(8342, '/home/binawebp/omsrislb.my/wp-includes/js/dist/latex-to-mathml.min.js', 'wp-includes/js/dist/latex-to-mathml.min.js'),
(8343, '/home/binawebp/omsrislb.my/wp-includes/js/dist/list-reusable-blocks.js', 'wp-includes/js/dist/list-reusable-blocks.js'),
(8344, '/home/binawebp/omsrislb.my/wp-includes/js/dist/list-reusable-blocks.min.js', 'wp-includes/js/dist/list-reusable-blocks.min.js'),
(8345, '/home/binawebp/omsrislb.my/wp-includes/js/dist/media-utils.js', 'wp-includes/js/dist/media-utils.js'),
(8346, '/home/binawebp/omsrislb.my/wp-includes/js/dist/media-utils.min.js', 'wp-includes/js/dist/media-utils.min.js'),
(8347, '/home/binawebp/omsrislb.my/wp-includes/js/dist/notices.js', 'wp-includes/js/dist/notices.js'),
(8348, '/home/binawebp/omsrislb.my/wp-includes/js/dist/notices.min.js', 'wp-includes/js/dist/notices.min.js'),
(8349, '/home/binawebp/omsrislb.my/wp-includes/js/dist/nux.js', 'wp-includes/js/dist/nux.js'),
(8350, '/home/binawebp/omsrislb.my/wp-includes/js/dist/nux.min.js', 'wp-includes/js/dist/nux.min.js'),
(8351, '/home/binawebp/omsrislb.my/wp-includes/js/dist/patterns.js', 'wp-includes/js/dist/patterns.js'),
(8352, '/home/binawebp/omsrislb.my/wp-includes/js/dist/patterns.min.js', 'wp-includes/js/dist/patterns.min.js'),
(8353, '/home/binawebp/omsrislb.my/wp-includes/js/dist/plugins.js', 'wp-includes/js/dist/plugins.js'),
(8354, '/home/binawebp/omsrislb.my/wp-includes/js/dist/plugins.min.js', 'wp-includes/js/dist/plugins.min.js'),
(8355, '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences-persistence.js', 'wp-includes/js/dist/preferences-persistence.js'),
(8356, '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences-persistence.min.js', 'wp-includes/js/dist/preferences-persistence.min.js'),
(8357, '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences.js', 'wp-includes/js/dist/preferences.js'),
(8358, '/home/binawebp/omsrislb.my/wp-includes/js/dist/preferences.min.js', 'wp-includes/js/dist/preferences.min.js'),
(8359, '/home/binawebp/omsrislb.my/wp-includes/js/dist/primitives.js', 'wp-includes/js/dist/primitives.js'),
(8360, '/home/binawebp/omsrislb.my/wp-includes/js/dist/primitives.min.js', 'wp-includes/js/dist/primitives.min.js'),
(8361, '/home/binawebp/omsrislb.my/wp-includes/js/dist/priority-queue.js', 'wp-includes/js/dist/priority-queue.js'),
(8362, '/home/binawebp/omsrislb.my/wp-includes/js/dist/priority-queue.min.js', 'wp-includes/js/dist/priority-queue.min.js'),
(8363, '/home/binawebp/omsrislb.my/wp-includes/js/dist/private-apis.js', 'wp-includes/js/dist/private-apis.js'),
(8364, '/home/binawebp/omsrislb.my/wp-includes/js/dist/private-apis.min.js', 'wp-includes/js/dist/private-apis.min.js'),
(8365, '/home/binawebp/omsrislb.my/wp-includes/js/dist/redux-routine.js', 'wp-includes/js/dist/redux-routine.js'),
(8366, '/home/binawebp/omsrislb.my/wp-includes/js/dist/redux-routine.min.js', 'wp-includes/js/dist/redux-routine.min.js'),
(8367, '/home/binawebp/omsrislb.my/wp-includes/js/dist/reusable-blocks.js', 'wp-includes/js/dist/reusable-blocks.js'),
(8368, '/home/binawebp/omsrislb.my/wp-includes/js/dist/reusable-blocks.min.js', 'wp-includes/js/dist/reusable-blocks.min.js'),
(8369, '/home/binawebp/omsrislb.my/wp-includes/js/dist/rich-text.js', 'wp-includes/js/dist/rich-text.js'),
(8370, '/home/binawebp/omsrislb.my/wp-includes/js/dist/rich-text.min.js', 'wp-includes/js/dist/rich-text.min.js'),
(8371, '/home/binawebp/omsrislb.my/wp-includes/js/dist/router.js', 'wp-includes/js/dist/router.js'),
(8372, '/home/binawebp/omsrislb.my/wp-includes/js/dist/router.min.js', 'wp-includes/js/dist/router.min.js'),
(8373, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/a11y/index.js', 'wp-includes/js/dist/script-modules/a11y/index.js'),
(8374, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/a11y/index.min.js', 'wp-includes/js/dist/script-modules/a11y/index.min.js');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(8375, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.js', 'wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.js'),
(8376, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.min.js', 'wp-includes/js/dist/script-modules/block-editor/utils/fit-text-frontend.min.js'),
(8377, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/accordion/view.js', 'wp-includes/js/dist/script-modules/block-library/accordion/view.js'),
(8378, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/accordion/view.min.js', 'wp-includes/js/dist/script-modules/block-library/accordion/view.min.js'),
(8379, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/file/view.js', 'wp-includes/js/dist/script-modules/block-library/file/view.js'),
(8380, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/file/view.min.js', 'wp-includes/js/dist/script-modules/block-library/file/view.min.js'),
(8381, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/form/view.js', 'wp-includes/js/dist/script-modules/block-library/form/view.js'),
(8382, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/form/view.min.js', 'wp-includes/js/dist/script-modules/block-library/form/view.min.js'),
(8383, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/image/view.js', 'wp-includes/js/dist/script-modules/block-library/image/view.js'),
(8384, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/image/view.min.js', 'wp-includes/js/dist/script-modules/block-library/image/view.min.js'),
(8385, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/navigation/view.js', 'wp-includes/js/dist/script-modules/block-library/navigation/view.js'),
(8386, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/navigation/view.min.js', 'wp-includes/js/dist/script-modules/block-library/navigation/view.min.js'),
(8387, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/query/view.js', 'wp-includes/js/dist/script-modules/block-library/query/view.js'),
(8388, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/query/view.min.js', 'wp-includes/js/dist/script-modules/block-library/query/view.min.js'),
(8389, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/search/view.js', 'wp-includes/js/dist/script-modules/block-library/search/view.js'),
(8390, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/block-library/search/view.min.js', 'wp-includes/js/dist/script-modules/block-library/search/view.min.js'),
(8391, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/debug.js', 'wp-includes/js/dist/script-modules/interactivity/debug.js'),
(8392, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/debug.min.js', 'wp-includes/js/dist/script-modules/interactivity/debug.min.js'),
(8393, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/index.js', 'wp-includes/js/dist/script-modules/interactivity/index.js'),
(8394, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity/index.min.js', 'wp-includes/js/dist/script-modules/interactivity/index.min.js'),
(8395, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity-router/index.js', 'wp-includes/js/dist/script-modules/interactivity-router/index.js'),
(8396, '/home/binawebp/omsrislb.my/wp-includes/js/dist/script-modules/interactivity-router/index.min.js', 'wp-includes/js/dist/script-modules/interactivity-router/index.min.js'),
(8397, '/home/binawebp/omsrislb.my/wp-includes/js/dist/server-side-render.js', 'wp-includes/js/dist/server-side-render.js'),
(8398, '/home/binawebp/omsrislb.my/wp-includes/js/dist/server-side-render.min.js', 'wp-includes/js/dist/server-side-render.min.js'),
(8399, '/home/binawebp/omsrislb.my/wp-includes/js/dist/shortcode.js', 'wp-includes/js/dist/shortcode.js'),
(8400, '/home/binawebp/omsrislb.my/wp-includes/js/dist/shortcode.min.js', 'wp-includes/js/dist/shortcode.min.js'),
(8401, '/home/binawebp/omsrislb.my/wp-includes/js/dist/style-engine.js', 'wp-includes/js/dist/style-engine.js'),
(8402, '/home/binawebp/omsrislb.my/wp-includes/js/dist/style-engine.min.js', 'wp-includes/js/dist/style-engine.min.js'),
(8403, '/home/binawebp/omsrislb.my/wp-includes/js/dist/token-list.js', 'wp-includes/js/dist/token-list.js'),
(8404, '/home/binawebp/omsrislb.my/wp-includes/js/dist/token-list.min.js', 'wp-includes/js/dist/token-list.min.js'),
(8405, '/home/binawebp/omsrislb.my/wp-includes/js/dist/url.js', 'wp-includes/js/dist/url.js'),
(8406, '/home/binawebp/omsrislb.my/wp-includes/js/dist/url.min.js', 'wp-includes/js/dist/url.min.js'),
(8407, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/lodash.js', 'wp-includes/js/dist/vendor/lodash.js'),
(8408, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/lodash.min.js', 'wp-includes/js/dist/vendor/lodash.min.js'),
(8409, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/moment.js', 'wp-includes/js/dist/vendor/moment.js'),
(8410, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/moment.min.js', 'wp-includes/js/dist/vendor/moment.min.js'),
(8411, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-dom.js', 'wp-includes/js/dist/vendor/react-dom.js'),
(8412, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-dom.min.js', 'wp-includes/js/dist/vendor/react-dom.min.js'),
(8413, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-jsx-runtime.js', 'wp-includes/js/dist/vendor/react-jsx-runtime.js'),
(8414, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-jsx-runtime.min.js', 'wp-includes/js/dist/vendor/react-jsx-runtime.min.js'),
(8415, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react-jsx-runtime.min.js.LICENSE.txt', 'wp-includes/js/dist/vendor/react-jsx-runtime.min.js.LICENSE.txt'),
(8416, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react.js', 'wp-includes/js/dist/vendor/react.js'),
(8417, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/react.min.js', 'wp-includes/js/dist/vendor/react.min.js'),
(8418, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/regenerator-runtime.js', 'wp-includes/js/dist/vendor/regenerator-runtime.js'),
(8419, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/regenerator-runtime.min.js', 'wp-includes/js/dist/vendor/regenerator-runtime.min.js'),
(8420, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js', 'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js'),
(8421, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js'),
(8422, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js', 'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),
(8423, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),
(8424, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-fetch.js', 'wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),
(8425, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),
(8426, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-formdata.js', 'wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),
(8427, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),
(8428, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-inert.js', 'wp-includes/js/dist/vendor/wp-polyfill-inert.js'),
(8429, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-inert.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-inert.min.js'),
(8430, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js', 'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),
(8431, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),
(8432, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js', 'wp-includes/js/dist/vendor/wp-polyfill-object-fit.js'),
(8433, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js'),
(8434, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-url.js', 'wp-includes/js/dist/vendor/wp-polyfill-url.js'),
(8435, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill-url.min.js', 'wp-includes/js/dist/vendor/wp-polyfill-url.min.js'),
(8436, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill.js', 'wp-includes/js/dist/vendor/wp-polyfill.js'),
(8437, '/home/binawebp/omsrislb.my/wp-includes/js/dist/vendor/wp-polyfill.min.js', 'wp-includes/js/dist/vendor/wp-polyfill.min.js'),
(8438, '/home/binawebp/omsrislb.my/wp-includes/js/dist/viewport.js', 'wp-includes/js/dist/viewport.js'),
(8439, '/home/binawebp/omsrislb.my/wp-includes/js/dist/viewport.min.js', 'wp-includes/js/dist/viewport.min.js'),
(8440, '/home/binawebp/omsrislb.my/wp-includes/js/dist/views.js', 'wp-includes/js/dist/views.js'),
(8441, '/home/binawebp/omsrislb.my/wp-includes/js/dist/views.min.js', 'wp-includes/js/dist/views.min.js'),
(8442, '/home/binawebp/omsrislb.my/wp-includes/js/dist/warning.js', 'wp-includes/js/dist/warning.js'),
(8443, '/home/binawebp/omsrislb.my/wp-includes/js/dist/warning.min.js', 'wp-includes/js/dist/warning.min.js'),
(8444, '/home/binawebp/omsrislb.my/wp-includes/js/dist/widgets.js', 'wp-includes/js/dist/widgets.js'),
(8445, '/home/binawebp/omsrislb.my/wp-includes/js/dist/widgets.min.js', 'wp-includes/js/dist/widgets.min.js'),
(8446, '/home/binawebp/omsrislb.my/wp-includes/js/dist/wordcount.js', 'wp-includes/js/dist/wordcount.js'),
(8447, '/home/binawebp/omsrislb.my/wp-includes/js/dist/wordcount.min.js', 'wp-includes/js/dist/wordcount.min.js'),
(8448, '/home/binawebp/omsrislb.my/wp-includes/js/heartbeat.js', 'wp-includes/js/heartbeat.js'),
(8449, '/home/binawebp/omsrislb.my/wp-includes/js/heartbeat.min.js', 'wp-includes/js/heartbeat.min.js'),
(8450, '/home/binawebp/omsrislb.my/wp-includes/js/hoverIntent.js', 'wp-includes/js/hoverIntent.js'),
(8451, '/home/binawebp/omsrislb.my/wp-includes/js/hoverIntent.min.js', 'wp-includes/js/hoverIntent.min.js'),
(8452, '/home/binawebp/omsrislb.my/wp-includes/js/hoverintent-js.min.js', 'wp-includes/js/hoverintent-js.min.js'),
(8453, '/home/binawebp/omsrislb.my/wp-includes/js/imagesloaded.min.js', 'wp-includes/js/imagesloaded.min.js'),
(8454, '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/border-anim-h.gif', 'wp-includes/js/imgareaselect/border-anim-h.gif'),
(8455, '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/border-anim-v.gif', 'wp-includes/js/imgareaselect/border-anim-v.gif'),
(8456, '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/imgareaselect.css', 'wp-includes/js/imgareaselect/imgareaselect.css'),
(8457, '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/jquery.imgareaselect.js', 'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),
(8458, '/home/binawebp/omsrislb.my/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js', 'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),
(8459, '/home/binawebp/omsrislb.my/wp-includes/js/jcrop/Jcrop.gif', 'wp-includes/js/jcrop/Jcrop.gif'),
(8460, '/home/binawebp/omsrislb.my/wp-includes/js/jcrop/jquery.Jcrop.min.css', 'wp-includes/js/jcrop/jquery.Jcrop.min.css'),
(8461, '/home/binawebp/omsrislb.my/wp-includes/js/jcrop/jquery.Jcrop.min.js', 'wp-includes/js/jcrop/jquery.Jcrop.min.js'),
(8462, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery-migrate.js', 'wp-includes/js/jquery/jquery-migrate.js'),
(8463, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery-migrate.min.js', 'wp-includes/js/jquery/jquery-migrate.min.js'),
(8464, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.color.min.js', 'wp-includes/js/jquery/jquery.color.min.js'),
(8465, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.form.js', 'wp-includes/js/jquery/jquery.form.js'),
(8466, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.form.min.js', 'wp-includes/js/jquery/jquery.form.min.js'),
(8467, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.hotkeys.js', 'wp-includes/js/jquery/jquery.hotkeys.js'),
(8468, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.hotkeys.min.js', 'wp-includes/js/jquery/jquery.hotkeys.min.js'),
(8469, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.js', 'wp-includes/js/jquery/jquery.js'),
(8470, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.masonry.min.js', 'wp-includes/js/jquery/jquery.masonry.min.js'),
(8471, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.min.js', 'wp-includes/js/jquery/jquery.min.js'),
(8472, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.query.js', 'wp-includes/js/jquery/jquery.query.js'),
(8473, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.schedule.js', 'wp-includes/js/jquery/jquery.schedule.js'),
(8474, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.serialize-object.js', 'wp-includes/js/jquery/jquery.serialize-object.js'),
(8475, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.table-hotkeys.js', 'wp-includes/js/jquery/jquery.table-hotkeys.js'),
(8476, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.table-hotkeys.min.js', 'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),
(8477, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/jquery.ui.touch-punch.js', 'wp-includes/js/jquery/jquery.ui.touch-punch.js'),
(8478, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/suggest.js', 'wp-includes/js/jquery/suggest.js'),
(8479, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/suggest.min.js', 'wp-includes/js/jquery/suggest.min.js'),
(8480, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/accordion.js', 'wp-includes/js/jquery/ui/accordion.js'),
(8481, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/accordion.min.js', 'wp-includes/js/jquery/ui/accordion.min.js'),
(8482, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/autocomplete.js', 'wp-includes/js/jquery/ui/autocomplete.js'),
(8483, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/autocomplete.min.js', 'wp-includes/js/jquery/ui/autocomplete.min.js'),
(8484, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/button.js', 'wp-includes/js/jquery/ui/button.js'),
(8485, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/button.min.js', 'wp-includes/js/jquery/ui/button.min.js'),
(8486, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/checkboxradio.js', 'wp-includes/js/jquery/ui/checkboxradio.js'),
(8487, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/checkboxradio.min.js', 'wp-includes/js/jquery/ui/checkboxradio.min.js'),
(8488, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/controlgroup.js', 'wp-includes/js/jquery/ui/controlgroup.js'),
(8489, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/controlgroup.min.js', 'wp-includes/js/jquery/ui/controlgroup.min.js'),
(8490, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/core.js', 'wp-includes/js/jquery/ui/core.js'),
(8491, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/core.min.js', 'wp-includes/js/jquery/ui/core.min.js'),
(8492, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/datepicker.js', 'wp-includes/js/jquery/ui/datepicker.js'),
(8493, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/datepicker.min.js', 'wp-includes/js/jquery/ui/datepicker.min.js'),
(8494, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/dialog.js', 'wp-includes/js/jquery/ui/dialog.js'),
(8495, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/dialog.min.js', 'wp-includes/js/jquery/ui/dialog.min.js'),
(8496, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/draggable.js', 'wp-includes/js/jquery/ui/draggable.js'),
(8497, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/draggable.min.js', 'wp-includes/js/jquery/ui/draggable.min.js'),
(8498, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/droppable.js', 'wp-includes/js/jquery/ui/droppable.js'),
(8499, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/droppable.min.js', 'wp-includes/js/jquery/ui/droppable.min.js'),
(8500, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-blind.js', 'wp-includes/js/jquery/ui/effect-blind.js'),
(8501, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-blind.min.js', 'wp-includes/js/jquery/ui/effect-blind.min.js'),
(8502, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-bounce.js', 'wp-includes/js/jquery/ui/effect-bounce.js'),
(8503, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-bounce.min.js', 'wp-includes/js/jquery/ui/effect-bounce.min.js'),
(8504, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-clip.js', 'wp-includes/js/jquery/ui/effect-clip.js'),
(8505, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-clip.min.js', 'wp-includes/js/jquery/ui/effect-clip.min.js'),
(8506, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-drop.js', 'wp-includes/js/jquery/ui/effect-drop.js'),
(8507, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-drop.min.js', 'wp-includes/js/jquery/ui/effect-drop.min.js'),
(8508, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-explode.js', 'wp-includes/js/jquery/ui/effect-explode.js'),
(8509, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-explode.min.js', 'wp-includes/js/jquery/ui/effect-explode.min.js'),
(8510, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fade.js', 'wp-includes/js/jquery/ui/effect-fade.js'),
(8511, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fade.min.js', 'wp-includes/js/jquery/ui/effect-fade.min.js'),
(8512, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fold.js', 'wp-includes/js/jquery/ui/effect-fold.js'),
(8513, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-fold.min.js', 'wp-includes/js/jquery/ui/effect-fold.min.js'),
(8514, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-highlight.js', 'wp-includes/js/jquery/ui/effect-highlight.js'),
(8515, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-highlight.min.js', 'wp-includes/js/jquery/ui/effect-highlight.min.js'),
(8516, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-puff.js', 'wp-includes/js/jquery/ui/effect-puff.js'),
(8517, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-puff.min.js', 'wp-includes/js/jquery/ui/effect-puff.min.js'),
(8518, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-pulsate.js', 'wp-includes/js/jquery/ui/effect-pulsate.js'),
(8519, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-pulsate.min.js', 'wp-includes/js/jquery/ui/effect-pulsate.min.js'),
(8520, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-scale.js', 'wp-includes/js/jquery/ui/effect-scale.js'),
(8521, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-scale.min.js', 'wp-includes/js/jquery/ui/effect-scale.min.js'),
(8522, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-shake.js', 'wp-includes/js/jquery/ui/effect-shake.js'),
(8523, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-shake.min.js', 'wp-includes/js/jquery/ui/effect-shake.min.js'),
(8524, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-size.js', 'wp-includes/js/jquery/ui/effect-size.js'),
(8525, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-size.min.js', 'wp-includes/js/jquery/ui/effect-size.min.js'),
(8526, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-slide.js', 'wp-includes/js/jquery/ui/effect-slide.js'),
(8527, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-slide.min.js', 'wp-includes/js/jquery/ui/effect-slide.min.js'),
(8528, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-transfer.js', 'wp-includes/js/jquery/ui/effect-transfer.js'),
(8529, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect-transfer.min.js', 'wp-includes/js/jquery/ui/effect-transfer.min.js'),
(8530, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect.js', 'wp-includes/js/jquery/ui/effect.js'),
(8531, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/effect.min.js', 'wp-includes/js/jquery/ui/effect.min.js'),
(8532, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/menu.js', 'wp-includes/js/jquery/ui/menu.js'),
(8533, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/menu.min.js', 'wp-includes/js/jquery/ui/menu.min.js'),
(8534, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/mouse.js', 'wp-includes/js/jquery/ui/mouse.js'),
(8535, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/mouse.min.js', 'wp-includes/js/jquery/ui/mouse.min.js'),
(8536, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/progressbar.js', 'wp-includes/js/jquery/ui/progressbar.js'),
(8537, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/progressbar.min.js', 'wp-includes/js/jquery/ui/progressbar.min.js'),
(8538, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/resizable.js', 'wp-includes/js/jquery/ui/resizable.js'),
(8539, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/resizable.min.js', 'wp-includes/js/jquery/ui/resizable.min.js'),
(8540, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectable.js', 'wp-includes/js/jquery/ui/selectable.js'),
(8541, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectable.min.js', 'wp-includes/js/jquery/ui/selectable.min.js'),
(8542, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectmenu.js', 'wp-includes/js/jquery/ui/selectmenu.js'),
(8543, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/selectmenu.min.js', 'wp-includes/js/jquery/ui/selectmenu.min.js'),
(8544, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/slider.js', 'wp-includes/js/jquery/ui/slider.js'),
(8545, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/slider.min.js', 'wp-includes/js/jquery/ui/slider.min.js'),
(8546, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/sortable.js', 'wp-includes/js/jquery/ui/sortable.js'),
(8547, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/sortable.min.js', 'wp-includes/js/jquery/ui/sortable.min.js'),
(8548, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/spinner.js', 'wp-includes/js/jquery/ui/spinner.js'),
(8549, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/spinner.min.js', 'wp-includes/js/jquery/ui/spinner.min.js'),
(8550, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tabs.js', 'wp-includes/js/jquery/ui/tabs.js'),
(8551, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tabs.min.js', 'wp-includes/js/jquery/ui/tabs.min.js'),
(8552, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tooltip.js', 'wp-includes/js/jquery/ui/tooltip.js'),
(8553, '/home/binawebp/omsrislb.my/wp-includes/js/jquery/ui/tooltip.min.js', 'wp-includes/js/jquery/ui/tooltip.min.js'),
(8554, '/home/binawebp/omsrislb.my/wp-includes/js/json2.js', 'wp-includes/js/json2.js'),
(8555, '/home/binawebp/omsrislb.my/wp-includes/js/json2.min.js', 'wp-includes/js/json2.min.js'),
(8556, '/home/binawebp/omsrislb.my/wp-includes/js/masonry.min.js', 'wp-includes/js/masonry.min.js'),
(8557, '/home/binawebp/omsrislb.my/wp-includes/js/mce-view.js', 'wp-includes/js/mce-view.js'),
(8558, '/home/binawebp/omsrislb.my/wp-includes/js/mce-view.min.js', 'wp-includes/js/mce-view.min.js'),
(8559, '/home/binawebp/omsrislb.my/wp-includes/js/media-audiovideo.js', 'wp-includes/js/media-audiovideo.js'),
(8560, '/home/binawebp/omsrislb.my/wp-includes/js/media-audiovideo.min.js', 'wp-includes/js/media-audiovideo.min.js'),
(8561, '/home/binawebp/omsrislb.my/wp-includes/js/media-editor.js', 'wp-includes/js/media-editor.js'),
(8562, '/home/binawebp/omsrislb.my/wp-includes/js/media-editor.min.js', 'wp-includes/js/media-editor.min.js'),
(8563, '/home/binawebp/omsrislb.my/wp-includes/js/media-grid.js', 'wp-includes/js/media-grid.js'),
(8564, '/home/binawebp/omsrislb.my/wp-includes/js/media-grid.min.js', 'wp-includes/js/media-grid.min.js'),
(8565, '/home/binawebp/omsrislb.my/wp-includes/js/media-models.js', 'wp-includes/js/media-models.js'),
(8566, '/home/binawebp/omsrislb.my/wp-includes/js/media-models.min.js', 'wp-includes/js/media-models.min.js'),
(8567, '/home/binawebp/omsrislb.my/wp-includes/js/media-views.js', 'wp-includes/js/media-views.js'),
(8568, '/home/binawebp/omsrislb.my/wp-includes/js/media-views.min.js', 'wp-includes/js/media-views.min.js'),
(8569, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-and-player.js', 'wp-includes/js/mediaelement/mediaelement-and-player.js'),
(8570, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-and-player.min.js', 'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),
(8571, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-migrate.js', 'wp-includes/js/mediaelement/mediaelement-migrate.js'),
(8572, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement-migrate.min.js', 'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),
(8573, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement.js', 'wp-includes/js/mediaelement/mediaelement.js'),
(8574, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelement.min.js', 'wp-includes/js/mediaelement/mediaelement.min.js'),
(8575, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer-legacy.css', 'wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),
(8576, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css', 'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),
(8577, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer.css', 'wp-includes/js/mediaelement/mediaelementplayer.css'),
(8578, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mediaelementplayer.min.css', 'wp-includes/js/mediaelement/mediaelementplayer.min.css'),
(8579, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mejs-controls.png', 'wp-includes/js/mediaelement/mejs-controls.png'),
(8580, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/mejs-controls.svg', 'wp-includes/js/mediaelement/mejs-controls.svg'),
(8581, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/renderers/vimeo.js', 'wp-includes/js/mediaelement/renderers/vimeo.js'),
(8582, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/renderers/vimeo.min.js', 'wp-includes/js/mediaelement/renderers/vimeo.min.js'),
(8583, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.css', 'wp-includes/js/mediaelement/wp-mediaelement.css'),
(8584, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.js', 'wp-includes/js/mediaelement/wp-mediaelement.js'),
(8585, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.min.css', 'wp-includes/js/mediaelement/wp-mediaelement.min.css'),
(8586, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-mediaelement.min.js', 'wp-includes/js/mediaelement/wp-mediaelement.min.js'),
(8587, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-playlist.js', 'wp-includes/js/mediaelement/wp-playlist.js'),
(8588, '/home/binawebp/omsrislb.my/wp-includes/js/mediaelement/wp-playlist.min.js', 'wp-includes/js/mediaelement/wp-playlist.min.js'),
(8589, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/handlers.js', 'wp-includes/js/plupload/handlers.js'),
(8590, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/handlers.min.js', 'wp-includes/js/plupload/handlers.min.js'),
(8591, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/license.txt', 'wp-includes/js/plupload/license.txt'),
(8592, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/moxie.js', 'wp-includes/js/plupload/moxie.js'),
(8593, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/moxie.min.js', 'wp-includes/js/plupload/moxie.min.js'),
(8594, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/plupload.js', 'wp-includes/js/plupload/plupload.js'),
(8595, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/plupload.min.js', 'wp-includes/js/plupload/plupload.min.js'),
(8596, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/wp-plupload.js', 'wp-includes/js/plupload/wp-plupload.js'),
(8597, '/home/binawebp/omsrislb.my/wp-includes/js/plupload/wp-plupload.min.js', 'wp-includes/js/plupload/wp-plupload.min.js'),
(8598, '/home/binawebp/omsrislb.my/wp-includes/js/quicktags.js', 'wp-includes/js/quicktags.js'),
(8599, '/home/binawebp/omsrislb.my/wp-includes/js/quicktags.min.js', 'wp-includes/js/quicktags.min.js'),
(8600, '/home/binawebp/omsrislb.my/wp-includes/js/shortcode.js', 'wp-includes/js/shortcode.js'),
(8601, '/home/binawebp/omsrislb.my/wp-includes/js/shortcode.min.js', 'wp-includes/js/shortcode.min.js'),
(8602, '/home/binawebp/omsrislb.my/wp-includes/js/swfobject.js', 'wp-includes/js/swfobject.js'),
(8603, '/home/binawebp/omsrislb.my/wp-includes/js/swfobject.min.js', 'wp-includes/js/swfobject.min.js'),
(8604, '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/handlers.js', 'wp-includes/js/swfupload/handlers.js'),
(8605, '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/handlers.min.js', 'wp-includes/js/swfupload/handlers.min.js'),
(8606, '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/license.txt', 'wp-includes/js/swfupload/license.txt'),
(8607, '/home/binawebp/omsrislb.my/wp-includes/js/swfupload/swfupload.js', 'wp-includes/js/swfupload/swfupload.js'),
(8608, '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/loadingAnimation.gif', 'wp-includes/js/thickbox/loadingAnimation.gif'),
(8609, '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/macFFBgHack.png', 'wp-includes/js/thickbox/macFFBgHack.png'),
(8610, '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/thickbox.css', 'wp-includes/js/thickbox/thickbox.css'),
(8611, '/home/binawebp/omsrislb.my/wp-includes/js/thickbox/thickbox.js', 'wp-includes/js/thickbox/thickbox.js'),
(8612, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/langs/wp-langs-en.js', 'wp-includes/js/tinymce/langs/wp-langs-en.js'),
(8613, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/license.txt', 'wp-includes/js/tinymce/license.txt'),
(8614, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/charmap/plugin.js', 'wp-includes/js/tinymce/plugins/charmap/plugin.js'),
(8615, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/charmap/plugin.min.js', 'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),
(8616, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/colorpicker/plugin.js', 'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),
(8617, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js', 'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),
(8618, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css', 'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),
(8619, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/compat3x/plugin.js', 'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),
(8620, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js', 'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),
(8621, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/directionality/plugin.js', 'wp-includes/js/tinymce/plugins/directionality/plugin.js'),
(8622, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/directionality/plugin.min.js', 'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),
(8623, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/fullscreen/plugin.js', 'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),
(8624, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js', 'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),
(8625, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/hr/plugin.js', 'wp-includes/js/tinymce/plugins/hr/plugin.js'),
(8626, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/hr/plugin.min.js', 'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),
(8627, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/image/plugin.js', 'wp-includes/js/tinymce/plugins/image/plugin.js'),
(8628, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/image/plugin.min.js', 'wp-includes/js/tinymce/plugins/image/plugin.min.js'),
(8629, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/link/plugin.js', 'wp-includes/js/tinymce/plugins/link/plugin.js'),
(8630, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/link/plugin.min.js', 'wp-includes/js/tinymce/plugins/link/plugin.min.js'),
(8631, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/lists/plugin.js', 'wp-includes/js/tinymce/plugins/lists/plugin.js'),
(8632, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/lists/plugin.min.js', 'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),
(8633, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/media/plugin.js', 'wp-includes/js/tinymce/plugins/media/plugin.js'),
(8634, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/media/plugin.min.js', 'wp-includes/js/tinymce/plugins/media/plugin.min.js'),
(8635, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/paste/plugin.js', 'wp-includes/js/tinymce/plugins/paste/plugin.js'),
(8636, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/paste/plugin.min.js', 'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),
(8637, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/tabfocus/plugin.js', 'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),
(8638, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js', 'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),
(8639, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/textcolor/plugin.js', 'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),
(8640, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js', 'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),
(8641, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wordpress/plugin.js', 'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),
(8642, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js', 'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),
(8643, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js', 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),
(8644, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js', 'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),
(8645, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js', 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),
(8646, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js', 'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),
(8647, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js', 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),
(8648, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js', 'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),
(8649, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpemoji/plugin.js', 'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),
(8650, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js', 'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),
(8651, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpgallery/plugin.js', 'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),
(8652, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js', 'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),
(8653, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wplink/plugin.js', 'wp-includes/js/tinymce/plugins/wplink/plugin.js'),
(8654, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wplink/plugin.min.js', 'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),
(8655, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js', 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),
(8656, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js', 'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),
(8657, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpview/plugin.js', 'wp-includes/js/tinymce/plugins/wpview/plugin.js'),
(8658, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/plugins/wpview/plugin.min.js', 'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),
(8659, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css', 'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),
(8660, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/content.min.css', 'wp-includes/js/tinymce/skins/lightgray/content.min.css'),
(8661, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),
(8662, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),
(8663, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),
(8664, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),
(8665, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),
(8666, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),
(8667, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),
(8668, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff', 'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),
(8669, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif', 'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),
(8670, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/loader.gif', 'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),
(8671, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/object.gif', 'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),
(8672, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/img/trans.gif', 'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),
(8673, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/lightgray/skin.min.css', 'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),
(8674, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/audio.png', 'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),
(8675, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png', 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),
(8676, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png', 'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),
(8677, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/embedded.png', 'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),
(8678, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png', 'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),
(8679, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/gallery.png', 'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),
(8680, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png', 'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),
(8681, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/more.png', 'wp-includes/js/tinymce/skins/wordpress/images/more.png'),
(8682, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png', 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),
(8683, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png', 'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),
(8684, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png', 'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),
(8685, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png', 'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),
(8686, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/script.svg', 'wp-includes/js/tinymce/skins/wordpress/images/script.svg'),
(8687, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/style.svg', 'wp-includes/js/tinymce/skins/wordpress/images/style.svg'),
(8688, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/images/video.png', 'wp-includes/js/tinymce/skins/wordpress/images/video.png'),
(8689, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/skins/wordpress/wp-content.css', 'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),
(8690, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/inlite/theme.js', 'wp-includes/js/tinymce/themes/inlite/theme.js'),
(8691, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/inlite/theme.min.js', 'wp-includes/js/tinymce/themes/inlite/theme.min.js'),
(8692, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/modern/theme.js', 'wp-includes/js/tinymce/themes/modern/theme.js'),
(8693, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/themes/modern/theme.min.js', 'wp-includes/js/tinymce/themes/modern/theme.min.js'),
(8694, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/tiny_mce_popup.js', 'wp-includes/js/tinymce/tiny_mce_popup.js'),
(8695, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/tinymce.min.js', 'wp-includes/js/tinymce/tinymce.min.js'),
(8696, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/editable_selects.js', 'wp-includes/js/tinymce/utils/editable_selects.js'),
(8697, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/form_utils.js', 'wp-includes/js/tinymce/utils/form_utils.js'),
(8698, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/mctabs.js', 'wp-includes/js/tinymce/utils/mctabs.js'),
(8699, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/utils/validate.js', 'wp-includes/js/tinymce/utils/validate.js'),
(8700, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/wp-tinymce.js', 'wp-includes/js/tinymce/wp-tinymce.js'),
(8701, '/home/binawebp/omsrislb.my/wp-includes/js/tinymce/wp-tinymce.php', 'wp-includes/js/tinymce/wp-tinymce.php'),
(8702, '/home/binawebp/omsrislb.my/wp-includes/js/tw-sack.js', 'wp-includes/js/tw-sack.js'),
(8703, '/home/binawebp/omsrislb.my/wp-includes/js/tw-sack.min.js', 'wp-includes/js/tw-sack.min.js'),
(8704, '/home/binawebp/omsrislb.my/wp-includes/js/twemoji.js', 'wp-includes/js/twemoji.js'),
(8705, '/home/binawebp/omsrislb.my/wp-includes/js/twemoji.min.js', 'wp-includes/js/twemoji.min.js'),
(8706, '/home/binawebp/omsrislb.my/wp-includes/js/underscore.js', 'wp-includes/js/underscore.js'),
(8707, '/home/binawebp/omsrislb.my/wp-includes/js/underscore.min.js', 'wp-includes/js/underscore.min.js'),
(8708, '/home/binawebp/omsrislb.my/wp-includes/js/utils.js', 'wp-includes/js/utils.js'),
(8709, '/home/binawebp/omsrislb.my/wp-includes/js/utils.min.js', 'wp-includes/js/utils.min.js'),
(8710, '/home/binawebp/omsrislb.my/wp-includes/js/wp-ajax-response.js', 'wp-includes/js/wp-ajax-response.js'),
(8711, '/home/binawebp/omsrislb.my/wp-includes/js/wp-ajax-response.min.js', 'wp-includes/js/wp-ajax-response.min.js'),
(8712, '/home/binawebp/omsrislb.my/wp-includes/js/wp-api.js', 'wp-includes/js/wp-api.js'),
(8713, '/home/binawebp/omsrislb.my/wp-includes/js/wp-api.min.js', 'wp-includes/js/wp-api.min.js'),
(8714, '/home/binawebp/omsrislb.my/wp-includes/js/wp-auth-check.js', 'wp-includes/js/wp-auth-check.js'),
(8715, '/home/binawebp/omsrislb.my/wp-includes/js/wp-auth-check.min.js', 'wp-includes/js/wp-auth-check.min.js'),
(8716, '/home/binawebp/omsrislb.my/wp-includes/js/wp-backbone.js', 'wp-includes/js/wp-backbone.js'),
(8717, '/home/binawebp/omsrislb.my/wp-includes/js/wp-backbone.min.js', 'wp-includes/js/wp-backbone.min.js'),
(8718, '/home/binawebp/omsrislb.my/wp-includes/js/wp-custom-header.js', 'wp-includes/js/wp-custom-header.js'),
(8719, '/home/binawebp/omsrislb.my/wp-includes/js/wp-custom-header.min.js', 'wp-includes/js/wp-custom-header.min.js'),
(8720, '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed-template.js', 'wp-includes/js/wp-embed-template.js'),
(8721, '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed-template.min.js', 'wp-includes/js/wp-embed-template.min.js'),
(8722, '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed.js', 'wp-includes/js/wp-embed.js'),
(8723, '/home/binawebp/omsrislb.my/wp-includes/js/wp-embed.min.js', 'wp-includes/js/wp-embed.min.js'),
(8724, '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji-loader.js', 'wp-includes/js/wp-emoji-loader.js'),
(8725, '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji-loader.min.js', 'wp-includes/js/wp-emoji-loader.min.js'),
(8726, '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji-release.min.js', 'wp-includes/js/wp-emoji-release.min.js'),
(8727, '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji.js', 'wp-includes/js/wp-emoji.js'),
(8728, '/home/binawebp/omsrislb.my/wp-includes/js/wp-emoji.min.js', 'wp-includes/js/wp-emoji.min.js'),
(8729, '/home/binawebp/omsrislb.my/wp-includes/js/wp-list-revisions.js', 'wp-includes/js/wp-list-revisions.js'),
(8730, '/home/binawebp/omsrislb.my/wp-includes/js/wp-list-revisions.min.js', 'wp-includes/js/wp-list-revisions.min.js'),
(8731, '/home/binawebp/omsrislb.my/wp-includes/js/wp-lists.js', 'wp-includes/js/wp-lists.js'),
(8732, '/home/binawebp/omsrislb.my/wp-includes/js/wp-lists.min.js', 'wp-includes/js/wp-lists.min.js'),
(8733, '/home/binawebp/omsrislb.my/wp-includes/js/wp-pointer.js', 'wp-includes/js/wp-pointer.js'),
(8734, '/home/binawebp/omsrislb.my/wp-includes/js/wp-pointer.min.js', 'wp-includes/js/wp-pointer.min.js'),
(8735, '/home/binawebp/omsrislb.my/wp-includes/js/wp-sanitize.js', 'wp-includes/js/wp-sanitize.js'),
(8736, '/home/binawebp/omsrislb.my/wp-includes/js/wp-sanitize.min.js', 'wp-includes/js/wp-sanitize.min.js'),
(8737, '/home/binawebp/omsrislb.my/wp-includes/js/wp-util.js', 'wp-includes/js/wp-util.js'),
(8738, '/home/binawebp/omsrislb.my/wp-includes/js/wp-util.min.js', 'wp-includes/js/wp-util.min.js'),
(8739, '/home/binawebp/omsrislb.my/wp-includes/js/wpdialog.js', 'wp-includes/js/wpdialog.js'),
(8740, '/home/binawebp/omsrislb.my/wp-includes/js/wpdialog.min.js', 'wp-includes/js/wpdialog.min.js'),
(8741, '/home/binawebp/omsrislb.my/wp-includes/js/wplink.js', 'wp-includes/js/wplink.js'),
(8742, '/home/binawebp/omsrislb.my/wp-includes/js/wplink.min.js', 'wp-includes/js/wplink.min.js'),
(8743, '/home/binawebp/omsrislb.my/wp-includes/js/zxcvbn-async.js', 'wp-includes/js/zxcvbn-async.js'),
(8744, '/home/binawebp/omsrislb.my/wp-includes/js/zxcvbn-async.min.js', 'wp-includes/js/zxcvbn-async.min.js'),
(8745, '/home/binawebp/omsrislb.my/wp-includes/js/zxcvbn.min.js', 'wp-includes/js/zxcvbn.min.js'),
(8746, '/home/binawebp/omsrislb.my/wp-includes/kses.php', 'wp-includes/kses.php'),
(8747, '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-controller.php', 'wp-includes/l10n/class-wp-translation-controller.php'),
(8748, '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-file-mo.php', 'wp-includes/l10n/class-wp-translation-file-mo.php'),
(8749, '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-file-php.php', 'wp-includes/l10n/class-wp-translation-file-php.php'),
(8750, '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translation-file.php', 'wp-includes/l10n/class-wp-translation-file.php'),
(8751, '/home/binawebp/omsrislb.my/wp-includes/l10n/class-wp-translations.php', 'wp-includes/l10n/class-wp-translations.php'),
(8752, '/home/binawebp/omsrislb.my/wp-includes/l10n.php', 'wp-includes/l10n.php'),
(8753, '/home/binawebp/omsrislb.my/wp-includes/link-template.php', 'wp-includes/link-template.php'),
(8754, '/home/binawebp/omsrislb.my/wp-includes/load.php', 'wp-includes/load.php'),
(8755, '/home/binawebp/omsrislb.my/wp-includes/locale.php', 'wp-includes/locale.php'),
(8756, '/home/binawebp/omsrislb.my/wp-includes/media-template.php', 'wp-includes/media-template.php'),
(8757, '/home/binawebp/omsrislb.my/wp-includes/media.php', 'wp-includes/media.php'),
(8758, '/home/binawebp/omsrislb.my/wp-includes/meta.php', 'wp-includes/meta.php'),
(8759, '/home/binawebp/omsrislb.my/wp-includes/ms-blogs.php', 'wp-includes/ms-blogs.php'),
(8760, '/home/binawebp/omsrislb.my/wp-includes/ms-default-constants.php', 'wp-includes/ms-default-constants.php'),
(8761, '/home/binawebp/omsrislb.my/wp-includes/ms-default-filters.php', 'wp-includes/ms-default-filters.php'),
(8762, '/home/binawebp/omsrislb.my/wp-includes/ms-deprecated.php', 'wp-includes/ms-deprecated.php'),
(8763, '/home/binawebp/omsrislb.my/wp-includes/ms-files.php', 'wp-includes/ms-files.php'),
(8764, '/home/binawebp/omsrislb.my/wp-includes/ms-functions.php', 'wp-includes/ms-functions.php'),
(8765, '/home/binawebp/omsrislb.my/wp-includes/ms-load.php', 'wp-includes/ms-load.php'),
(8766, '/home/binawebp/omsrislb.my/wp-includes/ms-network.php', 'wp-includes/ms-network.php'),
(8767, '/home/binawebp/omsrislb.my/wp-includes/ms-settings.php', 'wp-includes/ms-settings.php'),
(8768, '/home/binawebp/omsrislb.my/wp-includes/ms-site.php', 'wp-includes/ms-site.php'),
(8769, '/home/binawebp/omsrislb.my/wp-includes/nav-menu-template.php', 'wp-includes/nav-menu-template.php'),
(8770, '/home/binawebp/omsrislb.my/wp-includes/nav-menu.php', 'wp-includes/nav-menu.php'),
(8771, '/home/binawebp/omsrislb.my/wp-includes/option.php', 'wp-includes/option.php'),
(8772, '/home/binawebp/omsrislb.my/wp-includes/php-compat/readonly.php', 'wp-includes/php-compat/readonly.php'),
(8773, '/home/binawebp/omsrislb.my/wp-includes/pluggable-deprecated.php', 'wp-includes/pluggable-deprecated.php'),
(8774, '/home/binawebp/omsrislb.my/wp-includes/pluggable.php', 'wp-includes/pluggable.php'),
(8775, '/home/binawebp/omsrislb.my/wp-includes/plugin.php', 'wp-includes/plugin.php'),
(8776, '/home/binawebp/omsrislb.my/wp-includes/pomo/entry.php', 'wp-includes/pomo/entry.php'),
(8777, '/home/binawebp/omsrislb.my/wp-includes/pomo/mo.php', 'wp-includes/pomo/mo.php'),
(8778, '/home/binawebp/omsrislb.my/wp-includes/pomo/plural-forms.php', 'wp-includes/pomo/plural-forms.php'),
(8779, '/home/binawebp/omsrislb.my/wp-includes/pomo/po.php', 'wp-includes/pomo/po.php'),
(8780, '/home/binawebp/omsrislb.my/wp-includes/pomo/streams.php', 'wp-includes/pomo/streams.php'),
(8781, '/home/binawebp/omsrislb.my/wp-includes/pomo/translations.php', 'wp-includes/pomo/translations.php'),
(8782, '/home/binawebp/omsrislb.my/wp-includes/post-formats.php', 'wp-includes/post-formats.php'),
(8783, '/home/binawebp/omsrislb.my/wp-includes/post-template.php', 'wp-includes/post-template.php'),
(8784, '/home/binawebp/omsrislb.my/wp-includes/post-thumbnail-template.php', 'wp-includes/post-thumbnail-template.php'),
(8785, '/home/binawebp/omsrislb.my/wp-includes/post.php', 'wp-includes/post.php'),
(8786, '/home/binawebp/omsrislb.my/wp-includes/query.php', 'wp-includes/query.php'),
(8787, '/home/binawebp/omsrislb.my/wp-includes/registration-functions.php', 'wp-includes/registration-functions.php'),
(8788, '/home/binawebp/omsrislb.my/wp-includes/registration.php', 'wp-includes/registration.php'),
(8789, '/home/binawebp/omsrislb.my/wp-includes/rest-api/class-wp-rest-request.php', 'wp-includes/rest-api/class-wp-rest-request.php'),
(8790, '/home/binawebp/omsrislb.my/wp-includes/rest-api/class-wp-rest-response.php', 'wp-includes/rest-api/class-wp-rest-response.php'),
(8791, '/home/binawebp/omsrislb.my/wp-includes/rest-api/class-wp-rest-server.php', 'wp-includes/rest-api/class-wp-rest-server.php'),
(8792, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-categories-controller.php'),
(8793, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-list-controller.php'),
(8794, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-abilities-v1-run-controller.php'),
(8795, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'),
(8796, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),
(8797, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),
(8798, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php'),
(8799, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-block-pattern-categories-controller.php'),
(8800, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-block-patterns-controller.php'),
(8801, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),
(8802, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php'),
(8803, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php');
INSERT INTO `wpiq_wfknownfilelist` VALUES
(8804, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),
(8805, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),
(8806, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-edit-site-export-controller.php'),
(8807, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-font-collections-controller.php'),
(8808, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-font-faces-controller.php'),
(8809, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-font-families-controller.php'),
(8810, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php'),
(8811, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-global-styles-revisions-controller.php'),
(8812, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-menu-items-controller.php'),
(8813, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-menu-locations-controller.php'),
(8814, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php'),
(8815, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-navigation-fallback-controller.php'),
(8816, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php'),
(8817, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php'),
(8818, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),
(8819, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),
(8820, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),
(8821, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),
(8822, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),
(8823, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),
(8824, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php'),
(8825, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php'),
(8826, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),
(8827, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-template-autosaves-controller.php'),
(8828, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-template-revisions-controller.php'),
(8829, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php'),
(8830, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),
(8831, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),
(8832, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-url-details-controller.php'),
(8833, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),
(8834, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php'),
(8835, '/home/binawebp/omsrislb.my/wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php', 'wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php'),
(8836, '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php', 'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),
(8837, '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php', 'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),
(8838, '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php', 'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),
(8839, '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php', 'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),
(8840, '/home/binawebp/omsrislb.my/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php', 'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),
(8841, '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php', 'wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php'),
(8842, '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php', 'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),
(8843, '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-search-handler.php', 'wp-includes/rest-api/search/class-wp-rest-search-handler.php'),
(8844, '/home/binawebp/omsrislb.my/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php', 'wp-includes/rest-api/search/class-wp-rest-term-search-handler.php'),
(8845, '/home/binawebp/omsrislb.my/wp-includes/rest-api.php', 'wp-includes/rest-api.php'),
(8846, '/home/binawebp/omsrislb.my/wp-includes/revision.php', 'wp-includes/revision.php'),
(8847, '/home/binawebp/omsrislb.my/wp-includes/rewrite.php', 'wp-includes/rewrite.php'),
(8848, '/home/binawebp/omsrislb.my/wp-includes/robots-template.php', 'wp-includes/robots-template.php'),
(8849, '/home/binawebp/omsrislb.my/wp-includes/rss-functions.php', 'wp-includes/rss-functions.php'),
(8850, '/home/binawebp/omsrislb.my/wp-includes/rss.php', 'wp-includes/rss.php'),
(8851, '/home/binawebp/omsrislb.my/wp-includes/script-loader.php', 'wp-includes/script-loader.php'),
(8852, '/home/binawebp/omsrislb.my/wp-includes/script-modules.php', 'wp-includes/script-modules.php'),
(8853, '/home/binawebp/omsrislb.my/wp-includes/session.php', 'wp-includes/session.php'),
(8854, '/home/binawebp/omsrislb.my/wp-includes/shortcodes.php', 'wp-includes/shortcodes.php'),
(8855, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-index.php', 'wp-includes/sitemaps/class-wp-sitemaps-index.php'),
(8856, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-provider.php', 'wp-includes/sitemaps/class-wp-sitemaps-provider.php'),
(8857, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-registry.php', 'wp-includes/sitemaps/class-wp-sitemaps-registry.php'),
(8858, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-renderer.php', 'wp-includes/sitemaps/class-wp-sitemaps-renderer.php'),
(8859, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php', 'wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php'),
(8860, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/class-wp-sitemaps.php', 'wp-includes/sitemaps/class-wp-sitemaps.php'),
(8861, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php', 'wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php'),
(8862, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php', 'wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php'),
(8863, '/home/binawebp/omsrislb.my/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php', 'wp-includes/sitemaps/providers/class-wp-sitemaps-users.php'),
(8864, '/home/binawebp/omsrislb.my/wp-includes/sitemaps.php', 'wp-includes/sitemaps.php'),
(8865, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/LICENSE', 'wp-includes/sodium_compat/LICENSE'),
(8866, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/autoload-php7.php', 'wp-includes/sodium_compat/autoload-php7.php'),
(8867, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/autoload.php', 'wp-includes/sodium_compat/autoload.php'),
(8868, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/composer.json', 'wp-includes/sodium_compat/composer.json'),
(8869, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/constants.php', 'wp-includes/sodium_compat/lib/constants.php'),
(8870, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/namespaced.php', 'wp-includes/sodium_compat/lib/namespaced.php'),
(8871, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php72compat.php', 'wp-includes/sodium_compat/lib/php72compat.php'),
(8872, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php72compat_const.php', 'wp-includes/sodium_compat/lib/php72compat_const.php'),
(8873, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php84compat.php', 'wp-includes/sodium_compat/lib/php84compat.php'),
(8874, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/php84compat_const.php', 'wp-includes/sodium_compat/lib/php84compat_const.php'),
(8875, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/ristretto255.php', 'wp-includes/sodium_compat/lib/ristretto255.php'),
(8876, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/sodium_compat.php', 'wp-includes/sodium_compat/lib/sodium_compat.php'),
(8877, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/lib/stream-xchacha20.php', 'wp-includes/sodium_compat/lib/stream-xchacha20.php'),
(8878, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Compat.php', 'wp-includes/sodium_compat/namespaced/Compat.php'),
(8879, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php', 'wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),
(8880, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php', 'wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),
(8881, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php', 'wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),
(8882, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php', 'wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),
(8883, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),
(8884, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),
(8885, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),
(8886, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),
(8887, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),
(8888, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),
(8889, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),
(8890, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Curve25519.php', 'wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),
(8891, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Ed25519.php', 'wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),
(8892, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php', 'wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),
(8893, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php', 'wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),
(8894, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php', 'wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),
(8895, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Poly1305.php', 'wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),
(8896, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Salsa20.php', 'wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),
(8897, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/SipHash.php', 'wp-includes/sodium_compat/namespaced/Core/SipHash.php'),
(8898, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Util.php', 'wp-includes/sodium_compat/namespaced/Core/Util.php'),
(8899, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/X25519.php', 'wp-includes/sodium_compat/namespaced/Core/X25519.php'),
(8900, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php', 'wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),
(8901, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php', 'wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),
(8902, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/Crypto.php', 'wp-includes/sodium_compat/namespaced/Crypto.php'),
(8903, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/namespaced/File.php', 'wp-includes/sodium_compat/namespaced/File.php'),
(8904, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Compat.php', 'wp-includes/sodium_compat/src/Compat.php'),
(8905, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS/State128L.php', 'wp-includes/sodium_compat/src/Core/AEGIS/State128L.php'),
(8906, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS/State256.php', 'wp-includes/sodium_compat/src/Core/AEGIS/State256.php'),
(8907, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS128L.php', 'wp-includes/sodium_compat/src/Core/AEGIS128L.php'),
(8908, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AEGIS256.php', 'wp-includes/sodium_compat/src/Core/AEGIS256.php'),
(8909, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES/Block.php', 'wp-includes/sodium_compat/src/Core/AES/Block.php'),
(8910, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES/Expanded.php', 'wp-includes/sodium_compat/src/Core/AES/Expanded.php'),
(8911, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES/KeySchedule.php', 'wp-includes/sodium_compat/src/Core/AES/KeySchedule.php'),
(8912, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/AES.php', 'wp-includes/sodium_compat/src/Core/AES.php'),
(8913, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/BLAKE2b.php', 'wp-includes/sodium_compat/src/Core/BLAKE2b.php'),
(8914, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Base64/Original.php', 'wp-includes/sodium_compat/src/Core/Base64/Original.php'),
(8915, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php', 'wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php'),
(8916, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php', 'wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),
(8917, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php', 'wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),
(8918, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/ChaCha20.php', 'wp-includes/sodium_compat/src/Core/ChaCha20.php'),
(8919, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php', 'wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),
(8920, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),
(8921, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),
(8922, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),
(8923, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),
(8924, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php', 'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),
(8925, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/H.php', 'wp-includes/sodium_compat/src/Core/Curve25519/H.php'),
(8926, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519/README.md', 'wp-includes/sodium_compat/src/Core/Curve25519/README.md'),
(8927, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Curve25519.php', 'wp-includes/sodium_compat/src/Core/Curve25519.php'),
(8928, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Ed25519.php', 'wp-includes/sodium_compat/src/Core/Ed25519.php'),
(8929, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/HChaCha20.php', 'wp-includes/sodium_compat/src/Core/HChaCha20.php'),
(8930, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/HSalsa20.php', 'wp-includes/sodium_compat/src/Core/HSalsa20.php'),
(8931, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Poly1305/State.php', 'wp-includes/sodium_compat/src/Core/Poly1305/State.php'),
(8932, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Poly1305.php', 'wp-includes/sodium_compat/src/Core/Poly1305.php'),
(8933, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Ristretto255.php', 'wp-includes/sodium_compat/src/Core/Ristretto255.php'),
(8934, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Salsa20.php', 'wp-includes/sodium_compat/src/Core/Salsa20.php'),
(8935, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/SecretStream/State.php', 'wp-includes/sodium_compat/src/Core/SecretStream/State.php'),
(8936, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/SipHash.php', 'wp-includes/sodium_compat/src/Core/SipHash.php'),
(8937, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/Util.php', 'wp-includes/sodium_compat/src/Core/Util.php'),
(8938, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/X25519.php', 'wp-includes/sodium_compat/src/Core/X25519.php'),
(8939, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/XChaCha20.php', 'wp-includes/sodium_compat/src/Core/XChaCha20.php'),
(8940, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core/XSalsa20.php', 'wp-includes/sodium_compat/src/Core/XSalsa20.php'),
(8941, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/BLAKE2b.php', 'wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),
(8942, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php', 'wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),
(8943, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php', 'wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),
(8944, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/ChaCha20.php', 'wp-includes/sodium_compat/src/Core32/ChaCha20.php'),
(8945, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php', 'wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),
(8946, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),
(8947, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),
(8948, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),
(8949, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),
(8950, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php', 'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),
(8951, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/H.php', 'wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),
(8952, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519/README.md', 'wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),
(8953, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Curve25519.php', 'wp-includes/sodium_compat/src/Core32/Curve25519.php'),
(8954, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Ed25519.php', 'wp-includes/sodium_compat/src/Core32/Ed25519.php'),
(8955, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/HChaCha20.php', 'wp-includes/sodium_compat/src/Core32/HChaCha20.php'),
(8956, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/HSalsa20.php', 'wp-includes/sodium_compat/src/Core32/HSalsa20.php'),
(8957, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Int32.php', 'wp-includes/sodium_compat/src/Core32/Int32.php'),
(8958, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Int64.php', 'wp-includes/sodium_compat/src/Core32/Int64.php'),
(8959, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Poly1305/State.php', 'wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),
(8960, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Poly1305.php', 'wp-includes/sodium_compat/src/Core32/Poly1305.php'),
(8961, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Salsa20.php', 'wp-includes/sodium_compat/src/Core32/Salsa20.php'),
(8962, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/SecretStream/State.php', 'wp-includes/sodium_compat/src/Core32/SecretStream/State.php'),
(8963, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/SipHash.php', 'wp-includes/sodium_compat/src/Core32/SipHash.php'),
(8964, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/Util.php', 'wp-includes/sodium_compat/src/Core32/Util.php'),
(8965, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/X25519.php', 'wp-includes/sodium_compat/src/Core32/X25519.php'),
(8966, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/XChaCha20.php', 'wp-includes/sodium_compat/src/Core32/XChaCha20.php'),
(8967, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Core32/XSalsa20.php', 'wp-includes/sodium_compat/src/Core32/XSalsa20.php'),
(8968, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Crypto.php', 'wp-includes/sodium_compat/src/Crypto.php'),
(8969, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/Crypto32.php', 'wp-includes/sodium_compat/src/Crypto32.php'),
(8970, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/File.php', 'wp-includes/sodium_compat/src/File.php'),
(8971, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php', 'wp-includes/sodium_compat/src/PHP52/SplFixedArray.php'),
(8972, '/home/binawebp/omsrislb.my/wp-includes/sodium_compat/src/SodiumException.php', 'wp-includes/sodium_compat/src/SodiumException.php'),
(8973, '/home/binawebp/omsrislb.my/wp-includes/speculative-loading.php', 'wp-includes/speculative-loading.php'),
(8974, '/home/binawebp/omsrislb.my/wp-includes/spl-autoload-compat.php', 'wp-includes/spl-autoload-compat.php'),
(8975, '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-css-declarations.php', 'wp-includes/style-engine/class-wp-style-engine-css-declarations.php'),
(8976, '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-css-rule.php', 'wp-includes/style-engine/class-wp-style-engine-css-rule.php'),
(8977, '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php', 'wp-includes/style-engine/class-wp-style-engine-css-rules-store.php'),
(8978, '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine-processor.php', 'wp-includes/style-engine/class-wp-style-engine-processor.php'),
(8979, '/home/binawebp/omsrislb.my/wp-includes/style-engine/class-wp-style-engine.php', 'wp-includes/style-engine/class-wp-style-engine.php'),
(8980, '/home/binawebp/omsrislb.my/wp-includes/style-engine.php', 'wp-includes/style-engine.php'),
(8981, '/home/binawebp/omsrislb.my/wp-includes/taxonomy.php', 'wp-includes/taxonomy.php'),
(8982, '/home/binawebp/omsrislb.my/wp-includes/template-canvas.php', 'wp-includes/template-canvas.php'),
(8983, '/home/binawebp/omsrislb.my/wp-includes/template-loader.php', 'wp-includes/template-loader.php'),
(8984, '/home/binawebp/omsrislb.my/wp-includes/template.php', 'wp-includes/template.php'),
(8985, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/comments.php', 'wp-includes/theme-compat/comments.php'),
(8986, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/embed-404.php', 'wp-includes/theme-compat/embed-404.php'),
(8987, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/embed-content.php', 'wp-includes/theme-compat/embed-content.php'),
(8988, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/embed.php', 'wp-includes/theme-compat/embed.php'),
(8989, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/footer-embed.php', 'wp-includes/theme-compat/footer-embed.php'),
(8990, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/footer.php', 'wp-includes/theme-compat/footer.php'),
(8991, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/header-embed.php', 'wp-includes/theme-compat/header-embed.php'),
(8992, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/header.php', 'wp-includes/theme-compat/header.php'),
(8993, '/home/binawebp/omsrislb.my/wp-includes/theme-compat/sidebar.php', 'wp-includes/theme-compat/sidebar.php'),
(8994, '/home/binawebp/omsrislb.my/wp-includes/theme-i18n.json', 'wp-includes/theme-i18n.json'),
(8995, '/home/binawebp/omsrislb.my/wp-includes/theme-previews.php', 'wp-includes/theme-previews.php'),
(8996, '/home/binawebp/omsrislb.my/wp-includes/theme-templates.php', 'wp-includes/theme-templates.php'),
(8997, '/home/binawebp/omsrislb.my/wp-includes/theme.json', 'wp-includes/theme.json'),
(8998, '/home/binawebp/omsrislb.my/wp-includes/theme.php', 'wp-includes/theme.php'),
(8999, '/home/binawebp/omsrislb.my/wp-includes/update.php', 'wp-includes/update.php'),
(9000, '/home/binawebp/omsrislb.my/wp-includes/user.php', 'wp-includes/user.php'),
(9001, '/home/binawebp/omsrislb.my/wp-includes/utf8.php', 'wp-includes/utf8.php'),
(9002, '/home/binawebp/omsrislb.my/wp-includes/vars.php', 'wp-includes/vars.php'),
(9003, '/home/binawebp/omsrislb.my/wp-includes/version.php', 'wp-includes/version.php'),
(9004, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-nav-menu-widget.php', 'wp-includes/widgets/class-wp-nav-menu-widget.php'),
(9005, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-archives.php', 'wp-includes/widgets/class-wp-widget-archives.php'),
(9006, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-block.php', 'wp-includes/widgets/class-wp-widget-block.php'),
(9007, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-calendar.php', 'wp-includes/widgets/class-wp-widget-calendar.php'),
(9008, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-categories.php', 'wp-includes/widgets/class-wp-widget-categories.php'),
(9009, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-custom-html.php', 'wp-includes/widgets/class-wp-widget-custom-html.php'),
(9010, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-links.php', 'wp-includes/widgets/class-wp-widget-links.php'),
(9011, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-audio.php', 'wp-includes/widgets/class-wp-widget-media-audio.php'),
(9012, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-gallery.php', 'wp-includes/widgets/class-wp-widget-media-gallery.php'),
(9013, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-image.php', 'wp-includes/widgets/class-wp-widget-media-image.php'),
(9014, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media-video.php', 'wp-includes/widgets/class-wp-widget-media-video.php'),
(9015, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-media.php', 'wp-includes/widgets/class-wp-widget-media.php'),
(9016, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-meta.php', 'wp-includes/widgets/class-wp-widget-meta.php'),
(9017, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-pages.php', 'wp-includes/widgets/class-wp-widget-pages.php'),
(9018, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-recent-comments.php', 'wp-includes/widgets/class-wp-widget-recent-comments.php'),
(9019, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-recent-posts.php', 'wp-includes/widgets/class-wp-widget-recent-posts.php'),
(9020, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-rss.php', 'wp-includes/widgets/class-wp-widget-rss.php'),
(9021, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-search.php', 'wp-includes/widgets/class-wp-widget-search.php'),
(9022, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-tag-cloud.php', 'wp-includes/widgets/class-wp-widget-tag-cloud.php'),
(9023, '/home/binawebp/omsrislb.my/wp-includes/widgets/class-wp-widget-text.php', 'wp-includes/widgets/class-wp-widget-text.php'),
(9024, '/home/binawebp/omsrislb.my/wp-includes/widgets.php', 'wp-includes/widgets.php'),
(9025, '/home/binawebp/omsrislb.my/wp-includes/wp-db.php', 'wp-includes/wp-db.php'),
(9026, '/home/binawebp/omsrislb.my/wp-includes/wp-diff.php', 'wp-includes/wp-diff.php'),
(9027, '/home/binawebp/omsrislb.my/wp-links-opml.php', 'wp-links-opml.php'),
(9028, '/home/binawebp/omsrislb.my/wp-load.php', 'wp-load.php'),
(9029, '/home/binawebp/omsrislb.my/wp-login.php', 'wp-login.php'),
(9030, '/home/binawebp/omsrislb.my/wp-mail.php', 'wp-mail.php'),
(9031, '/home/binawebp/omsrislb.my/wp-settings.php', 'wp-settings.php'),
(9032, '/home/binawebp/omsrislb.my/wp-signup.php', 'wp-signup.php'),
(9033, '/home/binawebp/omsrislb.my/wp-trackback.php', 'wp-trackback.php'),
(9034, '/home/binawebp/omsrislb.my/xmlrpc.php', 'xmlrpc.php');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wflivetraffichuman`
--

CREATE TABLE `wpiq_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wflocs`
--

CREATE TABLE `wpiq_wflocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int unsigned NOT NULL,
  `failed` tinyint unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wflogins`
--

CREATE TABLE `wpiq_wflogins` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wflogins`
--

INSERT INTO `wpiq_wflogins` VALUES
(1, 1, 1656050235.975089, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0ve:', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36'),
(2, 225, 1656638550.415457, 0, 'loginOK', 'admina', 2, '\0\0\0\0\0\0\0\0\0\0F_5`', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36supermanU11jKc0nktGFMqIO2fpLulCUKL8G3VC2'),
(3, 317, 1657265911.841794, 0, 'loginOK', 'admina', 2, '\0\0\0\0\0\0\0\0\0\0&\Zy', 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36supermanU11jKc0nktGFMqIO2fpLulCUKL8G3VC2'),
(4, 369, 1669846893.317023, 1, 'loginFailInvalidUsername', 'guest', 0, '\0\0\0\0\0\0\0\0\0\0J', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0'),
(5, 370, 1669846900.181936, 1, 'loginFailInvalidUsername', 'stang', 0, '\0\0\0\0\0\0\0\0\0\0óG', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0'),
(6, 389, 1670888354.794854, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0ʤ', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4758.11 Safari/537.36'),
(7, 391, 1670905639.943795, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0A', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(8, 393, 1670922875.539058, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0ufA', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(9, 395, 1670939590.180504, 1, 'loginFailInvalidUsername', 'wordcamp', 0, '\0\0\0\0\0\0\0\0\0\0fX"}', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36'),
(10, 397, 1670956105.600310, 1, 'loginFailInvalidUsername', 'adminlin', 0, '\0\0\0\0\0\0\0\0\0\0nXZ', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(11, 399, 1670973319.269238, 1, 'loginFailInvalidUsername', 'editor', 0, '\0\0\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(12, 401, 1670994881.082386, 1, 'loginFailInvalidUsername', 'editor', 0, '\0\0\0\0\0\0\0\0\0\0|j', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(13, 412, 1671428861.323951, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0}]', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36'),
(14, 417, 1671555319.958830, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0Zb', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(15, 417, 1671555319.964460, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0Zb', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(16, 420, 1671682416.327144, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g9', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(17, 423, 1671801382.554293, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0[R', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4758.11 Safari/537.36'),
(18, 425, 1671925123.247167, 1, 'loginFailInvalidUsername', 'omsrislb', 0, '\0\0\0\0\0\0\0\0\0\0va', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(19, 429, 1672028834.128931, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0i`0{', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36'),
(20, 449, 1672122752.169451, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36'),
(21, 452, 1672240439.018764, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0MJ', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4758.11 Safari/537.36'),
(22, 459, 1672462489.161052, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0qъ', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'),
(23, 460, 1672601815.953815, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0(rz', 'Mozilla/5.0 (Linux x86_64; rv:79.0) Gecko/20100101 Firefox/79.0'),
(24, 461, 1672601823.681372, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0(rz', 'Mozilla/5.0 (Linux x86_64; rv:79.0) Gecko/20100101 Firefox/79.0'),
(25, 471, 1673060156.557254, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(26, 472, 1673060157.142122, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(27, 473, 1673060157.669953, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(28, 474, 1673060158.280114, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(29, 475, 1673060158.918674, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(30, 476, 1673060159.477271, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(31, 477, 1673060160.063652, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(32, 478, 1673060160.652080, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(33, 479, 1673060161.147219, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(34, 480, 1673060161.725561, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(35, 481, 1673060162.244884, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(36, 484, 1673233577.659707, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0t', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'),
(37, 485, 1673321024.271230, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\01', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0'),
(38, 486, 1673349821.684993, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0ng', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'),
(39, 530, 1673488695.528645, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36'),
(40, 652, 1691246871.103645, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(41, 652, 1691246871.115575, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(42, 653, 1691246872.017351, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(43, 654, 1691246872.852961, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(44, 655, 1691246873.704254, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(45, 656, 1691246874.576831, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(46, 657, 1691246875.580663, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(47, 658, 1691246876.470989, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(48, 659, 1691246877.403263, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(49, 660, 1691246878.292006, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(50, 661, 1691246879.149938, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(51, 662, 1691246880.033697, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36'),
(52, 721, 1691317769.833640, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(53, 722, 1691317770.302913, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(54, 722, 1691317770.305367, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(55, 723, 1691317770.843040, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(56, 724, 1691317771.379109, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(57, 724, 1691317771.382259, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(58, 725, 1691317771.864810, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(59, 726, 1691317772.363656, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(60, 727, 1691317772.850203, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(61, 728, 1691317773.330243, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(62, 729, 1691317773.914486, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(63, 730, 1691317774.485071, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(64, 731, 1691317774.956161, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0;', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36'),
(65, 737, 1691365926.798586, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(66, 738, 1691365927.897544, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(67, 739, 1691365930.057371, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(68, 740, 1691365931.194900, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(69, 741, 1691365932.338956, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(70, 742, 1691365933.436568, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(71, 743, 1691365934.508588, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(72, 744, 1691365935.659481, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(73, 745, 1691365936.727211, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(74, 746, 1691403135.807396, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(75, 747, 1691403137.003782, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(76, 748, 1691403138.499507, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(77, 749, 1691403140.034653, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(78, 750, 1691403141.197043, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(79, 751, 1691403142.302010, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(80, 752, 1691403143.796394, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(81, 753, 1691403144.973442, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(82, 754, 1691403146.144198, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(83, 755, 1691403147.250748, 1, 'loginFailInvalidUsername', 'vmcarw_admin', 0, '\0\0\0\0\0\0\0\0\0\0g*', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),
(84, 768, 1691588920.103670, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\03d', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(85, 773, 1691589010.182785, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0e3#', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(86, 777, 1691589863.829234, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4895.86 Safari/537.36'),
(87, 781, 1691590262.833808, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0KL', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(88, 803, 1691606781.957400, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0>L', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36'),
(89, 822, 1691622127.497772, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0>L', 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(90, 825, 1691625013.674307, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0>', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'),
(91, 841, 1691723957.755412, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0<5.', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),
(92, 871, 1691992200.945764, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0}4', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'),
(93, 872, 1691992227.415636, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0}4', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'),
(94, 873, 1691992352.310956, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0}4', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'),
(95, 875, 1692002578.237220, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0<5.', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),
(96, 876, 1692002611.385503, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0<5.', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),
(97, 879, 1692002717.512673, 0, 'logout', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0<5.', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),
(98, 880, 1692002722.033103, 0, 'loginOK', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0<5.', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),
(99, 881, 1692002726.643435, 0, 'logout', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0<5.', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),
(100, 896, 1692233658.408489, 0, 'loginOK', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0}i', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'),
(101, 905, 1692395572.323579, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0U7+B', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(102, 906, 1692395583.029149, 1, 'loginFailInvalidUsername', 'omsrislb.com', 0, '\0\0\0\0\0\0\0\0\0\0z', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(103, 907, 1692395591.417771, 1, 'loginFailInvalidUsername', 'omsrislb!', 0, '\0\0\0\0\0\0\0\0\0\07\n', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(104, 908, 1692395596.105450, 1, 'loginFailInvalidUsername', 'wordpress', 0, '\0\0\0\0\0\0\0\0\0\0XS)', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(105, 909, 1692395602.821667, 1, 'loginFailInvalidUsername', 'omsrislb', 0, '\0\0\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(106, 910, 1692395605.662251, 1, 'loginFailInvalidUsername', 'wordpress', 0, '\0\0\0\0\0\0\0\0\0\0g\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(107, 911, 1692395613.124797, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(108, 912, 1692395615.972310, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0jA', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(109, 913, 1692395618.297231, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0ڕ', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(110, 914, 1692395628.347134, 1, 'loginFailInvalidUsername', 'omsrislb', 0, '\0\0\0\0\0\0\0\0\0\0.-', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(111, 915, 1692395643.780540, 1, 'loginFailInvalidUsername', 'omsrislb', 0, '\0\0\0\0\0\0\0\0\0\0vV', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(112, 916, 1692395650.691530, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0ņS', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(113, 917, 1692395684.932828, 1, 'loginFailInvalidUsername', 'omsrislb', 0, '\0\0\0\0\0\0\0\0\0\0eh', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(114, 918, 1692395692.424264, 1, 'loginFailInvalidUsername', 'wordpress', 0, '\0\0\0\0\0\0\0\0\0\0)L', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(115, 919, 1692395695.362582, 1, 'loginFailInvalidUsername', 'password', 0, '\0\0\0\0\0\0\0\0\0\0D', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(116, 920, 1692395698.976437, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(117, 921, 1692395702.092967, 1, 'loginFailInvalidUsername', 'wordpress', 0, '\0\0\0\0\0\0\0\0\0\0V', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),
(118, 922, 1692408379.288328, 0, 'loginOK', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0}?', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'),
(119, 1035, 1692582261.603086, 0, 'loginOK', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0})', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'),
(120, 1036, 1692591525.513717, 0, 'loginOK', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0<5.', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),
(121, 1050, 1741678309.904466, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0O', 'Mozilla/5.0'),
(122, 1067, 1741721185.842418, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0DS', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36'),
(123, 1075, 1741741189.627195, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0\\', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.5790.171 Safari/537.36 Edg/115.0.1901.203'),
(124, 1080, 1741885691.695733, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0$', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(125, 1081, 1741889150.906912, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0_', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(126, 1081, 1741889150.930682, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0_', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(127, 1092, 1741932319.402349, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0w[-', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(128, 1108, 1741990304.128760, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0132', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(129, 1151, 1742351311.830677, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0ׂJ', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:128.0) Gecko/20100101 Firefox/128.0'),
(130, 1151, 1742351311.883039, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0ׂJ', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:128.0) Gecko/20100101 Firefox/128.0'),
(131, 1159, 1742375256.843275, 1, 'loginFailValidUsername', 'omsri', 1, '$\0\0 ŀ?,GW', 'Mozilla/5.0'),
(132, 1160, 1742375277.554174, 1, 'loginFailValidUsername', 'omsri', 1, '$\0\0 ŀ?,GW', 'Mozilla/5.0'),
(133, 1193, 1742375911.830302, 1, 'loginFailValidUsername', 'omsri', 1, '$\0\0 ŀ?,GW', 'Mozilla/5.0'),
(134, 1194, 1742375929.505210, 1, 'loginFailValidUsername', 'omsri', 1, '$\0\0 ŀ?,GW', 'Mozilla/5.0'),
(135, 1244, 1742610277.691244, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0Q', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(136, 1244, 1742610277.709310, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0Q', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(137, 1245, 1742614958.850448, 1, 'loginFailValidUsername', 'admin', 3, '$e	`e\0kfdR', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(138, 1268, 1742690486.974602, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0Kw5', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(139, 1268, 1742690486.991173, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0Kw5', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(140, 1303, 1743398665.940970, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06r', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0'),
(141, 1345, 1743456893.137478, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0gb', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:125.0.1) Gecko/20100101 Firefox/125.0.1'),
(142, 1378, 1743506786.707762, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0#', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 14.3) AppleWebKit/614.31.14 (KHTML, like Gecko) Version/17.0.96 Safari/614.31.14'),
(143, 1403, 1743621402.916510, 1, 'loginFailValidUsername', 'admin', 3, '&\0a<\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:129.0) Gecko/20100101 Firefox/129.0'),
(144, 1403, 1743621402.924288, 1, 'loginFailValidUsername', 'admin', 3, '&\0a<\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:129.0) Gecko/20100101 Firefox/129.0'),
(145, 1404, 1743621996.402823, 1, 'loginFailValidUsername', 'admin', 3, '*5D\0\0\Z^', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 13.3; rv:126.0) Gecko/20100101 Firefox/126.0'),
(146, 1458, 1743668680.075259, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36'),
(147, 1473, 1743792169.699533, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0*B', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.5672.126 Safari/537.36 Edg/113.0.1774.50'),
(148, 1489, 1743843179.474033, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0".k', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15'),
(149, 1496, 1743856526.655695, 1, 'loginFailValidUsername', 'admin', 3, '*d@\0\0,=\0\0\0\0\0\0\0', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.138 Safari/537.36'),
(150, 1545, 1744197908.801239, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0gى', 'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),
(151, 1546, 1744208959.126226, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"V', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(152, 1547, 1744208960.792382, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"V', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(153, 1565, 1746201988.996701, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0t^', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36'),
(154, 1566, 1746201989.821830, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0t^', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 13.3; rv:126.0) Gecko/20100101 Firefox/126.0'),
(155, 1570, 1746210436.009320, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36'),
(156, 1571, 1746210436.018321, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0g', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.5672.126 Safari/537.36 Edg/113.0.1774.50'),
(157, 1577, 1746227596.725429, 1, 'loginFailValidUsername', 'admin', 3, '&\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0'),
(158, 1630, 1746377818.324094, 1, 'loginFailValidUsername', 'admin', 3, '&o\04\0\0\0\0\0\0', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0'),
(159, 1703, 1748291902.374528, 1, 'loginFailValidUsername', 'admin', 3, '&o\04\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.5845.96 Safari/537.36 Edg/116.0.1938.62'),
(160, 1706, 1748346835.604220, 1, 'loginFailInvalidUsername', 'test01', 0, '*Z\0qx[x', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(161, 1707, 1748451197.925832, 1, 'loginFailInvalidUsername', 'test01', 0, '(uT*1Okl', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(162, 1708, 1748555111.331992, 1, 'loginFailInvalidUsername', 'test01', 0, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(163, 1709, 1748557965.716501, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(164, 1710, 1748558068.738975, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(165, 1711, 1748558172.643895, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(166, 1712, 1748558272.855925, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(167, 1713, 1748558365.248515, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(168, 1714, 1748558467.551865, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(169, 1715, 1748558674.430877, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(170, 1716, 1748558784.743892, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(171, 1717, 1748558892.473277, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(172, 1718, 1748558989.260871, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(173, 1719, 1748559095.947555, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(174, 1720, 1748559204.885876, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(175, 1720, 1748559204.890943, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(176, 1721, 1748559341.470481, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(177, 1721, 1748559341.475039, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(178, 1722, 1748559459.948445, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(179, 1722, 1748559459.953491, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(180, 1723, 1748559565.452740, 1, 'loginFailValidUsername', 'admin', 3, '(^\0H', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(181, 1740, 1749832292.702996, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(182, 1741, 1749832293.604439, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(183, 1742, 1749832294.509370, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(184, 1743, 1749832295.380417, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(185, 1744, 1749832296.327762, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(186, 1745, 1749832298.089048, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(187, 1746, 1749832301.018002, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(188, 1747, 1749832304.797142, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(189, 1748, 1749832306.438882, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(190, 1749, 1749832308.317697, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(191, 1750, 1749832311.070188, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(192, 1751, 1749832314.796970, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(193, 1752, 1749832319.582168, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(194, 1752, 1749832319.586217, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(195, 1753, 1749832321.460228, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(196, 1754, 1749832325.049935, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(197, 1754, 1749832325.057862, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(198, 1755, 1749832328.894484, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(199, 1756, 1749832333.754145, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"8', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),
(200, 1760, 1750672091.466713, 1, 'loginFailInvalidUsername', 'test01', 0, '\0\0\0\0\0\0\0\0\0\0-{\r', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(201, 1766, 1751538029.921342, 1, 'loginFailInvalidUsername', 'test01', 0, ' \0q4', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(202, 1783, 1751561038.313321, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0ϔ[', 'Mozilla/5.0'),
(203, 1786, 1751870888.003725, 1, 'loginFailInvalidUsername', 'test01', 0, '(L%$P j3', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(204, 1787, 1752234608.608547, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(205, 1788, 1752234609.212285, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(206, 1789, 1752234609.859261, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(207, 1790, 1752234610.460757, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(208, 1791, 1752234611.055229, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(209, 1792, 1752234612.636888, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(210, 1792, 1752234612.640938, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(211, 1793, 1752234615.276337, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(212, 1794, 1752234615.897738, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(213, 1795, 1752234616.514173, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(214, 1796, 1752234618.177618, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(215, 1797, 1752234620.779403, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(216, 1798, 1752234624.329345, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(217, 1799, 1752234628.890228, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(218, 1800, 1752234631.525725, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(219, 1801, 1752234634.179669, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(220, 1802, 1752234637.664184, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\06', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(221, 1803, 1752275976.520458, 1, 'loginFailInvalidUsername', 'test01', 0, '(xV^R', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(222, 1807, 1753042003.397413, 1, 'loginFailInvalidUsername', 'test01', 0, '\0\0\0\0\0\0\0\0\0\0az', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'),
(223, 1808, 1753340961.668197, 1, 'loginFailValidUsername', 'omsri', 1, '\0\0\0\0\0\0\0\0\0\0@', 'Mozilla/5.0'),
(224, 1846, 1755671489.770465, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(225, 1847, 1755671489.989341, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(226, 1848, 1755671490.208292, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(227, 1849, 1755671490.575260, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(228, 1850, 1755671490.830971, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(229, 1851, 1755671491.035224, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(230, 1851, 1755671491.039161, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(231, 1852, 1755671491.245536, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(232, 1853, 1755671491.502126, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(233, 1854, 1755671492.693806, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(234, 1855, 1755671494.819043, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(235, 1856, 1755671498.072626, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(236, 1857, 1755671502.248930, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(237, 1858, 1755671505.454936, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(238, 1859, 1755671507.629945, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(239, 1860, 1755671510.870105, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(240, 1861, 1755671515.047059, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0M', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(241, 1890, 1757267540.908844, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(242, 1891, 1757267541.395310, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(243, 1892, 1757267541.838598, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(244, 1893, 1757267542.278300, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(245, 1894, 1757267542.716688, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(246, 1895, 1757267544.081352, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(247, 1896, 1757267546.448355, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(248, 1898, 1757267549.824466, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(249, 1899, 1757267550.290520, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(250, 1900, 1757267551.709138, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(251, 1900, 1757267551.712404, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(252, 1901, 1757267554.168222, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(253, 1902, 1757267557.682528, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(254, 1902, 1757267557.685656, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(255, 1903, 1757267562.085669, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(256, 1904, 1757267565.566794, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(257, 1905, 1757267568.066050, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0h', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(258, 1910, 1757425136.058011, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(259, 1911, 1757425136.518898, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(260, 1912, 1757425136.983357, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(261, 1913, 1757425137.442734, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(262, 1914, 1757425137.901968, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(263, 1915, 1757425139.348108, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(264, 1916, 1757425140.852897, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(265, 1917, 1757425141.326792, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(266, 1918, 1757425141.799382, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(267, 1919, 1757425143.204646, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(268, 1919, 1757425143.208451, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(269, 1920, 1757425145.728903, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(270, 1921, 1757425150.092408, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(271, 1921, 1757425150.095988, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(272, 1922, 1757425154.417099, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(273, 1923, 1757425155.773456, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(274, 1924, 1757425158.221859, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(275, 1925, 1757425161.592668, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"]', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(276, 1939, 1758165025.960059, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(277, 1940, 1758165026.190597, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(278, 1941, 1758165026.410215, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(279, 1942, 1758165026.655299, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(280, 1943, 1758165026.865935, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(281, 1944, 1758165028.003563, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(282, 1944, 1758165028.010474, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36');
INSERT INTO `wpiq_wflogins` VALUES
(283, 1945, 1758165030.225569, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(284, 1946, 1758165030.445016, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(285, 1947, 1758165030.659455, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(286, 1948, 1758165031.799236, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(287, 1949, 1758165034.087479, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(288, 1950, 1758165037.194549, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(289, 1951, 1758165041.406155, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(290, 1952, 1758165045.648617, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(291, 1953, 1758165047.780819, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(292, 1954, 1758165050.912643, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0v', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),
(293, 1982, 1758790921.780236, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"J', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),
(294, 1983, 1758790936.170244, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"J', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),
(295, 1984, 1758790940.697427, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"J', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),
(296, 1985, 1758790950.214134, 1, 'loginFailValidUsername', 'admin', 3, '\0\0\0\0\0\0\0\0\0\0"J', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfls_2fa_secrets`
--

CREATE TABLE `wpiq_wfls_2fa_secrets` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int unsigned NOT NULL,
  `vtime` int unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfls_role_counts`
--

CREATE TABLE `wpiq_wfls_role_counts` (
  `serialized_roles` varbinary(255) NOT NULL,
  `two_factor_inactive` tinyint(1) NOT NULL,
  `user_count` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`serialized_roles`,`two_factor_inactive`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfls_settings`
--

CREATE TABLE `wpiq_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfls_settings`
--

INSERT INTO `wpiq_wfls_settings` VALUES
('2fa-user-grace-period', '10', 'yes'),
('allow-disabling-ntp', '1', 'yes'),
('allow-xml-rpc', '1', 'yes'),
('captcha-stats', '{"counts":[0,0,0,0,0,0,0,0,0,0,0],"avg":0}', 'yes'),
('delete-deactivation', '', 'yes'),
('disable-temporary-tables', '0', 'yes'),
('enable-auth-captcha', '', 'yes'),
('enable-login-history-columns', '1', 'yes'),
('enable-shortcode', '', 'yes'),
('enable-woocommerce-account-integration', '', 'yes'),
('enable-woocommerce-integration', '', 'yes'),
('global-notices', '[]', 'yes'),
('ip-source', '', 'yes'),
('ip-trusted-proxies', '', 'yes'),
('last-secret-refresh', '1735542625', 'yes'),
('ntp-failure-count', '3', 'yes'),
('ntp-offset', '0', 'yes'),
('recaptcha-threshold', '0.5', 'yes'),
('remember-device', '', 'yes'),
('remember-device-duration', '2592000', 'yes'),
('require-2fa-grace-period-enabled', '', 'yes'),
('require-2fa.administrator', '', 'yes'),
('schema-version', '2', 'yes'),
('shared-hash-secret', '4ea438a4308f1b473f08fd7acc43b3b340a833a4e783821bcdbf8df5b3f0a3c6', 'yes'),
('shared-symmetric-secret', '1243d00aef698348405c8fc303708e8839e12b013dffe3045d710c0ac7206f69', 'yes'),
('stack-ui-columns', '1', 'yes'),
('use-ntp', '', 'yes'),
('user-count-query-state', '0', 'yes'),
('whitelisted', '', 'yes'),
('xmlrpc-enabled', '1', 'yes');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfnotifications`
--

CREATE TABLE `wpiq_wfnotifications` (
  `id` varchar(32) NOT NULL DEFAULT '',
  `new` tinyint unsigned NOT NULL DEFAULT '1',
  `category` varchar(255) NOT NULL,
  `priority` int NOT NULL DEFAULT '1000',
  `ctime` int unsigned NOT NULL,
  `html` text NOT NULL,
  `links` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfnotifications`
--

INSERT INTO `wpiq_wfnotifications` VALUES
('network-GQ2TGNZV', 0, 'toupp-20211122', 100, 1657182265, '<p><strong>Wordfence Terms of Service and End User License Agreement Update</strong></p>\n<p>Please review the updated Terms of Service with the new Wordfence End User License Agreement.\n</p>\n<p><a href="https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122" class="wf-btn wf-btn-callout wf-btn-primary" target="_blank">Terms of Service</a> <a href="https://www.wordfence.com/license-terms-and-conditions/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122" class="wf-btn wf-btn-callout wf-btn-primary" target="_blank">End User License Agreement</a></p>', '[]'),
('network-GQ2TGNZW', 0, 'toupp-20220714', 100, 1692669882, '<p><strong>Wordfence Terms of Service and UK IDTA</strong></p>\n<p>Please review the updated Terms of Service with the new UK IDTA.\n</p>\n<p><a href="https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714" class="wf-btn wf-btn-callout wf-btn-primary" target="_blank">Terms of Service</a> <a href="https://www.wordfence.com/uk-international-data-transfer-addendum/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714" class="wf-btn wf-btn-callout wf-btn-primary" target="_blank">UK IDTA</a></p>\n', '[]'),
('site-2IAAAAA', 0, 'wfplugin_updates', 502, 1671079225, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-4MAAAAA', 0, 'wfplugin_updates', 502, 1671500905, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-5MAAAAA', 0, 'wfplugin_updates', 502, 1671641605, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-A4AAAAA', 0, 'wfplugin_updates', 502, 1656059136, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-AEAAAAA', 0, 'wfplugin_updates', 502, 1655454103, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-AIAAAAA', 0, 'wfplugin_scan', 502, 1743997504, '<a href="https://omsrislb.my/wp-admin/admin.php?page=WordfenceScan">4 issues found in most recent scan</a>', '[]'),
('site-BUCQAAA', 0, 'wfplugin_scan', 502, 1754898909, '<a href="https://omsrislb.my/wp-admin/admin.php?page=WordfenceScan">5 issues found in most recent scan</a>', '[]'),
('site-DIAQAAA', 0, 'wfplugin_updates', 502, 1673280285, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-DMAAAAA', 0, 'wfplugin_updates', 502, 1656578210, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-DYAAAAA', 0, 'wfplugin_updates', 502, 1656606882, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-EEAQAAA', 0, 'wfplugin_updates', 502, 1673367439, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-FYAAAAA', 0, 'wfplugin_updates', 502, 1656908712, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-GMAQAAA', 0, 'wfplugin_updates', 502, 1673945216, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-GUAAAAA', 0, 'wfplugin_updates', 502, 1657042437, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-HAAQAAA', 0, 'wfplugin_updates', 502, 1692507974, '<a href="https://omsrislb.my/wp-admin/update-core.php">Updates are available for 1 plugin and 1 theme</a>', '[]'),
('site-HUAAAAA', 0, 'wfplugin_updates', 502, 1657211107, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-IIAAAAA', 0, 'wfplugin_updates', 502, 1668588948, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 2 plugins</a>', '[]'),
('site-K4CQAAA', 0, 'wfplugin_scan', 502, 1760828624, '<a href="https://omsrislb.my/wp-admin/admin.php?page=WordfenceScan">4 issues found in most recent scan</a>', '[]'),
('site-MUAAAAA', 0, 'wfplugin_updates', 502, 1668708545, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-MUBQAAA', 0, 'wfplugin_scan', 502, 1753047846, '<a href="http://omsrislb.my/wp-admin/admin.php?page=WordfenceScan">5 issues found in most recent scan</a>', '[]'),
('site-MYDAAAA', 1, 'wfplugin_scan', 502, 1770186411, '<a href="http://omsrislb.my/wp-admin/admin.php?page=WordfenceScan">5 issues found in most recent scan</a>', '[]'),
('site-NMAAAAA', 0, 'wfplugin_updates', 502, 1668831885, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-OQAAAAA', 0, 'wfplugin_updates', 502, 1669049593, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-P4AAAAA', 0, 'wfplugin_updates', 502, 1669138538, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-SAAAAAA', 0, 'wfplugin_updates', 502, 1669698694, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-TAAAAAA', 0, 'wfplugin_updates', 502, 1669824899, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-TMAQAAA', 0, 'wfplugin_updates', 502, 1692583430, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-TUAAAAA', 0, 'wfplugin_updates', 502, 1669967919, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-UQAQAAA', 1, 'wfplugin_updates', 502, 1770186411, '<a href="http://omsrislb.my/wp-admin/update-core.php">Updates are available for WordPress (v6.9.1), 3 plugins, and 1 theme</a>', '[]'),
('site-V4AAAAA', 0, 'wfplugin_updates', 502, 1670385292, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-VQAAAAA', 0, 'wfplugin_updates', 502, 1670345527, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-WQAAAAA', 0, 'wfplugin_updates', 502, 1670447243, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-YQAAAAA', 0, 'wfplugin_updates', 502, 1670905137, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-ZEAAAAA', 0, 'wfplugin_updates', 502, 1670993335, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]'),
('site-ZYAAAAA', 0, 'wfplugin_updates', 502, 1671038844, '<a href="https://omsrislb.my/wp-admin/update-core.php">An update is available for 1 plugin</a>', '[]');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfpendingissues`
--

CREATE TABLE `wpiq_wfpendingissues` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `time` int unsigned NOT NULL,
  `lastUpdated` int unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`),
  KEY `lastUpdated` (`lastUpdated`),
  KEY `status` (`status`),
  KEY `ignoreP` (`ignoreP`),
  KEY `ignoreC` (`ignoreC`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfreversecache`
--

CREATE TABLE `wpiq_wfreversecache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfreversecache`
--

INSERT INTO `wpiq_wfreversecache` VALUES
('\0\0\0\0\0\0\0\0\0\0Υ.', 'ec2-18-206-165-46.compute-1.amazonaws.com', 1769725147),
('\0\0\0\0\0\0\0\0\0\0E)', '69.167.12.41', 1769985552);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfsecurityevents`
--

CREATE TABLE `wpiq_wfsecurityevents` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(255) NOT NULL DEFAULT '',
  `data` text NOT NULL,
  `event_time` double(14,4) NOT NULL,
  `state` enum('new','sending','sent') NOT NULL DEFAULT 'new',
  `state_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfsnipcache`
--

CREATE TABLE `wpiq_wfsnipcache` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int unsigned NOT NULL DEFAULT '0',
  `type` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`),
  KEY `type` (`type`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfsnipcache`
--

INSERT INTO `wpiq_wfsnipcache` VALUES
(846, '35.192.138.69', '2026-01-28 23:04:42', 'BLOCKED:600', 0, 2),
(847, '35.237.242.200', '2026-01-29 18:11:58', 'BLOCKED:600', 0, 2),
(848, '34.140.108.187', '2026-01-29 19:06:26', 'BLOCKED:600', 0, 2),
(849, '104.155.47.244', '2026-01-29 19:10:51', 'BLOCKED:600', 0, 2),
(850, '34.148.44.210', '2026-01-29 19:35:28', 'BLOCKED:600', 0, 2),
(851, '34.138.184.194', '2026-01-30 23:36:46', 'BLOCKED:600', 0, 2),
(852, '34.63.99.187', '2026-01-31 02:09:46', 'BLOCKED:600', 0, 2),
(853, '34.59.50.91', '2026-01-31 14:56:16', 'BLOCKED:600', 0, 2);

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfstatus`
--

CREATE TABLE `wpiq_wfstatus` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfstatus`
--

INSERT INTO `wpiq_wfstatus` VALUES
(38576, 1764266935.747806, 2, 'info', 'Scanned contents of 590 additional files at 13.24 per second'),
(38577, 1764266937.097920, 2, 'info', 'Scanned contents of 612 additional files at 13.33 per second'),
(38578, 1764266938.317366, 2, 'info', 'Scanned contents of 626 additional files at 13.28 per second'),
(38579, 1764266939.319467, 2, 'info', 'Scanned contents of 654 additional files at 13.58 per second'),
(38580, 1764266940.371275, 2, 'info', 'Scanned contents of 668 additional files at 13.58 per second'),
(38581, 1764266941.713592, 2, 'info', 'Scanned contents of 671 additional files at 13.28 per second'),
(38582, 1764266942.767157, 2, 'info', 'Scanned contents of 679 additional files at 13.16 per second'),
(38583, 1764266943.924024, 2, 'info', 'Scanned contents of 695 additional files at 13.18 per second'),
(38584, 1764266947.211067, 2, 'info', 'Scanned contents of 712 additional files at 12.71 per second'),
(38585, 1764266948.230744, 2, 'info', 'Scanned contents of 739 additional files at 12.95 per second'),
(38586, 1764266949.232823, 2, 'info', 'Scanned contents of 760 additional files at 13.09 per second'),
(38587, 1764266950.239959, 2, 'info', 'Scanned contents of 782 additional files at 13.24 per second'),
(38588, 1764266951.293248, 2, 'info', 'Scanned contents of 806 additional files at 13.41 per second'),
(38589, 1764266952.294203, 2, 'info', 'Scanned contents of 829 additional files at 13.56 per second'),
(38590, 1764266953.424665, 2, 'info', 'Scanned contents of 850 additional files at 13.65 per second'),
(38591, 1764266953.756314, 2, 'info', 'Scanned contents of 853 additional files at 13.63 per second'),
(38592, 1764266953.756529, 2, 'info', 'Asking Wordfence to check URLs against malware list.'),
(38593, 1764266953.756940, 2, 'info', 'Checking 113 host keys against Wordfence scanning servers.'),
(38594, 1764266954.378910, 2, 'info', 'Done host key check.'),
(38595, 1764266954.455291, 2, 'info', 'Done file contents scan'),
(38601, 1764266954.529213, 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(38602, 1764266954.529434, 2, 'info', 'Checking 6 host keys against Wordfence scanning servers.'),
(38603, 1764266955.156531, 2, 'info', 'Done host key check.'),
(38604, 1764266955.157243, 2, 'info', 'Done examining URLs'),
(38607, 1764266955.190220, 2, 'info', 'Checking 1 host keys against Wordfence scanning servers.'),
(38608, 1764266955.807722, 2, 'info', 'Done host key check.'),
(38611, 1764266955.836167, 2, 'info', 'Starting password strength check on 2 users.'),
(38618, 1764266964.015917, 2, 'info', 'Examining URLs found in the options we scanned for dangerous websites'),
(38619, 1764266964.016398, 2, 'info', 'Done examining URLs'),
(38621, 1764266964.027787, 1, 'info', '-------------------'),
(38622, 1764266964.028192, 2, 'info', 'Wordfence used 24.87 MB of memory for scan. Server peak memory usage was: 36.87 MB'),
(38623, 1764266964.029707, 1, 'info', 'Scan Complete. Scanned 8899 files, 9 plugins, 1 themes, 9 posts, 1 comments and 905 URLs in 2 minutes 12 seconds.'),
(38626, 1764312895.697750, 1, 'info', 'Initiating quick scan'),
(38631, 1764312897.614962, 1, 'info', '-------------------'),
(38632, 1764312897.615693, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(38633, 1764312897.619276, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(38636, 1764394740.352070, 1, 'info', 'Initiating quick scan'),
(38641, 1764394742.269740, 1, 'info', '-------------------'),
(38642, 1764394742.270432, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(38643, 1764394742.273397, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(38646, 1764474287.423606, 1, 'info', 'Initiating quick scan'),
(38651, 1764474289.347028, 1, 'info', '-------------------'),
(38652, 1764474289.347681, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 50 MB'),
(38653, 1764474289.348738, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(38655, 1764517346.437971, 1, 'info', 'Scheduled Wordfence scan starting at Sunday 30th of November 2025 03:42:26 PM'),
(38657, 1764517347.175684, 1, 'info', 'Contacting Wordfence to initiate scan'),
(38664, 1764517353.982121, 2, 'info', 'Total disk space: 3.12 TB -- Free disk space: 779.08 GB'),
(38665, 1764517353.982379, 2, 'info', 'The disk has 797780.51 MB available'),
(38673, 1764517354.009539, 2, 'info', 'Getting plugin list from WordPress'),
(38674, 1764517354.011010, 2, 'info', 'Found 9 plugins'),
(38675, 1764517354.011155, 2, 'info', 'Getting theme list from WordPress'),
(38676, 1764517354.012369, 2, 'info', 'Found 1 theme'),
(38688, 1764517355.849311, 2, 'info', '500 files indexed'),
(38689, 1764517355.875838, 2, 'info', '1000 files indexed'),
(38690, 1764517355.900423, 2, 'info', '1500 files indexed'),
(38691, 1764517355.926871, 2, 'info', '2000 files indexed'),
(38692, 1764517355.963769, 2, 'info', '2500 files indexed'),
(38693, 1764517356.002082, 2, 'info', '3000 files indexed'),
(38694, 1764517356.034526, 2, 'info', '3500 files indexed'),
(38695, 1764517356.060487, 2, 'info', '4000 files indexed'),
(38696, 1764517356.092055, 2, 'info', '4500 files indexed'),
(38697, 1764517356.117734, 2, 'info', '5000 files indexed'),
(38698, 1764517356.142700, 2, 'info', '5500 files indexed'),
(38699, 1764517356.170132, 2, 'info', '6000 files indexed'),
(38700, 1764517356.208288, 2, 'info', '6500 files indexed'),
(38701, 1764517356.227530, 2, 'info', '7000 files indexed'),
(38702, 1764517356.247397, 2, 'info', '7500 files indexed'),
(38703, 1764517356.264747, 2, 'info', '8000 files indexed'),
(38704, 1764517356.284712, 2, 'info', '8500 files indexed'),
(38705, 1764517356.303643, 2, 'info', '8924 files indexed'),
(38706, 1764517356.331851, 2, 'info', 'Analyzed 100 files containing 863.36 KB of data so far'),
(38707, 1764517356.412017, 2, 'info', 'Analyzed 200 files containing 1.8 MB of data so far'),
(38708, 1764517356.477756, 2, 'info', 'Analyzed 300 files containing 3.34 MB of data so far'),
(38709, 1764517356.536425, 2, 'info', 'Analyzed 400 files containing 3.81 MB of data so far'),
(38710, 1764517356.627208, 2, 'info', 'Analyzed 500 files containing 4.22 MB of data so far'),
(38711, 1764517356.675785, 2, 'info', 'Analyzed 600 files containing 4.32 MB of data so far'),
(38712, 1764517357.159767, 2, 'info', 'Analyzed 700 files containing 6.92 MB of data so far'),
(38713, 1764517357.457898, 2, 'info', 'Analyzed 800 files containing 7.9 MB of data so far'),
(38714, 1764517357.880565, 2, 'info', 'Analyzed 900 files containing 9.32 MB of data so far'),
(38715, 1764517362.915708, 2, 'info', 'Analyzed 1000 files containing 29.08 MB of data so far'),
(38716, 1764517364.677219, 2, 'info', 'Analyzed 1100 files containing 36.06 MB of data so far'),
(38717, 1764517365.678310, 2, 'info', 'Analyzed 1200 files containing 39.76 MB of data so far'),
(38718, 1764517366.035399, 2, 'info', 'Analyzed 1300 files containing 40.93 MB of data so far'),
(38719, 1764517366.729346, 2, 'info', 'Analyzed 1400 files containing 43.42 MB of data so far'),
(38720, 1764517368.338557, 2, 'info', 'Analyzed 1500 files containing 49.41 MB of data so far'),
(38721, 1764517368.414361, 2, 'info', 'Analyzed 1600 files containing 50.12 MB of data so far'),
(38722, 1764517368.455854, 2, 'info', 'Analyzed 1700 files containing 50.54 MB of data so far'),
(38723, 1764517368.534609, 2, 'info', 'Analyzed 1800 files containing 51.13 MB of data so far'),
(38724, 1764517368.566921, 2, 'info', 'Analyzed 1900 files containing 52.16 MB of data so far'),
(38725, 1764517368.678888, 2, 'info', 'Analyzed 2000 files containing 52.54 MB of data so far'),
(38726, 1764517368.742497, 2, 'info', 'Analyzed 2100 files containing 52.88 MB of data so far'),
(38727, 1764517368.787796, 2, 'info', 'Analyzed 2200 files containing 53.29 MB of data so far'),
(38728, 1764517368.907473, 2, 'info', 'Analyzed 2300 files containing 53.69 MB of data so far'),
(38729, 1764517369.046367, 2, 'info', 'Analyzed 2400 files containing 53.98 MB of data so far'),
(38730, 1764517369.225841, 2, 'info', 'Analyzed 2500 files containing 54.22 MB of data so far'),
(38731, 1764517370.259245, 2, 'info', 'Analyzed 2600 files containing 58.38 MB of data so far'),
(38732, 1764517370.888692, 2, 'info', 'Analyzed 2700 files containing 60.75 MB of data so far'),
(38733, 1764517370.966881, 2, 'info', 'Analyzed 2800 files containing 61.17 MB of data so far'),
(38734, 1764517370.998586, 2, 'info', 'Analyzed 2900 files containing 61.55 MB of data so far'),
(38735, 1764517371.105175, 2, 'info', 'Analyzed 3000 files containing 62.23 MB of data so far'),
(38736, 1764517371.137552, 2, 'info', 'Analyzed 3100 files containing 62.88 MB of data so far'),
(38737, 1764517371.161756, 2, 'info', 'Analyzed 3200 files containing 63.31 MB of data so far'),
(38738, 1764517371.739118, 2, 'info', 'Analyzed 3300 files containing 65.59 MB of data so far'),
(38739, 1764517372.185674, 2, 'info', 'Analyzed 3400 files containing 67.16 MB of data so far'),
(38740, 1764517373.056437, 2, 'info', 'Analyzed 3500 files containing 70.44 MB of data so far'),
(38741, 1764517373.759027, 2, 'info', 'Analyzed 3600 files containing 73.54 MB of data so far'),
(38742, 1764517374.577366, 2, 'info', 'Analyzed 3700 files containing 77.52 MB of data so far'),
(38743, 1764517374.759003, 2, 'info', 'Analyzed 3800 files containing 78.88 MB of data so far'),
(38744, 1764517375.241806, 2, 'info', 'Analyzed 3900 files containing 81.17 MB of data so far'),
(38745, 1764517375.857687, 2, 'info', 'Analyzed 4000 files containing 83.26 MB of data so far'),
(38746, 1764517376.424015, 2, 'info', 'Analyzed 4100 files containing 85.44 MB of data so far'),
(38747, 1764517376.546775, 2, 'info', 'Analyzed 4200 files containing 85.6 MB of data so far'),
(38748, 1764517377.695835, 2, 'info', 'Analyzed 4300 files containing 89.98 MB of data so far'),
(38749, 1764517378.183690, 2, 'info', 'Analyzed 4400 files containing 91.87 MB of data so far'),
(38750, 1764517378.542623, 2, 'info', 'Analyzed 4500 files containing 92.91 MB of data so far'),
(38751, 1764517378.961839, 2, 'info', 'Analyzed 4600 files containing 94.5 MB of data so far'),
(38752, 1764517381.640389, 2, 'info', 'Analyzed 4700 files containing 105.63 MB of data so far'),
(38753, 1764517381.679809, 2, 'info', 'Analyzed 4800 files containing 108.01 MB of data so far'),
(38754, 1764517381.957587, 2, 'info', 'Analyzed 4900 files containing 108.94 MB of data so far'),
(38755, 1764517382.259347, 2, 'info', 'Analyzed 5000 files containing 110.22 MB of data so far'),
(38756, 1764517382.363015, 2, 'info', 'Analyzed 5100 files containing 110.59 MB of data so far'),
(38757, 1764517382.610873, 2, 'info', 'Analyzed 5200 files containing 111.68 MB of data so far'),
(38758, 1764517383.051772, 2, 'info', 'Analyzed 5300 files containing 113.57 MB of data so far'),
(38759, 1764517383.445782, 2, 'info', 'Analyzed 5400 files containing 115.13 MB of data so far'),
(38760, 1764517383.674185, 2, 'info', 'Analyzed 5500 files containing 115.64 MB of data so far'),
(38761, 1764517383.812279, 2, 'info', 'Analyzed 5600 files containing 115.98 MB of data so far'),
(38762, 1764517384.225764, 2, 'info', 'Analyzed 5700 files containing 117.54 MB of data so far'),
(38763, 1764517384.377199, 2, 'info', 'Analyzed 5800 files containing 117.89 MB of data so far'),
(38764, 1764517384.521761, 2, 'info', 'Analyzed 5900 files containing 118.16 MB of data so far'),
(38765, 1764517384.811578, 2, 'info', 'Analyzed 6000 files containing 118.93 MB of data so far'),
(38766, 1764517385.651077, 2, 'info', 'Analyzed 6100 files containing 123.67 MB of data so far'),
(38767, 1764517385.923350, 2, 'info', 'Analyzed 6200 files containing 127.15 MB of data so far'),
(38768, 1764517386.436939, 2, 'info', 'Analyzed 6300 files containing 128.98 MB of data so far'),
(38769, 1764517386.707096, 2, 'info', 'Analyzed 6400 files containing 129.96 MB of data so far'),
(38770, 1764517387.162327, 2, 'info', 'Analyzed 6500 files containing 132.48 MB of data so far'),
(38771, 1764517387.618160, 2, 'info', 'Analyzed 6600 files containing 134.28 MB of data so far'),
(38772, 1764517387.865430, 2, 'info', 'Analyzed 6700 files containing 135.02 MB of data so far'),
(38773, 1764517388.263308, 2, 'info', 'Analyzed 6800 files containing 136.6 MB of data so far'),
(38774, 1764517388.539702, 2, 'info', 'Analyzed 6900 files containing 137.55 MB of data so far'),
(38775, 1764517388.642059, 2, 'info', 'Analyzed 7000 files containing 138.05 MB of data so far'),
(38776, 1764517388.697752, 2, 'info', 'Analyzed 7100 files containing 138.16 MB of data so far'),
(38777, 1764517388.833732, 2, 'info', 'Analyzed 7200 files containing 138.43 MB of data so far'),
(38778, 1764517388.970414, 2, 'info', 'Analyzed 7300 files containing 138.78 MB of data so far'),
(38779, 1764517389.078366, 2, 'info', 'Analyzed 7400 files containing 138.91 MB of data so far'),
(38780, 1764517389.187767, 2, 'info', 'Analyzed 7500 files containing 139 MB of data so far'),
(38781, 1764517389.248392, 2, 'info', 'Analyzed 7600 files containing 139.23 MB of data so far'),
(38782, 1764517389.345527, 2, 'info', 'Analyzed 7700 files containing 140.07 MB of data so far'),
(38783, 1764517389.522521, 2, 'info', 'Analyzed 7800 files containing 142.4 MB of data so far'),
(38784, 1764517390.234329, 2, 'info', 'Analyzed 7900 files containing 145.35 MB of data so far'),
(38785, 1764517390.549167, 2, 'info', 'Analyzed 8000 files containing 146.29 MB of data so far'),
(38786, 1764517390.648763, 2, 'info', 'Analyzed 8100 files containing 148.26 MB of data so far'),
(38787, 1764517394.058269, 2, 'info', 'Analyzed 8200 files containing 161.18 MB of data so far'),
(38788, 1764517395.828523, 2, 'info', 'Analyzed 8300 files containing 168.59 MB of data so far'),
(38789, 1764517396.815555, 2, 'info', 'Analyzed 8400 files containing 172.31 MB of data so far'),
(38790, 1764517397.423443, 2, 'info', 'Analyzed 8500 files containing 174.5 MB of data so far'),
(38791, 1764517398.212489, 2, 'info', 'Analyzed 8600 files containing 177.38 MB of data so far'),
(38792, 1764517398.618662, 2, 'info', 'Analyzed 8700 files containing 180.48 MB of data so far'),
(38793, 1764517398.697030, 2, 'info', 'Analyzed 8800 files containing 181.75 MB of data so far'),
(38794, 1764517398.989517, 2, 'info', 'Analyzed 8900 files containing 183.44 MB of data so far'),
(38795, 1764517399.038707, 2, 'info', 'Analyzed 8923 files containing 183.75 MB of data.'),
(38803, 1764517401.227322, 2, 'info', 'Starting scan of file contents'),
(38804, 1764517402.312948, 2, 'info', 'Scanned contents of 18 additional files at 16.60 per second'),
(38805, 1764517403.955530, 2, 'info', 'Scanned contents of 26 additional files at 9.53 per second'),
(38806, 1764517404.955731, 2, 'info', 'Scanned contents of 46 additional files at 12.34 per second'),
(38807, 1764517406.020193, 2, 'info', 'Scanned contents of 53 additional files at 11.06 per second'),
(38808, 1764517407.105777, 2, 'info', 'Scanned contents of 65 additional files at 11.06 per second'),
(38809, 1764517408.234959, 2, 'info', 'Scanned contents of 73 additional files at 10.42 per second'),
(38810, 1764517410.197696, 2, 'info', 'Scanned contents of 94 additional files at 10.48 per second'),
(38811, 1764517411.346557, 2, 'info', 'Scanned contents of 112 additional files at 11.07 per second'),
(38812, 1764517413.476465, 2, 'info', 'Scanned contents of 113 additional files at 9.23 per second'),
(38813, 1764517414.779006, 2, 'info', 'Scanned contents of 126 additional files at 9.30 per second'),
(38814, 1764517415.813883, 2, 'info', 'Scanned contents of 158 additional files at 10.83 per second'),
(38815, 1764517416.850163, 2, 'info', 'Scanned contents of 176 additional files at 11.27 per second'),
(38816, 1764517417.937398, 2, 'info', 'Scanned contents of 185 additional files at 11.07 per second'),
(38817, 1764517419.286381, 2, 'info', 'Scanned contents of 201 additional files at 11.13 per second'),
(38818, 1764517420.346988, 2, 'info', 'Scanned contents of 218 additional files at 11.40 per second'),
(38819, 1764517421.378224, 2, 'info', 'Scanned contents of 228 additional files at 11.32 per second'),
(38820, 1764517423.003456, 2, 'info', 'Scanned contents of 241 additional files at 11.07 per second'),
(38821, 1764517424.135383, 2, 'info', 'Scanned contents of 253 additional files at 11.04 per second'),
(38822, 1764517425.183377, 2, 'info', 'Scanned contents of 270 additional files at 11.27 per second'),
(38823, 1764517426.421233, 2, 'info', 'Scanned contents of 291 additional files at 11.55 per second'),
(38824, 1764517427.998585, 2, 'info', 'Scanned contents of 308 additional files at 11.51 per second'),
(38825, 1764517429.061382, 2, 'info', 'Scanned contents of 321 additional files at 11.53 per second'),
(38826, 1764517430.070776, 2, 'info', 'Scanned contents of 343 additional files at 11.89 per second'),
(38827, 1764517431.129524, 2, 'info', 'Scanned contents of 355 additional files at 11.87 per second'),
(38828, 1764517432.135565, 2, 'info', 'Scanned contents of 362 additional files at 11.71 per second'),
(38829, 1764517433.183167, 2, 'info', 'Scanned contents of 382 additional files at 11.95 per second'),
(38830, 1764517434.210237, 2, 'info', 'Scanned contents of 404 additional files at 12.25 per second'),
(38831, 1764517435.229148, 2, 'info', 'Scanned contents of 422 additional files at 12.41 per second'),
(38832, 1764517436.266690, 2, 'info', 'Scanned contents of 443 additional files at 12.64 per second'),
(38833, 1764517437.299184, 2, 'info', 'Scanned contents of 459 additional files at 12.72 per second'),
(38834, 1764517442.357329, 2, 'info', 'Scanned contents of 475 additional files at 11.55 per second'),
(38835, 1764517443.530283, 2, 'info', 'Scanned contents of 496 additional files at 11.73 per second'),
(38836, 1764517444.558068, 2, 'info', 'Scanned contents of 522 additional files at 12.05 per second'),
(38837, 1764517445.743484, 2, 'info', 'Scanned contents of 541 additional files at 12.15 per second'),
(38838, 1764517446.780276, 2, 'info', 'Scanned contents of 566 additional files at 12.43 per second'),
(38839, 1764517447.797757, 2, 'info', 'Scanned contents of 575 additional files at 12.35 per second'),
(38840, 1764517449.540299, 2, 'info', 'Scanned contents of 600 additional files at 12.42 per second'),
(38841, 1764517450.841572, 2, 'info', 'Scanned contents of 621 additional files at 12.52 per second'),
(38842, 1764517451.844964, 2, 'info', 'Scanned contents of 633 additional files at 12.51 per second'),
(38843, 1764517452.924464, 2, 'info', 'Scanned contents of 640 additional files at 12.38 per second'),
(38844, 1764517453.935608, 2, 'info', 'Scanned contents of 671 additional files at 12.73 per second'),
(38845, 1764517454.943856, 2, 'info', 'Scanned contents of 683 additional files at 12.72 per second'),
(38846, 1764517456.202057, 2, 'info', 'Scanned contents of 684 additional files at 12.44 per second'),
(38847, 1764517457.230836, 2, 'info', 'Scanned contents of 692 additional files at 12.36 per second'),
(38848, 1764517458.363711, 2, 'info', 'Scanned contents of 708 additional files at 12.39 per second'),
(38849, 1764517461.628735, 2, 'info', 'Scanned contents of 726 additional files at 12.02 per second'),
(38850, 1764517462.669551, 2, 'info', 'Scanned contents of 753 additional files at 12.26 per second'),
(38851, 1764517463.694301, 2, 'info', 'Scanned contents of 775 additional files at 12.41 per second'),
(38852, 1764517465.011665, 2, 'info', 'Scanned contents of 786 additional files at 12.32 per second'),
(38853, 1764517466.160409, 2, 'info', 'Scanned contents of 806 additional files at 12.41 per second'),
(38854, 1764517467.168292, 2, 'info', 'Scanned contents of 821 additional files at 12.45 per second'),
(38855, 1764517468.245195, 2, 'info', 'Scanned contents of 837 additional files at 12.49 per second'),
(38856, 1764517469.277924, 2, 'info', 'Scanned contents of 861 additional files at 12.65 per second'),
(38857, 1764517470.345233, 2, 'info', 'Scanned contents of 876 additional files at 12.67 per second'),
(38858, 1764517470.405674, 2, 'info', 'Scanned contents of 877 additional files at 12.68 per second'),
(38859, 1764517470.405923, 2, 'info', 'Asking Wordfence to check URLs against malware list.'),
(38860, 1764517470.406459, 2, 'info', 'Checking 116 host keys against Wordfence scanning servers.'),
(38861, 1764517471.023884, 2, 'info', 'Done host key check.'),
(38862, 1764517471.099714, 2, 'info', 'Done file contents scan'),
(38868, 1764517471.173327, 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(38869, 1764517471.173646, 2, 'info', 'Checking 6 host keys against Wordfence scanning servers.'),
(38870, 1764517471.797167, 2, 'info', 'Done host key check.'),
(38871, 1764517471.797877, 2, 'info', 'Done examining URLs'),
(38874, 1764517471.832143, 2, 'info', 'Checking 1 host keys against Wordfence scanning servers.'),
(38875, 1764517472.459273, 2, 'info', 'Done host key check.'),
(38878, 1764517472.481632, 2, 'info', 'Starting password strength check on 2 users.'),
(38885, 1764517479.939911, 2, 'info', 'Examining URLs found in the options we scanned for dangerous websites'),
(38886, 1764517479.940331, 2, 'info', 'Done examining URLs'),
(38888, 1764517479.952904, 1, 'info', '-------------------'),
(38889, 1764517479.953343, 2, 'info', 'Wordfence used 26.87 MB of memory for scan. Server peak memory usage was: 38.87 MB'),
(38890, 1764517479.955561, 1, 'info', 'Scan Complete. Scanned 8923 files, 9 plugins, 1 themes, 9 posts, 1 comments and 1294 URLs in 2 minutes 12 seconds.'),
(38893, 1764561849.293714, 1, 'info', 'Initiating quick scan'),
(38898, 1764561856.267223, 1, 'info', '-------------------'),
(38899, 1764561856.268062, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),
(38900, 1764561856.270925, 1, 'info', 'Quick Scan Complete. Scanned in 7 seconds.'),
(38903, 1764660240.081120, 1, 'info', 'Initiating quick scan'),
(38908, 1764660242.031828, 1, 'info', '-------------------'),
(38909, 1764660242.032718, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(38910, 1764660242.034396, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(38913, 1764743741.623240, 1, 'info', 'Initiating quick scan'),
(38918, 1764743743.542724, 1, 'info', '-------------------'),
(38919, 1764743743.543503, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(38920, 1764743743.544960, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(38922, 1764775581.028064, 1, 'info', 'Scheduled Wordfence scan starting at Wednesday 3rd of December 2025 03:26:21 PM'),
(38924, 1764775581.747370, 1, 'info', 'Contacting Wordfence to initiate scan'),
(38931, 1764775588.508381, 2, 'info', 'Total disk space: 3.12 TB -- Free disk space: 807.79 GB'),
(38932, 1764775588.508721, 2, 'info', 'The disk has 827173.74 MB available'),
(38940, 1764775588.542991, 2, 'info', 'Getting plugin list from WordPress'),
(38941, 1764775588.544698, 2, 'info', 'Found 9 plugins'),
(38942, 1764775588.544904, 2, 'info', 'Getting theme list from WordPress'),
(38943, 1764775588.550656, 2, 'info', 'Found 1 theme'),
(38955, 1764775590.428158, 2, 'info', '500 files indexed'),
(38956, 1764775590.462125, 2, 'info', '1000 files indexed'),
(38957, 1764775590.485022, 2, 'info', '1500 files indexed'),
(38958, 1764775590.515316, 2, 'info', '2000 files indexed'),
(38959, 1764775590.552750, 2, 'info', '2500 files indexed'),
(38960, 1764775590.588297, 2, 'info', '3000 files indexed'),
(38961, 1764775590.620096, 2, 'info', '3500 files indexed'),
(38962, 1764775590.648231, 2, 'info', '4000 files indexed'),
(38963, 1764775590.679165, 2, 'info', '4500 files indexed'),
(38964, 1764775590.703484, 2, 'info', '5000 files indexed'),
(38965, 1764775590.726481, 2, 'info', '5500 files indexed'),
(38966, 1764775590.750390, 2, 'info', '6000 files indexed'),
(38967, 1764775590.789955, 2, 'info', '6500 files indexed'),
(38968, 1764775590.812798, 2, 'info', '7000 files indexed'),
(38969, 1764775590.835683, 2, 'info', '7500 files indexed'),
(38970, 1764775590.854248, 2, 'info', '8000 files indexed'),
(38971, 1764775590.882702, 2, 'info', '8500 files indexed'),
(38972, 1764775590.906949, 2, 'info', '9000 files indexed'),
(38973, 1764775590.908174, 2, 'info', '9023 files indexed'),
(38974, 1764775590.957025, 2, 'info', 'Analyzed 100 files containing 863.36 KB of data so far'),
(38975, 1764775591.069971, 2, 'info', 'Analyzed 200 files containing 1.8 MB of data so far'),
(38976, 1764775591.274884, 2, 'info', 'Analyzed 300 files containing 3.34 MB of data so far'),
(38977, 1764775591.367360, 2, 'info', 'Analyzed 400 files containing 3.81 MB of data so far'),
(38978, 1764775591.465234, 2, 'info', 'Analyzed 500 files containing 4.22 MB of data so far'),
(38979, 1764775591.614053, 2, 'info', 'Analyzed 600 files containing 4.32 MB of data so far'),
(38980, 1764775591.940892, 2, 'info', 'Analyzed 700 files containing 6.92 MB of data so far'),
(38981, 1764775592.242101, 2, 'info', 'Analyzed 800 files containing 7.9 MB of data so far'),
(38982, 1764775592.674274, 2, 'info', 'Analyzed 900 files containing 9.32 MB of data so far'),
(38983, 1764775597.714098, 2, 'info', 'Analyzed 1000 files containing 29.08 MB of data so far'),
(38984, 1764775599.479127, 2, 'info', 'Analyzed 1100 files containing 36.06 MB of data so far'),
(38985, 1764775600.481823, 2, 'info', 'Analyzed 1200 files containing 39.76 MB of data so far'),
(38986, 1764775600.838991, 2, 'info', 'Analyzed 1300 files containing 40.93 MB of data so far'),
(38987, 1764775601.537600, 2, 'info', 'Analyzed 1400 files containing 43.42 MB of data so far'),
(38988, 1764775603.159721, 2, 'info', 'Analyzed 1500 files containing 49.41 MB of data so far'),
(38989, 1764775603.271958, 2, 'info', 'Analyzed 1600 files containing 50.12 MB of data so far'),
(38990, 1764775603.348250, 2, 'info', 'Analyzed 1700 files containing 50.54 MB of data so far'),
(38991, 1764775603.468930, 2, 'info', 'Analyzed 1800 files containing 51.13 MB of data so far'),
(38992, 1764775603.659118, 2, 'info', 'Analyzed 1900 files containing 52.16 MB of data so far'),
(38993, 1764775603.842705, 2, 'info', 'Analyzed 2000 files containing 52.54 MB of data so far'),
(38994, 1764775603.922874, 2, 'info', 'Analyzed 2100 files containing 52.88 MB of data so far'),
(38995, 1764775604.035139, 2, 'info', 'Analyzed 2200 files containing 53.29 MB of data so far'),
(38996, 1764775604.150535, 2, 'info', 'Analyzed 2300 files containing 53.69 MB of data so far'),
(38997, 1764775604.311669, 2, 'info', 'Analyzed 2400 files containing 53.98 MB of data so far'),
(38998, 1764775604.469955, 2, 'info', 'Analyzed 2500 files containing 54.22 MB of data so far'),
(38999, 1764775605.534037, 2, 'info', 'Analyzed 2600 files containing 58.38 MB of data so far'),
(39000, 1764775606.195836, 2, 'info', 'Analyzed 2700 files containing 60.75 MB of data so far'),
(39001, 1764775606.318699, 2, 'info', 'Analyzed 2800 files containing 61.17 MB of data so far'),
(39002, 1764775606.495522, 2, 'info', 'Analyzed 2900 files containing 61.55 MB of data so far'),
(39003, 1764775606.703001, 2, 'info', 'Analyzed 3000 files containing 62.23 MB of data so far'),
(39004, 1764775606.818801, 2, 'info', 'Analyzed 3100 files containing 62.88 MB of data so far'),
(39005, 1764775606.932136, 2, 'info', 'Analyzed 3200 files containing 63.31 MB of data so far'),
(39006, 1764775607.514771, 2, 'info', 'Analyzed 3300 files containing 65.59 MB of data so far'),
(39007, 1764775607.994632, 2, 'info', 'Analyzed 3400 files containing 67.16 MB of data so far'),
(39008, 1764775608.891315, 2, 'info', 'Analyzed 3500 files containing 70.44 MB of data so far'),
(39009, 1764775609.618674, 2, 'info', 'Analyzed 3600 files containing 73.54 MB of data so far'),
(39010, 1764775610.467326, 2, 'info', 'Analyzed 3700 files containing 77.52 MB of data so far'),
(39011, 1764775610.660069, 2, 'info', 'Analyzed 3800 files containing 78.88 MB of data so far'),
(39012, 1764775611.161382, 2, 'info', 'Analyzed 3900 files containing 81.17 MB of data so far'),
(39013, 1764775611.828740, 2, 'info', 'Analyzed 4000 files containing 83.26 MB of data so far'),
(39014, 1764775612.438564, 2, 'info', 'Analyzed 4100 files containing 85.44 MB of data so far'),
(39015, 1764775612.580460, 2, 'info', 'Analyzed 4200 files containing 85.6 MB of data so far'),
(39016, 1764775613.749052, 2, 'info', 'Analyzed 4300 files containing 89.98 MB of data so far'),
(39017, 1764775614.252616, 2, 'info', 'Analyzed 4400 files containing 91.87 MB of data so far'),
(39018, 1764775614.640175, 2, 'info', 'Analyzed 4500 files containing 92.91 MB of data so far'),
(39019, 1764775615.064142, 2, 'info', 'Analyzed 4600 files containing 94.5 MB of data so far'),
(39020, 1764775617.885908, 2, 'info', 'Analyzed 4700 files containing 105.63 MB of data so far'),
(39021, 1764775617.933634, 2, 'info', 'Analyzed 4800 files containing 108.01 MB of data so far'),
(39022, 1764775618.222541, 2, 'info', 'Analyzed 4900 files containing 108.94 MB of data so far'),
(39023, 1764775618.551531, 2, 'info', 'Analyzed 5000 files containing 110.22 MB of data so far'),
(39024, 1764775618.665408, 2, 'info', 'Analyzed 5100 files containing 110.59 MB of data so far'),
(39025, 1764775618.924159, 2, 'info', 'Analyzed 5200 files containing 111.68 MB of data so far'),
(39026, 1764775619.377237, 2, 'info', 'Analyzed 5300 files containing 113.57 MB of data so far'),
(39027, 1764775619.779417, 2, 'info', 'Analyzed 5400 files containing 115.13 MB of data so far'),
(39028, 1764775620.024018, 2, 'info', 'Analyzed 5500 files containing 115.64 MB of data so far'),
(39029, 1764775620.187261, 2, 'info', 'Analyzed 5600 files containing 115.98 MB of data so far'),
(39030, 1764775620.594981, 2, 'info', 'Analyzed 5700 files containing 117.54 MB of data so far'),
(39031, 1764775620.754446, 2, 'info', 'Analyzed 5800 files containing 117.89 MB of data so far'),
(39032, 1764775620.910951, 2, 'info', 'Analyzed 5900 files containing 118.16 MB of data so far'),
(39033, 1764775621.200940, 2, 'info', 'Analyzed 6000 files containing 118.93 MB of data so far'),
(39034, 1764775622.051381, 2, 'info', 'Analyzed 6100 files containing 122.41 MB of data so far'),
(39035, 1764775622.504224, 2, 'info', 'Analyzed 6200 files containing 126.53 MB of data so far'),
(39036, 1764775622.913134, 2, 'info', 'Analyzed 6300 files containing 127.91 MB of data so far'),
(39037, 1764775623.168407, 2, 'info', 'Analyzed 6400 files containing 129.02 MB of data so far'),
(39038, 1764775623.702910, 2, 'info', 'Analyzed 6500 files containing 132.03 MB of data so far'),
(39039, 1764775623.973522, 2, 'info', 'Analyzed 6600 files containing 133.1 MB of data so far'),
(39040, 1764775624.341244, 2, 'info', 'Analyzed 6700 files containing 134.53 MB of data so far'),
(39041, 1764775624.514717, 2, 'info', 'Analyzed 6800 files containing 135.42 MB of data so far'),
(39042, 1764775624.739805, 2, 'info', 'Analyzed 6900 files containing 136.35 MB of data so far'),
(39043, 1764775624.847151, 2, 'info', 'Analyzed 7000 files containing 136.87 MB of data so far'),
(39044, 1764775624.900288, 2, 'info', 'Analyzed 7100 files containing 136.97 MB of data so far'),
(39045, 1764775624.936828, 2, 'info', 'Analyzed 7200 files containing 137.25 MB of data so far'),
(39046, 1764775625.038599, 2, 'info', 'Analyzed 7300 files containing 137.47 MB of data so far'),
(39047, 1764775625.117525, 2, 'info', 'Analyzed 7400 files containing 137.69 MB of data so far'),
(39048, 1764775625.244729, 2, 'info', 'Analyzed 7500 files containing 137.82 MB of data so far'),
(39049, 1764775625.320573, 2, 'info', 'Analyzed 7600 files containing 137.94 MB of data so far'),
(39050, 1764775625.372073, 2, 'info', 'Analyzed 7700 files containing 138.14 MB of data so far'),
(39051, 1764775625.524927, 2, 'info', 'Analyzed 7800 files containing 139.75 MB of data so far'),
(39052, 1764775625.670990, 2, 'info', 'Analyzed 7900 files containing 141.95 MB of data so far'),
(39053, 1764775626.506565, 2, 'info', 'Analyzed 8000 files containing 144.98 MB of data so far'),
(39054, 1764775626.705919, 2, 'info', 'Analyzed 8100 files containing 146.09 MB of data so far'),
(39055, 1764775626.764192, 2, 'info', 'Analyzed 8200 files containing 147.64 MB of data so far'),
(39056, 1764775630.383741, 2, 'info', 'Analyzed 8300 files containing 162.15 MB of data so far'),
(39057, 1764775632.466730, 2, 'info', 'Analyzed 8400 files containing 170.17 MB of data so far'),
(39058, 1764775632.948983, 2, 'info', 'Analyzed 8500 files containing 171.97 MB of data so far'),
(39059, 1764775633.547146, 2, 'info', 'Analyzed 8600 files containing 174.15 MB of data so far'),
(39060, 1764775634.322086, 2, 'info', 'Analyzed 8700 files containing 177.04 MB of data so far'),
(39061, 1764775634.734543, 2, 'info', 'Analyzed 8800 files containing 180.21 MB of data so far'),
(39062, 1764775634.807457, 2, 'info', 'Analyzed 8900 files containing 181.46 MB of data so far'),
(39063, 1764775635.090590, 2, 'info', 'Analyzed 9000 files containing 183.2 MB of data so far'),
(39064, 1764775635.117423, 2, 'info', 'Analyzed 9022 files containing 183.5 MB of data.'),
(39072, 1764775637.143228, 2, 'info', 'Starting scan of file contents'),
(39073, 1764775638.246709, 2, 'info', 'Scanned contents of 23 additional files at 20.86 per second'),
(39074, 1764775639.391060, 2, 'info', 'Scanned contents of 24 additional files at 10.68 per second'),
(39075, 1764775640.494726, 2, 'info', 'Scanned contents of 47 additional files at 14.03 per second'),
(39076, 1764775641.926057, 2, 'info', 'Scanned contents of 53 additional files at 11.08 per second'),
(39077, 1764775643.212936, 2, 'info', 'Scanned contents of 68 additional files at 11.21 per second'),
(39078, 1764775644.280632, 2, 'info', 'Scanned contents of 86 additional files at 12.05 per second'),
(39079, 1764775645.551230, 2, 'info', 'Scanned contents of 92 additional files at 10.94 per second'),
(39080, 1764775646.731179, 2, 'info', 'Scanned contents of 110 additional files at 11.47 per second'),
(39081, 1764775648.898073, 2, 'info', 'Scanned contents of 111 additional files at 9.44 per second'),
(39082, 1764775650.227431, 2, 'info', 'Scanned contents of 124 additional files at 9.48 per second'),
(39083, 1764775651.232565, 2, 'info', 'Scanned contents of 153 additional files at 10.86 per second'),
(39084, 1764775652.251516, 2, 'info', 'Scanned contents of 178 additional files at 11.78 per second'),
(39085, 1764775653.572688, 2, 'info', 'Scanned contents of 196 additional files at 11.93 per second'),
(39086, 1764775654.573181, 2, 'info', 'Scanned contents of 212 additional files at 12.16 per second'),
(39087, 1764775655.639224, 2, 'info', 'Scanned contents of 221 additional files at 11.95 per second'),
(39088, 1764775657.301653, 2, 'info', 'Scanned contents of 236 additional files at 11.71 per second'),
(39089, 1764775658.302908, 2, 'info', 'Scanned contents of 254 additional files at 12.00 per second'),
(39090, 1764775659.326721, 2, 'info', 'Scanned contents of 277 additional files at 12.49 per second'),
(39091, 1764775660.376285, 2, 'info', 'Scanned contents of 292 additional files at 12.57 per second'),
(39092, 1764775661.439119, 2, 'info', 'Scanned contents of 302 additional files at 12.43 per second'),
(39093, 1764775662.504511, 2, 'info', 'Scanned contents of 317 additional files at 12.50 per second'),
(39094, 1764775664.006688, 2, 'info', 'Scanned contents of 343 additional files at 12.77 per second'),
(39095, 1764775665.022806, 2, 'info', 'Scanned contents of 351 additional files at 12.59 per second'),
(39096, 1764775666.045115, 2, 'info', 'Scanned contents of 370 additional files at 12.80 per second'),
(39097, 1764775667.060638, 2, 'info', 'Scanned contents of 393 additional files at 13.14 per second'),
(39098, 1764775668.123887, 2, 'info', 'Scanned contents of 412 additional files at 13.30 per second'),
(39099, 1764775669.206625, 2, 'info', 'Scanned contents of 432 additional files at 13.47 per second'),
(39100, 1764775670.408344, 2, 'info', 'Scanned contents of 449 additional files at 13.50 per second'),
(39101, 1764775671.698083, 2, 'info', 'Scanned contents of 468 additional files at 13.54 per second'),
(39102, 1764775675.509934, 2, 'info', 'Scanned contents of 469 additional files at 12.22 per second'),
(39103, 1764775676.568838, 2, 'info', 'Scanned contents of 491 additional files at 12.45 per second'),
(39104, 1764775677.588882, 2, 'info', 'Scanned contents of 521 additional files at 12.88 per second'),
(39105, 1764775678.593799, 2, 'info', 'Scanned contents of 547 additional files at 13.20 per second'),
(39106, 1764775679.760380, 2, 'info', 'Scanned contents of 563 additional files at 13.21 per second'),
(39107, 1764775680.793356, 2, 'info', 'Scanned contents of 587 additional files at 13.45 per second'),
(39108, 1764775681.851345, 2, 'info', 'Scanned contents of 594 additional files at 13.29 per second'),
(39109, 1764775683.198836, 2, 'info', 'Scanned contents of 616 additional files at 13.38 per second'),
(39110, 1764775684.437268, 2, 'info', 'Scanned contents of 630 additional files at 13.32 per second'),
(39111, 1764775685.447754, 2, 'info', 'Scanned contents of 660 additional files at 13.66 per second'),
(39112, 1764775686.495876, 2, 'info', 'Scanned contents of 674 additional files at 13.66 per second'),
(39113, 1764775687.769966, 2, 'info', 'Scanned contents of 677 additional files at 13.37 per second'),
(39114, 1764775688.816459, 2, 'info', 'Scanned contents of 686 additional files at 13.28 per second'),
(39115, 1764775689.841712, 2, 'info', 'Scanned contents of 701 additional files at 13.30 per second'),
(39116, 1764775693.068575, 2, 'info', 'Scanned contents of 718 additional files at 12.84 per second'),
(39117, 1764775694.082987, 2, 'info', 'Scanned contents of 743 additional files at 13.05 per second'),
(39118, 1764775695.255241, 2, 'info', 'Scanned contents of 766 additional files at 13.18 per second'),
(39119, 1764775696.285232, 2, 'info', 'Scanned contents of 788 additional files at 13.32 per second'),
(39120, 1764775697.310060, 2, 'info', 'Scanned contents of 803 additional files at 13.35 per second'),
(39121, 1764775698.318880, 2, 'info', 'Scanned contents of 817 additional files at 13.36 per second'),
(39122, 1764775699.320977, 2, 'info', 'Scanned contents of 842 additional files at 13.54 per second'),
(39123, 1764775700.419278, 2, 'info', 'Scanned contents of 860 additional files at 13.59 per second'),
(39124, 1764775700.475376, 2, 'info', 'Scanned contents of 861 additional files at 13.60 per second'),
(39125, 1764775700.475601, 2, 'info', 'Asking Wordfence to check URLs against malware list.'),
(39126, 1764775700.476265, 2, 'info', 'Checking 115 host keys against Wordfence scanning servers.'),
(39127, 1764775701.104149, 2, 'info', 'Done host key check.'),
(39128, 1764775701.187561, 2, 'info', 'Done file contents scan'),
(39134, 1764775701.280756, 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(39135, 1764775701.281024, 2, 'info', 'Checking 6 host keys against Wordfence scanning servers.'),
(39136, 1764775701.917675, 2, 'info', 'Done host key check.'),
(39137, 1764775701.918386, 2, 'info', 'Done examining URLs'),
(39140, 1764775701.953448, 2, 'info', 'Checking 1 host keys against Wordfence scanning servers.'),
(39141, 1764775702.575682, 2, 'info', 'Done host key check.'),
(39144, 1764775702.603685, 2, 'info', 'Starting password strength check on 2 users.'),
(39151, 1764775710.068302, 2, 'info', 'Examining URLs found in the options we scanned for dangerous websites'),
(39152, 1764775710.068650, 2, 'info', 'Done examining URLs'),
(39154, 1764775710.080271, 1, 'info', '-------------------'),
(39155, 1764775710.080690, 2, 'info', 'Wordfence used 26.91 MB of memory for scan. Server peak memory usage was: 38.91 MB'),
(39156, 1764775710.082170, 1, 'info', 'Scan Complete. Scanned 9022 files, 9 plugins, 1 themes, 9 posts, 1 comments and 1005 URLs in 2 minutes 8 seconds.'),
(39159, 1764827956.132848, 1, 'info', 'Initiating quick scan'),
(39164, 1764827958.121591, 1, 'info', '-------------------'),
(39165, 1764827958.122292, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 82 MB'),
(39166, 1764827958.125954, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(39169, 1764912712.318436, 1, 'info', 'Initiating quick scan'),
(39174, 1764912714.320738, 1, 'info', '-------------------'),
(39175, 1764912714.321412, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 82 MB'),
(39176, 1764912714.324709, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(39179, 1764997943.621032, 1, 'info', 'Initiating quick scan'),
(39184, 1764997945.690853, 1, 'info', '-------------------'),
(39185, 1764997945.692029, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 18 MB'),
(39186, 1764997945.695795, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(39188, 1765048028.228648, 1, 'info', 'Scheduled Wordfence scan starting at Saturday 6th of December 2025 07:07:08 PM'),
(39190, 1765048029.259574, 1, 'info', 'Contacting Wordfence to initiate scan'),
(39197, 1765048038.412339, 2, 'info', 'Total disk space: 3.12 TB -- Free disk space: 768.21 GB'),
(39198, 1765048038.412598, 2, 'info', 'The disk has 786644.81 MB available'),
(39206, 1765048038.443975, 2, 'info', 'Getting plugin list from WordPress'),
(39207, 1765048038.445715, 2, 'info', 'Found 9 plugins'),
(39208, 1765048038.445920, 2, 'info', 'Getting theme list from WordPress'),
(39209, 1765048038.447032, 2, 'info', 'Found 1 theme'),
(39212, 1765048040.233025, 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(39213, 1765048040.236085, 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(39214, 1765048040.242096, 10, 'info', 'SUM_START:Fetching list of known core files from Wordfence'),
(39215, 1765048040.243010, 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),
(39216, 1765048040.247472, 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository'),
(39217, 1765048040.250016, 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(39218, 1765048040.250190, 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(39219, 1765048040.251708, 10, 'info', 'SUM_START:Scanning for known malware files'),
(39220, 1765048040.254974, 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(39221, 1765048040.297015, 2, 'info', '500 files indexed'),
(39222, 1765048040.332450, 2, 'info', '1000 files indexed'),
(39223, 1765048040.358116, 2, 'info', '1500 files indexed'),
(39224, 1765048040.384025, 2, 'info', '2000 files indexed'),
(39225, 1765048040.418032, 2, 'info', '2500 files indexed'),
(39226, 1765048040.455539, 2, 'info', '3000 files indexed'),
(39227, 1765048040.480656, 2, 'info', '3500 files indexed'),
(39228, 1765048040.502861, 2, 'info', '4000 files indexed'),
(39229, 1765048040.529708, 2, 'info', '4500 files indexed'),
(39230, 1765048040.552626, 2, 'info', '5000 files indexed'),
(39231, 1765048040.574364, 2, 'info', '5500 files indexed'),
(39232, 1765048040.603756, 2, 'info', '6000 files indexed'),
(39233, 1765048040.644653, 2, 'info', '6500 files indexed'),
(39234, 1765048040.664122, 2, 'info', '7000 files indexed'),
(39235, 1765048040.684297, 2, 'info', '7500 files indexed'),
(39236, 1765048040.701024, 2, 'info', '8000 files indexed'),
(39237, 1765048040.718834, 2, 'info', '8500 files indexed'),
(39238, 1765048040.742809, 2, 'info', '9000 files indexed'),
(39239, 1765048040.745013, 2, 'info', '9041 files indexed'),
(39240, 1765048040.779559, 2, 'info', 'Analyzed 100 files containing 863.36 KB of data so far'),
(39241, 1765048041.182683, 2, 'info', 'Analyzed 200 files containing 1.8 MB of data so far'),
(39242, 1765048041.471868, 2, 'info', 'Analyzed 300 files containing 3.34 MB of data so far'),
(39243, 1765048041.556583, 2, 'info', 'Analyzed 400 files containing 3.81 MB of data so far'),
(39244, 1765048041.652213, 2, 'info', 'Analyzed 500 files containing 4.22 MB of data so far'),
(39245, 1765048041.703637, 2, 'info', 'Analyzed 600 files containing 4.32 MB of data so far'),
(39246, 1765048041.828968, 2, 'info', 'Analyzed 700 files containing 6.92 MB of data so far'),
(39247, 1765048042.221334, 2, 'info', 'Analyzed 800 files containing 7.9 MB of data so far'),
(39248, 1765048042.551353, 2, 'info', 'Analyzed 900 files containing 9.32 MB of data so far'),
(39249, 1765048047.593452, 2, 'info', 'Analyzed 1000 files containing 29.08 MB of data so far'),
(39250, 1765048049.438496, 2, 'info', 'Analyzed 1100 files containing 36.06 MB of data so far'),
(39251, 1765048050.367394, 2, 'info', 'Analyzed 1200 files containing 39.76 MB of data so far'),
(39252, 1765048050.706661, 2, 'info', 'Analyzed 1300 files containing 40.93 MB of data so far'),
(39253, 1765048051.396894, 2, 'info', 'Analyzed 1400 files containing 43.42 MB of data so far'),
(39254, 1765048053.060538, 2, 'info', 'Analyzed 1500 files containing 49.41 MB of data so far'),
(39255, 1765048053.103334, 2, 'info', 'Analyzed 1600 files containing 50.12 MB of data so far'),
(39256, 1765048053.145599, 2, 'info', 'Analyzed 1700 files containing 50.54 MB of data so far'),
(39257, 1765048053.213129, 2, 'info', 'Analyzed 1800 files containing 51.13 MB of data so far'),
(39258, 1765048053.261016, 2, 'info', 'Analyzed 1900 files containing 52.16 MB of data so far'),
(39259, 1765048053.380268, 2, 'info', 'Analyzed 2000 files containing 52.54 MB of data so far'),
(39260, 1765048053.414795, 2, 'info', 'Analyzed 2100 files containing 52.88 MB of data so far'),
(39261, 1765048053.487464, 2, 'info', 'Analyzed 2200 files containing 53.29 MB of data so far'),
(39262, 1765048053.617656, 2, 'info', 'Analyzed 2300 files containing 53.69 MB of data so far'),
(39263, 1765048053.760201, 2, 'info', 'Analyzed 2400 files containing 53.98 MB of data so far'),
(39264, 1765048053.921042, 2, 'info', 'Analyzed 2500 files containing 54.22 MB of data so far'),
(39265, 1765048054.974192, 2, 'info', 'Analyzed 2600 files containing 58.38 MB of data so far'),
(39266, 1765048055.600319, 2, 'info', 'Analyzed 2700 files containing 60.75 MB of data so far'),
(39267, 1765048055.702672, 2, 'info', 'Analyzed 2800 files containing 61.17 MB of data so far'),
(39268, 1765048055.747188, 2, 'info', 'Analyzed 2900 files containing 61.55 MB of data so far'),
(39269, 1765048055.835069, 2, 'info', 'Analyzed 3000 files containing 62.23 MB of data so far'),
(39270, 1765048056.415557, 2, 'info', 'Analyzed 3100 files containing 62.88 MB of data so far'),
(39271, 1765048056.435847, 2, 'info', 'Analyzed 3200 files containing 63.31 MB of data so far'),
(39272, 1765048056.868018, 2, 'info', 'Analyzed 3300 files containing 65.59 MB of data so far'),
(39273, 1765048057.219798, 2, 'info', 'Analyzed 3400 files containing 67.16 MB of data so far'),
(39274, 1765048057.801729, 2, 'info', 'Analyzed 3500 files containing 70.44 MB of data so far'),
(39275, 1765048058.526105, 2, 'info', 'Analyzed 3600 files containing 73.54 MB of data so far'),
(39276, 1765048059.486378, 2, 'info', 'Analyzed 3700 files containing 77.52 MB of data so far'),
(39277, 1765048059.808500, 2, 'info', 'Analyzed 3800 files containing 78.88 MB of data so far'),
(39278, 1765048060.169618, 2, 'info', 'Analyzed 3900 files containing 81.17 MB of data so far'),
(39279, 1765048060.976840, 2, 'info', 'Analyzed 4000 files containing 83.26 MB of data so far'),
(39280, 1765048061.673446, 2, 'info', 'Analyzed 4100 files containing 85.44 MB of data so far'),
(39281, 1765048061.795312, 2, 'info', 'Analyzed 4200 files containing 85.6 MB of data so far'),
(39282, 1765048062.945230, 2, 'info', 'Analyzed 4300 files containing 89.98 MB of data so far'),
(39283, 1765048063.433077, 2, 'info', 'Analyzed 4400 files containing 91.87 MB of data so far'),
(39284, 1765048063.856796, 2, 'info', 'Analyzed 4500 files containing 92.91 MB of data so far'),
(39285, 1765048064.215459, 2, 'info', 'Analyzed 4600 files containing 94.5 MB of data so far'),
(39286, 1765048067.124682, 2, 'info', 'Analyzed 4700 files containing 105.53 MB of data so far'),
(39287, 1765048067.164870, 2, 'info', 'Analyzed 4800 files containing 107.91 MB of data so far'),
(39288, 1765048067.310555, 2, 'info', 'Analyzed 4900 files containing 108.84 MB of data so far'),
(39289, 1765048067.631829, 2, 'info', 'Analyzed 5000 files containing 110.12 MB of data so far'),
(39290, 1765048067.784760, 2, 'info', 'Analyzed 5100 files containing 110.49 MB of data so far'),
(39291, 1765048068.018119, 2, 'info', 'Analyzed 5200 files containing 111.59 MB of data so far'),
(39292, 1765048068.424939, 2, 'info', 'Analyzed 5300 files containing 113.48 MB of data so far'),
(39293, 1765048068.844097, 2, 'info', 'Analyzed 5400 files containing 115.03 MB of data so far'),
(39294, 1765048069.096737, 2, 'info', 'Analyzed 5500 files containing 115.54 MB of data so far'),
(39295, 1765048069.401159, 2, 'info', 'Analyzed 5600 files containing 115.88 MB of data so far'),
(39296, 1765048069.796762, 2, 'info', 'Analyzed 5700 files containing 117.44 MB of data so far'),
(39297, 1765048069.899845, 2, 'info', 'Analyzed 5800 files containing 117.79 MB of data so far'),
(39298, 1765048069.940200, 2, 'info', 'Analyzed 5900 files containing 118.07 MB of data so far'),
(39299, 1765048070.182253, 2, 'info', 'Analyzed 6000 files containing 118.84 MB of data so far'),
(39300, 1765048071.262712, 2, 'info', 'Analyzed 6100 files containing 123.54 MB of data so far'),
(39301, 1765048071.854794, 2, 'info', 'Analyzed 6200 files containing 127.06 MB of data so far'),
(39302, 1765048072.452547, 2, 'info', 'Analyzed 6300 files containing 128.91 MB of data so far'),
(39303, 1765048072.639388, 2, 'info', 'Analyzed 6400 files containing 129.85 MB of data so far'),
(39304, 1765048072.770430, 2, 'info', 'Analyzed 6500 files containing 132.36 MB of data so far'),
(39305, 1765048073.225034, 2, 'info', 'Analyzed 6600 files containing 134.23 MB of data so far'),
(39306, 1765048073.493400, 2, 'info', 'Analyzed 6700 files containing 134.93 MB of data so far'),
(39307, 1765048073.917126, 2, 'info', 'Analyzed 6800 files containing 136.54 MB of data so far'),
(39308, 1765048074.144377, 2, 'info', 'Analyzed 6900 files containing 137.38 MB of data so far'),
(39309, 1765048074.306057, 2, 'info', 'Analyzed 7000 files containing 137.83 MB of data so far'),
(39310, 1765048074.432659, 2, 'info', 'Analyzed 7100 files containing 138.13 MB of data so far'),
(39311, 1765048074.513899, 2, 'info', 'Analyzed 7200 files containing 138.35 MB of data so far'),
(39312, 1765048074.580254, 2, 'info', 'Analyzed 7300 files containing 138.58 MB of data so far'),
(39313, 1765048074.650350, 2, 'info', 'Analyzed 7400 files containing 138.86 MB of data so far'),
(39314, 1765048074.745608, 2, 'info', 'Analyzed 7500 files containing 138.99 MB of data so far'),
(39315, 1765048074.806376, 2, 'info', 'Analyzed 7600 files containing 139.11 MB of data so far'),
(39316, 1765048074.923013, 2, 'info', 'Analyzed 7700 files containing 139.32 MB of data so far'),
(39317, 1765048074.994914, 2, 'info', 'Analyzed 7800 files containing 140.37 MB of data so far'),
(39318, 1765048075.251072, 2, 'info', 'Analyzed 7900 files containing 142.94 MB of data so far'),
(39319, 1765048076.574592, 2, 'info', 'Analyzed 8000 files containing 145.86 MB of data so far'),
(39320, 1765048076.634942, 2, 'info', 'Analyzed 8100 files containing 146.8 MB of data so far'),
(39321, 1765048076.769618, 2, 'info', 'Analyzed 8200 files containing 148.8 MB of data so far'),
(39322, 1765048079.539309, 2, 'info', 'Analyzed 8300 files containing 161.12 MB of data so far'),
(39323, 1765048081.643943, 2, 'info', 'Analyzed 8400 files containing 169.31 MB of data so far'),
(39324, 1765048082.658082, 2, 'info', 'Analyzed 8500 files containing 173.04 MB of data so far'),
(39325, 1765048083.190324, 2, 'info', 'Analyzed 8600 files containing 175.18 MB of data so far'),
(39326, 1765048083.714544, 2, 'info', 'Analyzed 8700 files containing 177.05 MB of data so far'),
(39327, 1765048084.392608, 2, 'info', 'Analyzed 8800 files containing 181.08 MB of data so far'),
(39328, 1765048084.450615, 2, 'info', 'Analyzed 8900 files containing 182.46 MB of data so far'),
(39329, 1765048084.824920, 2, 'info', 'Analyzed 9000 files containing 183.97 MB of data so far'),
(39330, 1765048084.851373, 2, 'info', 'Analyzed 9040 files containing 184.69 MB of data.'),
(39331, 1765048084.851596, 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository'),
(39332, 1765048084.856658, 10, 'info', 'SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),
(39333, 1765048084.860527, 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(39334, 1765048084.880930, 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs'),
(39335, 1765048084.913106, 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(39336, 1765048084.920115, 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(39337, 1765048084.921880, 10, 'info', 'SUM_START:Scanning file contents for URLs on a domain blocklist'),
(39338, 1765048086.890659, 2, 'info', 'Starting scan of file contents'),
(39339, 1765048087.944076, 2, 'info', 'Scanned contents of 18 additional files at 17.10 per second'),
(39340, 1765048089.401223, 2, 'info', 'Scanned contents of 25 additional files at 9.96 per second'),
(39341, 1765048090.424911, 2, 'info', 'Scanned contents of 47 additional files at 13.30 per second'),
(39342, 1765048091.467205, 2, 'info', 'Scanned contents of 53 additional files at 11.58 per second'),
(39343, 1765048092.519933, 2, 'info', 'Scanned contents of 64 additional files at 11.37 per second'),
(39344, 1765048093.624871, 2, 'info', 'Scanned contents of 72 additional files at 10.69 per second'),
(39345, 1765048095.544797, 2, 'info', 'Scanned contents of 93 additional files at 10.75 per second'),
(39346, 1765048096.715403, 2, 'info', 'Scanned contents of 111 additional files at 11.30 per second'),
(39347, 1765048098.844429, 2, 'info', 'Scanned contents of 112 additional files at 9.37 per second'),
(39348, 1765048100.134781, 2, 'info', 'Scanned contents of 125 additional files at 9.44 per second'),
(39349, 1765048101.173971, 2, 'info', 'Scanned contents of 159 additional files at 11.13 per second'),
(39350, 1765048102.187212, 2, 'info', 'Scanned contents of 175 additional files at 11.44 per second'),
(39351, 1765048103.291417, 2, 'info', 'Scanned contents of 184 additional files at 11.22 per second'),
(39352, 1765048104.689342, 2, 'info', 'Scanned contents of 200 additional files at 11.24 per second'),
(39353, 1765048105.691547, 2, 'info', 'Scanned contents of 215 additional files at 11.44 per second'),
(39354, 1765048106.764622, 2, 'info', 'Scanned contents of 225 additional files at 11.32 per second'),
(39355, 1765048108.420493, 2, 'info', 'Scanned contents of 240 additional files at 11.15 per second'),
(39356, 1765048109.534724, 2, 'info', 'Scanned contents of 252 additional files at 11.13 per second'),
(39357, 1765048110.538744, 2, 'info', 'Scanned contents of 269 additional files at 11.38 per second'),
(39358, 1765048111.703993, 2, 'info', 'Scanned contents of 290 additional files at 11.69 per second'),
(39359, 1765048113.316691, 2, 'info', 'Scanned contents of 308 additional files at 11.66 per second'),
(39360, 1765048114.384706, 2, 'info', 'Scanned contents of 323 additional files at 11.75 per second'),
(39361, 1765048115.850214, 2, 'info', 'Scanned contents of 349 additional files at 12.05 per second'),
(39362, 1765048116.850757, 2, 'info', 'Scanned contents of 357 additional files at 11.92 per second'),
(39363, 1765048117.885330, 2, 'info', 'Scanned contents of 378 additional files at 12.20 per second'),
(39364, 1765048118.977377, 2, 'info', 'Scanned contents of 397 additional files at 12.37 per second'),
(39365, 1765048119.994540, 2, 'info', 'Scanned contents of 416 additional files at 12.57 per second'),
(39366, 1765048121.027565, 2, 'info', 'Scanned contents of 438 additional files at 12.83 per second'),
(39367, 1765048123.147856, 2, 'info', 'Scanned contents of 456 additional files at 12.58 per second'),
(39368, 1765048124.372856, 2, 'info', 'Scanned contents of 475 additional files at 12.67 per second'),
(39369, 1765048127.627898, 2, 'info', 'Scanned contents of 476 additional files at 11.68 per second'),
(39370, 1765048128.801439, 2, 'info', 'Scanned contents of 498 additional files at 11.88 per second'),
(39371, 1765048129.820790, 2, 'info', 'Scanned contents of 523 additional files at 12.18 per second'),
(39372, 1765048131.019038, 2, 'info', 'Scanned contents of 542 additional files at 12.28 per second'),
(39373, 1765048132.024297, 2, 'info', 'Scanned contents of 564 additional files at 12.50 per second'),
(39374, 1765048133.149253, 2, 'info', 'Scanned contents of 572 additional files at 12.37 per second'),
(39375, 1765048134.178861, 2, 'info', 'Scanned contents of 598 additional files at 12.65 per second'),
(39376, 1765048135.221076, 2, 'info', 'Scanned contents of 602 additional files at 12.46 per second'),
(39377, 1765048136.407646, 2, 'info', 'Scanned contents of 622 additional files at 12.56 per second'),
(39378, 1765048137.673297, 2, 'info', 'Scanned contents of 635 additional files at 12.50 per second'),
(39379, 1765048138.677131, 2, 'info', 'Scanned contents of 649 additional files at 12.53 per second'),
(39380, 1765048140.334572, 2, 'info', 'Scanned contents of 677 additional files at 12.67 per second'),
(39381, 1765048141.830296, 2, 'info', 'Scanned contents of 686 additional files at 12.49 per second'),
(39382, 1765048142.932159, 2, 'info', 'Scanned contents of 694 additional files at 12.38 per second'),
(39383, 1765048144.110683, 2, 'info', 'Scanned contents of 710 additional files at 12.41 per second'),
(39384, 1765048147.449792, 2, 'info', 'Scanned contents of 728 additional files at 12.02 per second'),
(39385, 1765048148.531208, 2, 'info', 'Scanned contents of 752 additional files at 12.20 per second'),
(39386, 1765048149.538370, 2, 'info', 'Scanned contents of 775 additional files at 12.37 per second'),
(39387, 1765048151.184491, 2, 'info', 'Scanned contents of 788 additional files at 12.26 per second'),
(39388, 1765048152.407510, 2, 'info', 'Scanned contents of 808 additional files at 12.33 per second'),
(39389, 1765048153.416673, 2, 'info', 'Scanned contents of 820 additional files at 12.33 per second'),
(39390, 1765048154.419380, 2, 'info', 'Scanned contents of 832 additional files at 12.32 per second'),
(39391, 1765048155.455061, 2, 'info', 'Scanned contents of 856 additional files at 12.48 per second'),
(39392, 1765048156.469174, 2, 'info', 'Scanned contents of 875 additional files at 12.58 per second'),
(39393, 1765048156.814136, 2, 'info', 'Scanned contents of 878 additional files at 12.56 per second'),
(39394, 1765048156.814318, 2, 'info', 'Asking Wordfence to check URLs against malware list.'),
(39395, 1765048156.814760, 2, 'info', 'Checking 114 host keys against Wordfence scanning servers.'),
(39396, 1765048157.431581, 2, 'info', 'Done host key check.'),
(39397, 1765048157.505179, 2, 'info', 'Done file contents scan'),
(39398, 1765048157.507737, 10, 'info', 'SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),
(39399, 1765048157.517485, 10, 'info', 'SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),
(39400, 1765048157.525132, 10, 'info', 'SUM_START:Scanning for publicly accessible quarantined files'),
(39401, 1765048157.527744, 10, 'info', 'SUM_ENDOK:Scanning for publicly accessible quarantined files'),
(39402, 1765048157.533024, 10, 'info', 'SUM_START:Scanning posts for URLs on a domain blocklist'),
(39403, 1765048157.589995, 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(39404, 1765048157.590453, 2, 'info', 'Checking 6 host keys against Wordfence scanning servers.'),
(39405, 1765048158.216873, 2, 'info', 'Done host key check.'),
(39406, 1765048158.217570, 2, 'info', 'Done examining URLs');
INSERT INTO `wpiq_wfstatus` VALUES
(39407, 1765048158.228842, 10, 'info', 'SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),
(39408, 1765048158.237660, 10, 'info', 'SUM_START:Scanning comments for URLs on a domain blocklist'),
(39409, 1765048158.255152, 2, 'info', 'Checking 1 host keys against Wordfence scanning servers.'),
(39410, 1765048158.877139, 2, 'info', 'Done host key check.'),
(39411, 1765048158.887856, 10, 'info', 'SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),
(39412, 1765048158.900969, 10, 'info', 'SUM_START:Scanning for weak passwords'),
(39413, 1765048158.906201, 2, 'info', 'Starting password strength check on 2 users.'),
(39414, 1765048159.225215, 10, 'info', 'SUM_ENDOK:Scanning for weak passwords'),
(39415, 1765048159.236595, 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(39416, 1765048166.466471, 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(39417, 1765048166.479412, 10, 'info', 'SUM_START:Scanning for admin users not created through WordPress'),
(39418, 1765048167.104283, 10, 'info', 'SUM_ENDBAD:Scanning for admin users not created through WordPress'),
(39419, 1765048167.111342, 10, 'info', 'SUM_START:Scanning for suspicious site options'),
(39420, 1765048167.120125, 2, 'info', 'Examining URLs found in the options we scanned for dangerous websites'),
(39421, 1765048167.120371, 2, 'info', 'Done examining URLs'),
(39422, 1765048167.126194, 10, 'info', 'SUM_ENDOK:Scanning for suspicious site options'),
(39423, 1765048167.130265, 1, 'info', '-------------------'),
(39424, 1765048167.130563, 2, 'info', 'Wordfence used 48.91 MB of memory for scan. Server peak memory usage was: 60.91 MB'),
(39425, 1765048167.131509, 1, 'info', 'Scan Complete. Scanned 9040 files, 9 plugins, 1 themes, 9 posts, 1 comments and 1161 URLs in 2 minutes 17 seconds.'),
(39426, 1765048167.131658, 10, 'info', 'SUM_FINAL:Scan complete. You have 6 new issues to fix. See below.'),
(39427, 1765092368.266682, 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(39428, 1765092368.270182, 1, 'info', 'Initiating quick scan'),
(39429, 1765092368.272685, 10, 'info', 'SUM_START:Checking Web Application Firewall status'),
(39430, 1765092368.272881, 10, 'info', 'SUM_ENDOK:Checking Web Application Firewall status'),
(39431, 1765092368.276058, 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(39432, 1765092370.350510, 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(39433, 1765092370.353603, 1, 'info', '-------------------'),
(39434, 1765092370.354270, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(39435, 1765092370.355612, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(39436, 1765092370.355845, 10, 'info', 'SUM_FINAL:Scan complete. You have 5 new issues to fix. See below.'),
(39437, 1765172435.723992, 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(39438, 1765172435.730774, 1, 'info', 'Initiating quick scan'),
(39439, 1765172435.734034, 10, 'info', 'SUM_START:Checking Web Application Firewall status'),
(39440, 1765172435.734361, 10, 'info', 'SUM_ENDOK:Checking Web Application Firewall status'),
(39441, 1765172435.739716, 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(39442, 1765172437.720041, 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(39443, 1765172437.724630, 1, 'info', '-------------------'),
(39444, 1765172437.725439, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(39445, 1765172437.728946, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(39446, 1765172437.729237, 10, 'info', 'SUM_FINAL:Scan complete. You have 5 new issues to fix. See below.'),
(39447, 1765252939.521750, 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(39448, 1765252939.526857, 1, 'info', 'Initiating quick scan'),
(39449, 1765252939.529045, 10, 'info', 'SUM_START:Checking Web Application Firewall status'),
(39450, 1765252939.529213, 10, 'info', 'SUM_ENDOK:Checking Web Application Firewall status'),
(39451, 1765252939.532384, 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(39452, 1765252942.345565, 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(39453, 1765252942.349396, 1, 'info', '-------------------'),
(39454, 1765252942.350455, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(39455, 1765252942.353755, 1, 'info', 'Quick Scan Complete. Scanned in 3 seconds.'),
(39456, 1765252942.354035, 10, 'info', 'SUM_FINAL:Scan complete. You have 5 new issues to fix. See below.'),
(39457, 1765293535.000396, 1, 'info', 'Scheduled Wordfence scan starting at Tuesday 9th of December 2025 03:18:55 PM'),
(39458, 1765293535.984644, 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(39459, 1765293535.989213, 1, 'info', 'Contacting Wordfence to initiate scan'),
(39460, 1765293537.809870, 10, 'info', 'SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),
(39461, 1765293539.812301, 10, 'info', 'SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),
(39462, 1765293541.813854, 10, 'info', 'SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),
(39463, 1765293543.821244, 10, 'info', 'SUM_START:Checking for the most secure way to get IPs'),
(39464, 1765293543.826725, 10, 'info', 'SUM_ENDOK:Checking for the most secure way to get IPs'),
(39465, 1765293543.834863, 10, 'info', 'SUM_START:Scanning to check available disk space'),
(39466, 1765293543.837122, 2, 'info', 'Total disk space: 3.12 TB -- Free disk space: 763.62 GB'),
(39467, 1765293543.837349, 2, 'info', 'The disk has 781945.61 MB available'),
(39468, 1765293543.837542, 10, 'info', 'SUM_ENDOK:Scanning to check available disk space'),
(39469, 1765293543.842868, 10, 'info', 'SUM_START:Checking Web Application Firewall status'),
(39470, 1765293543.844758, 10, 'info', 'SUM_ENDOK:Checking Web Application Firewall status'),
(39471, 1765293543.849460, 10, 'info', 'SUM_START:Checking for future GeoIP support'),
(39472, 1765293543.851223, 10, 'info', 'SUM_ENDOK:Checking for future GeoIP support'),
(39473, 1765293543.855909, 10, 'info', 'SUM_START:Checking for paths skipped due to scan settings'),
(39474, 1765293543.860565, 10, 'info', 'SUM_ENDOK:Checking for paths skipped due to scan settings'),
(39475, 1765293543.866773, 2, 'info', 'Getting plugin list from WordPress'),
(39476, 1765293543.870321, 2, 'info', 'Found 9 plugins'),
(39477, 1765293543.870602, 2, 'info', 'Getting theme list from WordPress'),
(39478, 1765293543.872558, 2, 'info', 'Found 1 theme'),
(39479, 1765293543.899943, 10, 'info', 'SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),
(39480, 1765293545.656870, 10, 'info', 'SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),
(39481, 1765293545.665792, 10, 'info', 'SUM_START:Fetching list of known malware files from Wordfence'),
(39482, 1765293545.668301, 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),
(39483, 1765293545.672453, 10, 'info', 'SUM_START:Fetching list of known core files from Wordfence'),
(39484, 1765293545.673422, 10, 'info', 'SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),
(39485, 1765293545.677060, 10, 'info', 'SUM_START:Comparing core WordPress files against originals in repository'),
(39486, 1765293545.684008, 10, 'info', 'SUM_DISABLED:Skipping theme scan'),
(39487, 1765293545.684431, 10, 'info', 'SUM_DISABLED:Skipping plugin scan'),
(39488, 1765293545.688615, 10, 'info', 'SUM_START:Scanning for known malware files'),
(39489, 1765293545.695299, 10, 'info', 'SUM_START:Scanning for unknown files in wp-admin and wp-includes'),
(39490, 1765293545.749144, 2, 'info', '500 files indexed'),
(39491, 1765293545.771705, 2, 'info', '1000 files indexed'),
(39492, 1765293545.797104, 2, 'info', '1500 files indexed'),
(39493, 1765293545.836228, 2, 'info', '2000 files indexed'),
(39494, 1765293545.879280, 2, 'info', '2500 files indexed'),
(39495, 1765293545.928203, 2, 'info', '3000 files indexed'),
(39496, 1765293545.969163, 2, 'info', '3500 files indexed'),
(39497, 1765293545.998779, 2, 'info', '4000 files indexed'),
(39498, 1765293546.036347, 2, 'info', '4500 files indexed'),
(39499, 1765293546.069080, 2, 'info', '5000 files indexed'),
(39500, 1765293546.092723, 2, 'info', '5500 files indexed'),
(39501, 1765293546.122263, 2, 'info', '6000 files indexed'),
(39502, 1765293546.158177, 2, 'info', '6500 files indexed'),
(39503, 1765293546.177604, 2, 'info', '7000 files indexed'),
(39504, 1765293546.197923, 2, 'info', '7500 files indexed'),
(39505, 1765293546.216423, 2, 'info', '8000 files indexed'),
(39506, 1765293546.233839, 2, 'info', '8500 files indexed'),
(39507, 1765293546.256646, 2, 'info', '9000 files indexed'),
(39508, 1765293546.258254, 2, 'info', '9034 files indexed'),
(39509, 1765293546.297681, 2, 'info', 'Analyzed 100 files containing 863.36 KB of data so far'),
(39510, 1765293546.371989, 2, 'info', 'Analyzed 200 files containing 1.8 MB of data so far'),
(39511, 1765293546.609601, 2, 'info', 'Analyzed 300 files containing 3.34 MB of data so far'),
(39512, 1765293546.675675, 2, 'info', 'Analyzed 400 files containing 3.81 MB of data so far'),
(39513, 1765293546.757800, 2, 'info', 'Analyzed 500 files containing 4.22 MB of data so far'),
(39514, 1765293546.813071, 2, 'info', 'Analyzed 600 files containing 4.32 MB of data so far'),
(39515, 1765293547.095497, 2, 'info', 'Analyzed 700 files containing 6.92 MB of data so far'),
(39516, 1765293547.392673, 2, 'info', 'Analyzed 800 files containing 7.9 MB of data so far'),
(39517, 1765293547.820963, 2, 'info', 'Analyzed 900 files containing 9.32 MB of data so far'),
(39518, 1765293552.859353, 2, 'info', 'Analyzed 1000 files containing 29.08 MB of data so far'),
(39519, 1765293554.621652, 2, 'info', 'Analyzed 1100 files containing 36.06 MB of data so far'),
(39520, 1765293555.619167, 2, 'info', 'Analyzed 1200 files containing 39.76 MB of data so far'),
(39521, 1765293555.972542, 2, 'info', 'Analyzed 1300 files containing 40.93 MB of data so far'),
(39522, 1765293556.673425, 2, 'info', 'Analyzed 1400 files containing 43.42 MB of data so far'),
(39523, 1765293558.265739, 2, 'info', 'Analyzed 1500 files containing 49.41 MB of data so far'),
(39524, 1765293558.359870, 2, 'info', 'Analyzed 1600 files containing 50.12 MB of data so far'),
(39525, 1765293558.399552, 2, 'info', 'Analyzed 1700 files containing 50.54 MB of data so far'),
(39526, 1765293558.492489, 2, 'info', 'Analyzed 1800 files containing 51.13 MB of data so far'),
(39527, 1765293558.533181, 2, 'info', 'Analyzed 1900 files containing 52.16 MB of data so far'),
(39528, 1765293558.639849, 2, 'info', 'Analyzed 2000 files containing 52.54 MB of data so far'),
(39529, 1765293558.699178, 2, 'info', 'Analyzed 2100 files containing 52.88 MB of data so far'),
(39530, 1765293558.748856, 2, 'info', 'Analyzed 2200 files containing 53.29 MB of data so far'),
(39531, 1765293558.881197, 2, 'info', 'Analyzed 2300 files containing 53.69 MB of data so far'),
(39532, 1765293559.017127, 2, 'info', 'Analyzed 2400 files containing 53.98 MB of data so far'),
(39533, 1765293559.208387, 2, 'info', 'Analyzed 2500 files containing 54.22 MB of data so far'),
(39534, 1765293560.233659, 2, 'info', 'Analyzed 2600 files containing 58.38 MB of data so far'),
(39535, 1765293560.860414, 2, 'info', 'Analyzed 2700 files containing 60.75 MB of data so far'),
(39536, 1765293560.948480, 2, 'info', 'Analyzed 2800 files containing 61.17 MB of data so far'),
(39537, 1765293560.979567, 2, 'info', 'Analyzed 2900 files containing 61.55 MB of data so far'),
(39538, 1765293561.089178, 2, 'info', 'Analyzed 3000 files containing 62.23 MB of data so far'),
(39539, 1765293561.124334, 2, 'info', 'Analyzed 3100 files containing 62.88 MB of data so far'),
(39540, 1765293561.149660, 2, 'info', 'Analyzed 3200 files containing 63.31 MB of data so far'),
(39541, 1765293561.727423, 2, 'info', 'Analyzed 3300 files containing 65.59 MB of data so far'),
(39542, 1765293562.177508, 2, 'info', 'Analyzed 3400 files containing 67.16 MB of data so far'),
(39543, 1765293563.060739, 2, 'info', 'Analyzed 3500 files containing 70.44 MB of data so far'),
(39544, 1765293563.769721, 2, 'info', 'Analyzed 3600 files containing 73.54 MB of data so far'),
(39545, 1765293564.598158, 2, 'info', 'Analyzed 3700 files containing 77.52 MB of data so far'),
(39546, 1765293564.777859, 2, 'info', 'Analyzed 3800 files containing 78.88 MB of data so far'),
(39547, 1765293565.261832, 2, 'info', 'Analyzed 3900 files containing 81.17 MB of data so far'),
(39548, 1765293565.878368, 2, 'info', 'Analyzed 4000 files containing 83.26 MB of data so far'),
(39549, 1765293566.441578, 2, 'info', 'Analyzed 4100 files containing 85.44 MB of data so far'),
(39550, 1765293566.563356, 2, 'info', 'Analyzed 4200 files containing 85.6 MB of data so far'),
(39551, 1765293567.710553, 2, 'info', 'Analyzed 4300 files containing 89.98 MB of data so far'),
(39552, 1765293568.197880, 2, 'info', 'Analyzed 4400 files containing 91.87 MB of data so far'),
(39553, 1765293568.562266, 2, 'info', 'Analyzed 4500 files containing 92.91 MB of data so far'),
(39554, 1765293568.969438, 2, 'info', 'Analyzed 4600 files containing 94.5 MB of data so far'),
(39555, 1765293571.742874, 2, 'info', 'Analyzed 4700 files containing 105.53 MB of data so far'),
(39556, 1765293571.789094, 2, 'info', 'Analyzed 4800 files containing 107.91 MB of data so far'),
(39557, 1765293572.089984, 2, 'info', 'Analyzed 4900 files containing 108.84 MB of data so far'),
(39558, 1765293572.397539, 2, 'info', 'Analyzed 5000 files containing 110.12 MB of data so far'),
(39559, 1765293572.506848, 2, 'info', 'Analyzed 5100 files containing 110.49 MB of data so far'),
(39560, 1765293572.754791, 2, 'info', 'Analyzed 5200 files containing 111.59 MB of data so far'),
(39561, 1765293573.195925, 2, 'info', 'Analyzed 5300 files containing 113.48 MB of data so far'),
(39562, 1765293573.595539, 2, 'info', 'Analyzed 5400 files containing 115.03 MB of data so far'),
(39563, 1765293573.822730, 2, 'info', 'Analyzed 5500 files containing 115.54 MB of data so far'),
(39564, 1765293573.923271, 2, 'info', 'Analyzed 5600 files containing 115.88 MB of data so far'),
(39565, 1765293574.370518, 2, 'info', 'Analyzed 5700 files containing 117.44 MB of data so far'),
(39566, 1765293574.527540, 2, 'info', 'Analyzed 5800 files containing 117.79 MB of data so far'),
(39567, 1765293574.673882, 2, 'info', 'Analyzed 5900 files containing 118.07 MB of data so far'),
(39568, 1765293574.963259, 2, 'info', 'Analyzed 6000 files containing 118.84 MB of data so far'),
(39569, 1765293575.777741, 2, 'info', 'Analyzed 6100 files containing 122.91 MB of data so far'),
(39570, 1765293576.148932, 2, 'info', 'Analyzed 6200 files containing 126.76 MB of data so far'),
(39571, 1765293576.610959, 2, 'info', 'Analyzed 6300 files containing 128.36 MB of data so far'),
(39572, 1765293576.858749, 2, 'info', 'Analyzed 6400 files containing 129.27 MB of data so far'),
(39573, 1765293577.290786, 2, 'info', 'Analyzed 6500 files containing 131.8 MB of data so far'),
(39574, 1765293577.754675, 2, 'info', 'Analyzed 6600 files containing 133.59 MB of data so far'),
(39575, 1765293578.014391, 2, 'info', 'Analyzed 6700 files containing 134.33 MB of data so far'),
(39576, 1765293578.381367, 2, 'info', 'Analyzed 6800 files containing 135.94 MB of data so far'),
(39577, 1765293578.625395, 2, 'info', 'Analyzed 6900 files containing 136.83 MB of data so far'),
(39578, 1765293578.720034, 2, 'info', 'Analyzed 7000 files containing 137.18 MB of data so far'),
(39579, 1765293578.798303, 2, 'info', 'Analyzed 7100 files containing 137.49 MB of data so far'),
(39580, 1765293578.901670, 2, 'info', 'Analyzed 7200 files containing 137.77 MB of data so far'),
(39581, 1765293579.019057, 2, 'info', 'Analyzed 7300 files containing 137.94 MB of data so far'),
(39582, 1765293579.133332, 2, 'info', 'Analyzed 7400 files containing 138.22 MB of data so far'),
(39583, 1765293579.262942, 2, 'info', 'Analyzed 7500 files containing 138.34 MB of data so far'),
(39584, 1765293579.318715, 2, 'info', 'Analyzed 7600 files containing 138.46 MB of data so far'),
(39585, 1765293579.411595, 2, 'info', 'Analyzed 7700 files containing 138.66 MB of data so far'),
(39586, 1765293579.606660, 2, 'info', 'Analyzed 7800 files containing 140.11 MB of data so far'),
(39587, 1765293579.758069, 2, 'info', 'Analyzed 7900 files containing 142.35 MB of data so far'),
(39588, 1765293580.632331, 2, 'info', 'Analyzed 8000 files containing 145.49 MB of data so far'),
(39589, 1765293580.806860, 2, 'info', 'Analyzed 8100 files containing 146.38 MB of data so far'),
(39590, 1765293580.970395, 2, 'info', 'Analyzed 8200 files containing 148.14 MB of data so far'),
(39591, 1765293584.160853, 2, 'info', 'Analyzed 8300 files containing 160.88 MB of data so far'),
(39592, 1765293586.194435, 2, 'info', 'Analyzed 8400 files containing 168.79 MB of data so far'),
(39593, 1765293587.211391, 2, 'info', 'Analyzed 8500 files containing 172.5 MB of data so far'),
(39594, 1765293587.839857, 2, 'info', 'Analyzed 8600 files containing 174.66 MB of data so far'),
(39595, 1765293588.547491, 2, 'info', 'Analyzed 8700 files containing 177.41 MB of data so far'),
(39596, 1765293588.991783, 2, 'info', 'Analyzed 8800 files containing 180.54 MB of data so far'),
(39597, 1765293589.042453, 2, 'info', 'Analyzed 8900 files containing 181.81 MB of data so far'),
(39598, 1765293589.363537, 2, 'info', 'Analyzed 9000 files containing 183.66 MB of data so far'),
(39599, 1765293589.404745, 2, 'info', 'Analyzed 9033 files containing 184.03 MB of data.'),
(39600, 1765293589.405013, 10, 'info', 'SUM_ENDOK:Comparing core WordPress files against originals in repository'),
(39601, 1765293589.410442, 10, 'info', 'SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),
(39602, 1765293589.414167, 10, 'info', 'SUM_ENDOK:Scanning for known malware files'),
(39603, 1765293589.421068, 10, 'info', 'SUM_START:Check for publicly accessible configuration files, backup files and logs'),
(39604, 1765293589.446917, 10, 'info', 'SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),
(39605, 1765293589.455479, 10, 'info', 'SUM_START:Scanning file contents for infections and vulnerabilities'),
(39606, 1765293589.457531, 10, 'info', 'SUM_START:Scanning file contents for URLs on a domain blocklist'),
(39607, 1765293591.457555, 2, 'info', 'Starting scan of file contents'),
(39608, 1765293592.599464, 2, 'info', 'Scanned contents of 20 additional files at 17.53 per second'),
(39609, 1765293594.054945, 2, 'info', 'Scanned contents of 25 additional files at 9.63 per second'),
(39610, 1765293595.156628, 2, 'info', 'Scanned contents of 48 additional files at 12.98 per second'),
(39611, 1765293596.534619, 2, 'info', 'Scanned contents of 54 additional files at 10.64 per second'),
(39612, 1765293597.679192, 2, 'info', 'Scanned contents of 71 additional files at 11.41 per second'),
(39613, 1765293599.603444, 2, 'info', 'Scanned contents of 92 additional files at 11.30 per second'),
(39614, 1765293600.783140, 2, 'info', 'Scanned contents of 111 additional files at 11.90 per second'),
(39615, 1765293603.030186, 2, 'info', 'Scanned contents of 112 additional files at 9.68 per second'),
(39616, 1765293604.345506, 2, 'info', 'Scanned contents of 125 additional files at 9.70 per second'),
(39617, 1765293605.359100, 2, 'info', 'Scanned contents of 157 additional files at 11.29 per second'),
(39618, 1765293606.414064, 2, 'info', 'Scanned contents of 175 additional files at 11.70 per second'),
(39619, 1765293607.482316, 2, 'info', 'Scanned contents of 195 additional files at 12.17 per second'),
(39620, 1765293608.547332, 2, 'info', 'Scanned contents of 201 additional files at 11.76 per second'),
(39621, 1765293609.572950, 2, 'info', 'Scanned contents of 220 additional files at 12.15 per second'),
(39622, 1765293610.573482, 2, 'info', 'Scanned contents of 229 additional files at 11.98 per second'),
(39623, 1765293612.084779, 2, 'info', 'Scanned contents of 239 additional files at 11.59 per second'),
(39624, 1765293613.232663, 2, 'info', 'Scanned contents of 251 additional files at 11.53 per second'),
(39625, 1765293614.248962, 2, 'info', 'Scanned contents of 268 additional files at 11.76 per second'),
(39626, 1765293615.397636, 2, 'info', 'Scanned contents of 289 additional files at 12.07 per second'),
(39627, 1765293616.990428, 2, 'info', 'Scanned contents of 307 additional files at 12.02 per second'),
(39628, 1765293618.040659, 2, 'info', 'Scanned contents of 322 additional files at 12.11 per second'),
(39629, 1765293619.051924, 2, 'info', 'Scanned contents of 346 additional files at 12.54 per second'),
(39630, 1765293620.631036, 2, 'info', 'Scanned contents of 356 additional files at 12.20 per second'),
(39631, 1765293621.670490, 2, 'info', 'Scanned contents of 375 additional files at 12.41 per second'),
(39632, 1765293622.759066, 2, 'info', 'Scanned contents of 396 additional files at 12.65 per second'),
(39633, 1765293623.850248, 2, 'info', 'Scanned contents of 416 additional files at 12.84 per second'),
(39634, 1765293624.941492, 2, 'info', 'Scanned contents of 437 additional files at 13.05 per second'),
(39635, 1765293626.077621, 2, 'info', 'Scanned contents of 454 additional files at 13.11 per second'),
(39636, 1765293627.250492, 2, 'info', 'Scanned contents of 473 additional files at 13.22 per second'),
(39637, 1765293631.122149, 2, 'info', 'Scanned contents of 474 additional files at 11.95 per second'),
(39638, 1765293632.324139, 2, 'info', 'Scanned contents of 496 additional files at 12.14 per second'),
(39639, 1765293633.392331, 2, 'info', 'Scanned contents of 520 additional files at 12.40 per second'),
(39640, 1765293634.701433, 2, 'info', 'Scanned contents of 541 additional files at 12.51 per second'),
(39641, 1765293635.731822, 2, 'info', 'Scanned contents of 562 additional files at 12.69 per second'),
(39642, 1765293636.932425, 2, 'info', 'Scanned contents of 571 additional files at 12.56 per second'),
(39643, 1765293637.943349, 2, 'info', 'Scanned contents of 594 additional files at 12.78 per second'),
(39644, 1765293638.958594, 2, 'info', 'Scanned contents of 600 additional files at 12.63 per second'),
(39645, 1765293640.277910, 2, 'info', 'Scanned contents of 621 additional files at 12.72 per second'),
(39646, 1765293641.553963, 2, 'info', 'Scanned contents of 634 additional files at 12.66 per second'),
(39647, 1765293642.565744, 2, 'info', 'Scanned contents of 648 additional files at 12.68 per second'),
(39648, 1765293644.109134, 2, 'info', 'Scanned contents of 675 additional files at 12.82 per second'),
(39649, 1765293645.583506, 2, 'info', 'Scanned contents of 684 additional files at 12.64 per second'),
(39650, 1765293646.652566, 2, 'info', 'Scanned contents of 692 additional files at 12.54 per second'),
(39651, 1765293647.816323, 2, 'info', 'Scanned contents of 708 additional files at 12.56 per second'),
(39652, 1765293651.173487, 2, 'info', 'Scanned contents of 725 additional files at 12.14 per second'),
(39653, 1765293652.174542, 2, 'info', 'Scanned contents of 749 additional files at 12.34 per second'),
(39654, 1765293653.312081, 2, 'info', 'Scanned contents of 774 additional files at 12.51 per second'),
(39655, 1765293654.317689, 2, 'info', 'Scanned contents of 796 additional files at 12.66 per second'),
(39656, 1765293655.395521, 2, 'info', 'Scanned contents of 805 additional files at 12.59 per second'),
(39657, 1765293656.433694, 2, 'info', 'Scanned contents of 829 additional files at 12.76 per second'),
(39658, 1765293657.439885, 2, 'info', 'Scanned contents of 851 additional files at 12.90 per second'),
(39659, 1765293658.658914, 2, 'info', 'Scanned contents of 870 additional files at 12.95 per second'),
(39660, 1765293658.739572, 2, 'info', 'Scanned contents of 871 additional files at 12.95 per second'),
(39661, 1765293658.739881, 2, 'info', 'Asking Wordfence to check URLs against malware list.'),
(39662, 1765293658.740416, 2, 'info', 'Checking 112 host keys against Wordfence scanning servers.'),
(39663, 1765293659.378198, 2, 'info', 'Done host key check.'),
(39664, 1765293659.491368, 2, 'info', 'Done file contents scan'),
(39665, 1765293659.499747, 10, 'info', 'SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),
(39666, 1765293659.509942, 10, 'info', 'SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),
(39667, 1765293659.520941, 10, 'info', 'SUM_START:Scanning for publicly accessible quarantined files'),
(39668, 1765293659.523348, 10, 'info', 'SUM_ENDOK:Scanning for publicly accessible quarantined files'),
(39669, 1765293659.530156, 10, 'info', 'SUM_START:Scanning posts for URLs on a domain blocklist'),
(39670, 1765293659.597452, 2, 'info', 'Examining URLs found in posts we scanned for dangerous websites'),
(39671, 1765293659.597756, 2, 'info', 'Checking 6 host keys against Wordfence scanning servers.'),
(39672, 1765293660.221371, 2, 'info', 'Done host key check.'),
(39673, 1765293660.222031, 2, 'info', 'Done examining URLs'),
(39674, 1765293660.234394, 10, 'info', 'SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),
(39675, 1765293660.247504, 10, 'info', 'SUM_START:Scanning comments for URLs on a domain blocklist'),
(39676, 1765293660.261738, 2, 'info', 'Checking 1 host keys against Wordfence scanning servers.'),
(39677, 1765293660.880349, 2, 'info', 'Done host key check.'),
(39678, 1765293660.892440, 10, 'info', 'SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),
(39679, 1765293660.902661, 10, 'info', 'SUM_START:Scanning for weak passwords'),
(39680, 1765293660.907347, 2, 'info', 'Starting password strength check on 2 users.'),
(39681, 1765293661.239053, 10, 'info', 'SUM_ENDOK:Scanning for weak passwords'),
(39682, 1765293661.247357, 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(39683, 1765293667.981574, 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(39684, 1765293667.994495, 10, 'info', 'SUM_START:Scanning for admin users not created through WordPress'),
(39685, 1765293668.630570, 10, 'info', 'SUM_ENDBAD:Scanning for admin users not created through WordPress'),
(39686, 1765293668.638670, 10, 'info', 'SUM_START:Scanning for suspicious site options'),
(39687, 1765293668.648709, 2, 'info', 'Examining URLs found in the options we scanned for dangerous websites'),
(39688, 1765293668.649091, 2, 'info', 'Done examining URLs'),
(39689, 1765293668.654577, 10, 'info', 'SUM_ENDOK:Scanning for suspicious site options'),
(39690, 1765293668.660916, 1, 'info', '-------------------'),
(39691, 1765293668.661562, 2, 'info', 'Wordfence used 24.92 MB of memory for scan. Server peak memory usage was: 40.92 MB'),
(39692, 1765293668.663898, 1, 'info', 'Scan Complete. Scanned 9033 files, 9 plugins, 1 themes, 9 posts, 1 comments and 1005 URLs in 2 minutes 11 seconds.'),
(39693, 1765293668.664310, 10, 'info', 'SUM_FINAL:Scan complete. You have 7 new issues to fix. See below.'),
(39694, 1765341442.610327, 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(39695, 1765341442.614651, 1, 'info', 'Initiating quick scan'),
(39696, 1765341442.617111, 10, 'info', 'SUM_START:Checking Web Application Firewall status'),
(39697, 1765341442.617302, 10, 'info', 'SUM_ENDOK:Checking Web Application Firewall status'),
(39698, 1765341442.621646, 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(39699, 1765341444.670266, 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(39700, 1765341444.672968, 1, 'info', '-------------------'),
(39701, 1765341444.673415, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 12 MB'),
(39702, 1765341444.674256, 1, 'info', 'Quick Scan Complete. Scanned in 2 seconds.'),
(39703, 1765341444.674414, 10, 'info', 'SUM_FINAL:Scan complete. You have 4 new issues to fix. See below.'),
(39704, 1765423546.109472, 10, 'info', 'SUM_PREP:Preparing a new scan.'),
(39705, 1765423546.114310, 1, 'info', 'Initiating quick scan'),
(39706, 1765423546.116451, 10, 'info', 'SUM_START:Checking Web Application Firewall status'),
(39707, 1765423546.116810, 10, 'info', 'SUM_ENDOK:Checking Web Application Firewall status'),
(39708, 1765423546.121739, 10, 'info', 'SUM_START:Scanning for old themes, plugins and core files'),
(39709, 1765423549.354705, 10, 'info', 'SUM_ENDBAD:Scanning for old themes, plugins and core files'),
(39710, 1765423549.359976, 1, 'info', '-------------------'),
(39711, 1765423549.360760, 2, 'info', 'Wordfence used 0 B of memory for scan. Server peak memory usage was: 82 MB'),
(39712, 1765423549.361941, 1, 'info', 'Quick Scan Complete. Scanned in 3 seconds.'),
(39713, 1765423549.362143, 10, 'info', 'SUM_FINAL:Scan complete. You have 5 new issues to fix. See below.'),
(39714, 1765886399.314934, 1, 'info', 'Scheduled Wordfence scan starting at Tuesday 16th of December 2025 11:59:59 AM'),
(39715, 1765886498.134016, 2, 'info', 'Attempting to resume scan stage (1 attempt(s) remaining)...'),
(39716, 1765887741.765236, 2, 'info', 'Attempting to resume scan stage (0 attempt(s) remaining)...'),
(39717, 1766075298.628646, 2, 'info', 'Attempting to resume scan stage (1 attempt(s) remaining)...'),
(39718, 1766075340.732024, 1, 'info', 'Scheduled Wordfence scan starting at Thursday 18th of December 2025 04:29:00 PM'),
(39719, 1766366857.475203, 2, 'info', 'Attempting to resume scan stage (1 attempt(s) remaining)...'),
(39720, 1766366880.541354, 1, 'info', 'Scheduled Wordfence scan starting at Monday 22nd of December 2025 01:28:00 AM'),
(39721, 1767634225.245852, 2, 'info', 'Attempting to resume scan stage (1 attempt(s) remaining)...'),
(39722, 1768807906.334174, 1, 'info', 'Scheduled Wordfence scan starting at Monday 19th of January 2026 07:31:46 AM'),
(39723, 1769186000.725231, 2, 'info', 'Attempting to resume scan stage (1 attempt(s) remaining)...'),
(39724, 1769186029.800754, 1, 'info', 'Scheduled Wordfence scan starting at Friday 23rd of January 2026 04:33:49 PM'),
(39725, 1769560551.847721, 2, 'info', 'Attempting to resume scan stage (1 attempt(s) remaining)...'),
(39726, 1769560572.712013, 1, 'info', 'Scheduled Wordfence scan starting at Wednesday 28th of January 2026 12:36:12 AM');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wftrafficrates`
--

CREATE TABLE `wpiq_wftrafficrates` (
  `eMin` int unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wfwaffailures`
--

CREATE TABLE `wpiq_wfwaffailures` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `throwable` text NOT NULL,
  `rule_id` int unsigned DEFAULT NULL,
  `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `wpiq_wfwaffailures`
--

INSERT INTO `wpiq_wfwaffailures` VALUES
(8, 'Error: Call to undefined function curl_exec() in /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php:360\nStack trace:\n#0 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(70): wfWAFHTTPTransportCurl->send()\n#1 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(38): wfWAFHTTP->send()\n#2 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(1995): wfWAFHTTP::get()\n#3 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(535): wfWAFCronFetchRulesEvent->fire()\n#4 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(298): wfWAFWordPress->runCron()\n#5 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(1003): wfWAF->run()\n#6 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/wordfence.php(136): require_once(''/home/binawebp/...'')\n#7 /home/binawebp/omsrislb.my/wp-settings.php(560): include_once(''/home/binawebp/...'')\n#8 /home/binawebp/omsrislb.my/wp-config.php(106): require_once(''/home/binawebp/...'')\n#9 /home/binawebp/omsrislb.my/wp-load.php(50): require_once(''/home/binawebp/...'')\n#10 /home/binawebp/omsrislb.my/wp-blog-header.php(13): require_once(''/home/binawebp/...'')\n#11 /home/binawebp/omsrislb.my/index.php(17): require(''/home/binawebp/...'')\n#12 {main}', NULL, '2026-01-31 20:25:30'),
(9, 'Error: Call to undefined function curl_exec() in /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php:360\nStack trace:\n#0 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(70): wfWAFHTTPTransportCurl->send()\n#1 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(38): wfWAFHTTP->send()\n#2 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(1995): wfWAFHTTP::get()\n#3 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(535): wfWAFCronFetchRulesEvent->fire()\n#4 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(298): wfWAFWordPress->runCron()\n#5 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(1003): wfWAF->run()\n#6 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/wordfence.php(136): require_once(''/home/binawebp/...'')\n#7 /home/binawebp/omsrislb.my/wp-settings.php(560): include_once(''/home/binawebp/...'')\n#8 /home/binawebp/omsrislb.my/wp-config.php(106): require_once(''/home/binawebp/...'')\n#9 /home/binawebp/omsrislb.my/wp-load.php(50): require_once(''/home/binawebp/...'')\n#10 /home/binawebp/omsrislb.my/wp-blog-header.php(13): require_once(''/home/binawebp/...'')\n#11 /home/binawebp/omsrislb.my/index.php(17): require(''/home/binawebp/...'')\n#12 {main}', NULL, '2026-01-31 20:25:30'),
(10, 'Error: Call to undefined function curl_exec() in /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php:360\nStack trace:\n#0 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(70): wfWAFHTTPTransportCurl->send()\n#1 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(38): wfWAFHTTP->send()\n#2 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(1995): wfWAFHTTP::get()\n#3 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(535): wfWAFCronFetchRulesEvent->fire()\n#4 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(298): wfWAFWordPress->runCron()\n#5 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(1003): wfWAF->run()\n#6 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/wordfence.php(136): require_once(''/home/binawebp/...'')\n#7 /home/binawebp/omsrislb.my/wp-settings.php(560): include_once(''/home/binawebp/...'')\n#8 /home/binawebp/omsrislb.my/wp-config.php(106): require_once(''/home/binawebp/...'')\n#9 /home/binawebp/omsrislb.my/wp-load.php(50): require_once(''/home/binawebp/...'')\n#10 /home/binawebp/omsrislb.my/wp-blog-header.php(13): require_once(''/home/binawebp/...'')\n#11 /home/binawebp/omsrislb.my/index.php(17): require(''/home/binawebp/...'')\n#12 {main}', NULL, '2026-02-08 08:08:01'),
(11, 'Error: Call to undefined function curl_exec() in /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php:360\nStack trace:\n#0 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(70): wfWAFHTTPTransportCurl->send()\n#1 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php(38): wfWAFHTTP->send()\n#2 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(1995): wfWAFHTTP::get()\n#3 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(535): wfWAFCronFetchRulesEvent->fire()\n#4 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php(298): wfWAFWordPress->runCron()\n#5 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/waf/bootstrap.php(1003): wfWAF->run()\n#6 /home/binawebp/omsrislb.my/wp-content/plugins/wordfence/wordfence.php(136): require_once(''/home/binawebp/...'')\n#7 /home/binawebp/omsrislb.my/wp-settings.php(560): include_once(''/home/binawebp/...'')\n#8 /home/binawebp/omsrislb.my/wp-config.php(106): require_once(''/home/binawebp/...'')\n#9 /home/binawebp/omsrislb.my/wp-load.php(50): require_once(''/home/binawebp/...'')\n#10 /home/binawebp/omsrislb.my/wp-blog-header.php(13): require_once(''/home/binawebp/...'')\n#11 /home/binawebp/omsrislb.my/index.php(17): require(''/home/binawebp/...'')\n#12 {main}', NULL, '2026-02-15 15:44:26');

-- --------------------------------------------------------

--
-- Table structure for table `wpiq_wpo_404_detector`
--

CREATE TABLE `wpiq_wpo_404_detector` (
  `ID` int unsigned NOT NULL AUTO_INCREMENT,
  `url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `request_timestamp` bigint unsigned NOT NULL,
  `request_count` bigint unsigned NOT NULL,
  `referrer` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`ID`),
  UNIQUE KEY `url` (`url`(75),`request_timestamp`,`referrer`(75)),
  KEY `url_timestamp_referrer` (`url`(75),`request_timestamp`,`referrer`(75)),
  KEY `timestamp_count` (`request_timestamp`,`request_count`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

-- --------------------------------------------------------

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